From: Paul Berry Date: Fri, 22 Mar 2013 19:34:19 +0000 (-0700) Subject: i965/gs: Create brw_context::gs structure to track GS program state. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a702f6325cefa7b82af9ea318551fe8e7ea3121d;p=mesa.git i965/gs: Create brw_context::gs structure to track GS program state. v2: Change name from "vec4_gs" to simply "gs". Reviewed-by: Kenneth Graunke Reviewed-by: Chad Versace --- diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index bd33fd25606..0171b5baca5 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -1171,6 +1171,11 @@ struct brw_context struct brw_vs_prog_data *prog_data; } vs; + struct { + struct brw_stage_state base; + struct brw_gs_prog_data *prog_data; + } gs; + struct { struct brw_ff_gs_prog_data *prog_data;