Search
lxdream.org :: lxdream :: r893:8eae02de411a
lxdream 0.9.1
released Jun 29
Download Now
changeset893:8eae02de411a
parent892:126aa7db6162
child894:1ddd5616c5af
authornkeynes
dateFri Oct 24 03:47:30 2008 +0000 (15 years ago)
Fix depthfunc on individual translucent tri
src/pvr2/rendsort.c
1.1 --- a/src/pvr2/rendsort.c Fri Oct 24 03:46:53 2008 +0000
1.2 +++ b/src/pvr2/rendsort.c Fri Oct 24 03:47:30 2008 +0000
1.3 @@ -253,7 +253,7 @@
1.4 if( num_triangles == 0 ) {
1.5 return; /* nothing to do */
1.6 } else if( num_triangles == 1 ) { /* Triangle can hardly overlap with itself */
1.7 - gl_render_tilelist(tile_entry, GL_LEQUAL);
1.8 + gl_render_tilelist(tile_entry, GL_GEQUAL);
1.9 } else { /* Ooh boy here we go... */
1.10 int i;
1.11 struct sort_triangle triangles[num_triangles+1];
.