st/mesa: move cso_context next to the other pointers

Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7901>
This commit is contained in:
Marek Olšák 2020-12-03 11:12:23 -05:00 committed by Marge Bot
parent a07cb9a1ef
commit 6d75186008
1 changed files with 1 additions and 2 deletions

View File

@ -125,6 +125,7 @@ struct st_context
struct gl_context *ctx;
struct pipe_screen *screen;
struct pipe_context *pipe;
struct cso_context *cso_context;
struct draw_context *draw; /**< For selection/feedback/rastpos only */
struct draw_stage *feedback_stage; /**< For GL_FEEDBACK rendermode */
@ -332,8 +333,6 @@ struct st_context
enum pipe_texture_target internal_target;
struct cso_context *cso_context;
void *winsys_drawable_handle;
/* The number of vertex buffers from the last call of validate_arrays. */