summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_state.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-01-03 15:03:52 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-01-03 15:03:52 -0700
commitaa7f2333675f3e005f3eb6a40ac55d2fb55ea36e (patch)
treef1e50d3239cacbcb01556f04794f13206f73c628 /src/mesa/pipe/softpipe/sp_state.h
parent1613c49c9859f55dfb5bea23c46a3be54b246a9b (diff)
replace void * with struct draw_vertex_shader opaque type
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_state.h')
-rw-r--r--src/mesa/pipe/softpipe/sp_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state.h b/src/mesa/pipe/softpipe/sp_state.h
index c1f5555a86..bac7b0876f 100644
--- a/src/mesa/pipe/softpipe/sp_state.h
+++ b/src/mesa/pipe/softpipe/sp_state.h
@@ -75,7 +75,7 @@ struct sp_fragment_shader_state {
/** Subclass of pipe_shader_state */
struct sp_vertex_shader_state {
struct pipe_shader_state shader;
- void *draw_data;
+ struct draw_vertex_shader *draw_data;
};