Browse Source

comments

tags/mesa_20090313
Brian 18 years ago
parent
commit
a47b5764c0
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      src/mesa/pipe/softpipe/sp_quad_fs.c

+ 4
- 2
src/mesa/pipe/softpipe/sp_quad_fs.c View File

@@ -39,7 +39,7 @@
#include "sp_quad.h"

struct exec_machine {
const struct setup_coefficient *coef;
const struct setup_coefficient *coef; /**< will point to quad->coef */

GLfloat attr[FRAG_ATTRIB_MAX][4][QUAD_SIZE];
};
@@ -200,7 +200,9 @@ shade_quad( struct quad_stage *qs, struct quad_header *quad )
}
#endif

qs->next->run(qs->next, quad);
/* shader may cull fragments */
if (quad->mask)
qs->next->run(qs->next, quad);
}



Loading…
Cancel
Save