diff --git a/src/samples/gu/blend/blend.c b/src/samples/gu/blend/blend.c index bcb6067d..2968d4d6 100644 --- a/src/samples/gu/blend/blend.c +++ b/src/samples/gu/blend/blend.c @@ -45,12 +45,6 @@ struct BlendState #define SCR_WIDTH (480) #define SCR_HEIGHT (272) -#define NUM_SLICES 128 -#define NUM_ROWS 128 -#define RING_SIZE 2.0f -#define RING_RADIUS 1.0f -#define SPRITE_SIZE 0.025f - unsigned int __attribute__((aligned(16))) clut256[256]; unsigned char __attribute__((aligned(16))) tex256[256*256]; diff --git a/src/samples/gu/clut/clut.c b/src/samples/gu/clut/clut.c index 25d5693a..bacaf0a6 100644 --- a/src/samples/gu/clut/clut.c +++ b/src/samples/gu/clut/clut.c @@ -38,12 +38,6 @@ int SetupCallbacks(); #define FRAME_SIZE (BUF_WIDTH * SCR_HEIGHT * PIXEL_SIZE) #define ZBUF_SIZE (BUF_WIDTH SCR_HEIGHT * 2) /* zbuffer seems to be 16-bit? */ -#define NUM_SLICES 128 -#define NUM_ROWS 128 -#define RING_SIZE 2.0f -#define RING_RADIUS 1.0f -#define SPRITE_SIZE 0.025f - unsigned int colors[8] = { 0xffff0000, diff --git a/src/samples/gu/lines/lines.c b/src/samples/gu/lines/lines.c index 8eddbad5..c31a7bc5 100644 --- a/src/samples/gu/lines/lines.c +++ b/src/samples/gu/lines/lines.c @@ -33,12 +33,6 @@ struct Vertex #define SCR_WIDTH (480) #define SCR_HEIGHT (272) -#define NUM_SLICES 128 -#define NUM_ROWS 128 -#define RING_SIZE 2.0f -#define RING_RADIUS 1.0f -#define SPRITE_SIZE 0.025f - unsigned int colors[8] = { 0xffff0000,