diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-03 15:03:52 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-01-03 15:03:52 -0700 |
commit | aa7f2333675f3e005f3eb6a40ac55d2fb55ea36e (patch) | |
tree | f1e50d3239cacbcb01556f04794f13206f73c628 /src/mesa/pipe/softpipe/sp_state.h | |
parent | 1613c49c9859f55dfb5bea23c46a3be54b246a9b (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.h | 2 |
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; }; |