summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4/vc4_context.h
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2014-07-18 13:28:34 -0700
committerEric Anholt <[email protected]>2014-08-11 14:40:45 -0700
commita02c658908384b81e9d27e2555ba2fce2cc0f6a8 (patch)
tree0dab7190fa66e22b7a9cf79be60d43b853fd18a4 /src/gallium/drivers/vc4/vc4_context.h
parent857dcc09fa89aa676fdc95d318ecc4f7ad9cd70a (diff)
vc4: Drop pointless shader state struct
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_context.h')
-rw-r--r--src/gallium/drivers/vc4/vc4_context.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/drivers/vc4/vc4_context.h b/src/gallium/drivers/vc4/vc4_context.h
index 18e6264b0b6..c125d1b0c5d 100644
--- a/src/gallium/drivers/vc4/vc4_context.h
+++ b/src/gallium/drivers/vc4/vc4_context.h
@@ -70,10 +70,6 @@ struct vc4_shader_uniform_info {
uint32_t count;
};
-struct vc4_shader_state {
- struct pipe_shader_state base;
-};
-
struct vc4_compiled_shader {
struct vc4_bo *bo;
@@ -84,7 +80,7 @@ struct vc4_compiled_shader {
};
struct vc4_program_stateobj {
- struct vc4_shader_state *bind_vs, *bind_fs;
+ struct pipe_shader_state *bind_vs, *bind_fs;
struct vc4_compiled_shader *vs, *fs;
uint32_t dirty;
uint8_t num_exports;