Search
lxdream.org :: lxdream/src/pvr2/rendsort.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/rendsort.c
changeset 669:ab344e42bca9
prev653:3202ff01d48e
next736:a02d1475ccfd
author nkeynes
date Mon May 12 10:00:13 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Cleanup most of the -Wall warnings (getting a bit sloppy...)
Convert FP code to use fixed banks rather than indirect pointer
(3-4% faster this way now)
file annotate diff log raw
1.1 --- a/src/pvr2/rendsort.c Fri Mar 28 12:32:25 2008 +0000
1.2 +++ b/src/pvr2/rendsort.c Mon May 12 10:00:13 2008 +0000
1.3 @@ -22,8 +22,6 @@
1.4 #include "pvr2/scene.h"
1.5 #include "asic.h"
1.6
1.7 -extern char *video_base;
1.8 -
1.9 #define MIN3( a,b,c ) ((a) < (b) ? ( (a) < (c) ? (a) : (c) ) : ((b) < (c) ? (b) : (c)) )
1.10 #define MAX3( a,b,c ) ((a) > (b) ? ( (a) > (c) ? (a) : (c) ) : ((b) > (c) ? (b) : (c)) )
1.11
.