diff options
author | Keith Whitwell <[email protected]> | 2009-11-19 19:31:32 -0800 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-19 19:31:32 -0800 |
commit | 4fb77ef840a42c3c8e2a43aa772a73614528fc4d (patch) | |
tree | fd6aa618cfe3fbd83a5e04562d5d6f853afdc98f /src/gallium/drivers/i965/brw_context.h | |
parent | 34a01929d54266e8e5fec47e94859405bce588fa (diff) |
i965g: include interpolation info in fs signature
Diffstat (limited to 'src/gallium/drivers/i965/brw_context.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_context.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/i965/brw_context.h b/src/gallium/drivers/i965/brw_context.h index 65859be0ec5..64279c46768 100644 --- a/src/gallium/drivers/i965/brw_context.h +++ b/src/gallium/drivers/i965/brw_context.h @@ -174,8 +174,9 @@ struct brw_vertex_shader { struct brw_fs_signature { GLuint nr_inputs; struct { - GLuint semantic:5; - GLuint semantic_index:27; + GLuint interp:3; /* TGSI_INTERPOLATE_x */ + GLuint semantic:5; /* TGSI_SEMANTIC_x */ + GLuint semantic_index:24; } input[PIPE_MAX_SHADER_INPUTS]; }; |