aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_unai/gpu.cpp
diff options
context:
space:
mode:
authornotaz2012-08-02 01:30:57 +0300
committernotaz2012-08-02 01:43:03 +0300
commit9ed4ca47610027e8a0448d61389df5a583bd659b (patch)
tree427f9ddabff4c2747759c367305fd0afdea81996 /plugins/gpu_unai/gpu.cpp
parent6983a9ae5accfbb9be955e4b9320fddb7572e00f (diff)
downloadpcsx_rearmed-9ed4ca47610027e8a0448d61389df5a583bd659b.tar.gz
pcsx_rearmed-9ed4ca47610027e8a0448d61389df5a583bd659b.tar.bz2
pcsx_rearmed-9ed4ca47610027e8a0448d61389df5a583bd659b.zip
gpu_unai: merge Franxis' range fix
Diffstat (limited to 'plugins/gpu_unai/gpu.cpp')
-rw-r--r--plugins/gpu_unai/gpu.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/gpu_unai/gpu.cpp b/plugins/gpu_unai/gpu.cpp
index 3c30ffa..46552ac 100644
--- a/plugins/gpu_unai/gpu.cpp
+++ b/plugins/gpu_unai/gpu.cpp
@@ -107,12 +107,10 @@ u32 GPU_GP1;
// GPU Raster Macros
#define GPU_RGB16(rgb) ((((rgb)&0xF80000)>>9)|(((rgb)&0xF800)>>6)|(((rgb)&0xF8)>>3))
-#define GPU_EXPANDSIGN_POLY(x) (((s32)(x)<<20)>>20)
-//#define GPU_EXPANDSIGN_POLY(x) (((s32)(x)<<21)>>21)
-#define GPU_EXPANDSIGN_SPRT(x) (((s32)(x)<<21)>>21)
+#define GPU_EXPANDSIGN(x) (((s32)(x)<<21)>>21)
-//#define GPU_TESTRANGE(x) { if((u32)(x+1024) > 2047) return; }
-#define GPU_TESTRANGE(x) { if ((x<-1023) || (x>1023)) return; }
+#define CHKMAX_X 1024
+#define CHKMAX_Y 512
#define GPU_SWAP(a,b,t) {(t)=(a);(a)=(b);(b)=(t);}