Skip to content

Commit

Permalink
Move some things into renderercommon
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Feb 16, 2013
1 parent 372b07a commit 93e6183
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 3,776 deletions.
7 changes: 7 additions & 0 deletions Makefile
Expand Up @@ -211,6 +211,7 @@ BD=$(BUILD_DIR)/debug-$(PLATFORM)-$(ARCH)
BR=$(BUILD_DIR)/release-$(PLATFORM)-$(ARCH)
CDIR=$(MOUNT_DIR)/client
SDIR=$(MOUNT_DIR)/server
RCOMMONDIR=$(MOUNT_DIR)/renderercommon
RGL1DIR=$(MOUNT_DIR)/renderergl1
RGL2DIR=$(MOUNT_DIR)/renderergl2
CMDIR=$(MOUNT_DIR)/qcommon
Expand Down Expand Up @@ -2355,6 +2356,9 @@ $(B)/renderergl1/%.o: $(SDLDIR)/%.c
$(B)/renderergl1/%.o: $(JPDIR)/%.c
$(DO_REF_CC)

$(B)/renderergl1/%.o: $(RCOMMONDIR)/%.c
$(DO_REF_CC)

$(B)/renderergl1/%.o: $(RGL1DIR)/%.c
$(DO_REF_CC)

Expand All @@ -2364,6 +2368,9 @@ $(B)/renderergl2/glsl/%.c: $(RGL2DIR)/glsl/%.glsl
$(B)/renderergl2/glsl/%.o: $(B)/renderergl2/glsl/%.c
$(DO_REF_CC)

$(B)/renderergl2/%.o: $(RCOMMONDIR)/%.c
$(DO_REF_CC)

$(B)/renderergl2/%.o: $(RGL2DIR)/%.c
$(DO_REF_CC)

Expand Down
Expand Up @@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/

#include "tr_local.h"
#include "../renderergl1/tr_local.h"

typedef struct
{
Expand Down
Expand Up @@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/

#include "tr_local.h"
#include "../renderergl1/tr_local.h"

/*
* Include file for users of JPEG library.
Expand Down
Expand Up @@ -21,7 +21,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/

#include "tr_local.h"
#include "../renderergl1/tr_local.h"

/*
========================================================================
Expand Down
Expand Up @@ -19,7 +19,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
===========================================================================
*/

#include "tr_local.h"
#include "../renderergl1/tr_local.h"

#include "../qcommon/puff.h"

Expand Down
Expand Up @@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/

#include "tr_local.h"
#include "../renderergl1/tr_local.h"

/*
========================================================================
Expand Down
Expand Up @@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
// tr_noise.c
#include "tr_local.h"
#include "../renderergl1/tr_local.h"

#define NOISE_SIZE 256
#define NOISE_MASK ( NOISE_SIZE - 1 )
Expand Down
243 changes: 0 additions & 243 deletions code/renderergl2/tr_image_bmp.c

This file was deleted.

0 comments on commit 93e6183

Please sign in to comment.