diff options
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 622b7a40dc4..b31e719708e 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -224,14 +224,12 @@ struct st_context struct pipe_sampler_state sampler; struct pipe_sampler_state atlas_sampler; enum pipe_format tex_format; - void *vs; struct st_bitmap_cache cache; } bitmap; /** for glDraw/CopyPixels */ struct { void *zs_shaders[4]; - void *vert_shader; /**< ureg shader */ } drawpix; /** Cache of glDrawPixels images */ @@ -278,6 +276,9 @@ struct st_context /** for drawing with st_util_vertex */ struct pipe_vertex_element util_velems[3]; + /** passthrough vertex shader matching the util_velem attributes */ + void *passthrough_vs; + enum pipe_texture_target internal_target; struct cso_context *cso_context; |