diff options
author | Stéphane Marchesin <[email protected]> | 2012-01-22 02:22:20 -0800 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2012-02-12 16:32:14 -0800 |
commit | 8e4540ec2a82e72be491bc8fe23c10551d29a96c (patch) | |
tree | 35707dd1fa11f04a2b284dc20e82904fc35c01cc /src/gallium/drivers/i915/i915_context.h | |
parent | 094eeff19946138d6306d74e9e62af5e9d192abd (diff) |
i915g: Separate declarations and program in the fragment program struct.
We need this later to fixup fragment programs properly.
Diffstat (limited to 'src/gallium/drivers/i915/i915_context.h')
-rw-r--r-- | src/gallium/drivers/i915/i915_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915/i915_context.h b/src/gallium/drivers/i915/i915_context.h index e39c7cc137f..b019c9f342a 100644 --- a/src/gallium/drivers/i915/i915_context.h +++ b/src/gallium/drivers/i915/i915_context.h @@ -104,6 +104,9 @@ struct i915_fragment_shader struct draw_fragment_shader *draw_data; + uint *decl; + uint decl_len; + uint *program; uint program_len; |