Browse Source

cell: updates in response to draw's struct vertex_info changes

tags/mesa_20090313
Brian Paul 17 years ago
parent
commit
086a56134f
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/gallium/drivers/cell/spu/spu_tri.c

+ 2
- 2
src/gallium/drivers/cell/spu/spu_tri.c View File

@@ -215,7 +215,7 @@ clip_emit_quad(struct setup_stage *setup)
static INLINE void
eval_coeff(uint slot, float x, float y, vector float result[4])
{
switch (spu.vertex_info.interp_mode[slot]) {
switch (spu.vertex_info.attrib[slot].interp_mode) {
case INTERP_CONSTANT:
result[QUAD_TOP_LEFT] =
result[QUAD_TOP_RIGHT] =
@@ -776,7 +776,7 @@ static void setup_tri_coefficients(void)
uint i;

for (i = 0; i < spu.vertex_info.num_attribs; i++) {
switch (spu.vertex_info.interp_mode[i]) {
switch (spu.vertex_info.attrib[i].interp_mode) {
case INTERP_NONE:
break;
case INTERP_POS:

Loading…
Cancel
Save