diff options
author | Eric Anholt <[email protected]> | 2012-03-20 15:29:11 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-03-20 15:31:44 -0700 |
commit | 447aff5b027dfab3f52d31c0b61030007d139693 (patch) | |
tree | 36e6c2d5892a50e6f604c0a0781d8fbd7917c51e /src/mesa/drivers/dri/i965/brw_gs.c | |
parent | 7e6221f2e32602cbd64f04cc704f9bb0abda7776 (diff) |
i965: Drop the INTEL_FORCE_GS environment variable.
This was a debug option during gen6 transform feedback bringup (and a
similar one existed during gen4 bringup). However, it looks like
we're done with that, and we don't anticipate it being used again,
either for geometry shaders or transform feedback.
Suggested by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_gs.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_gs.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_gs.c b/src/mesa/drivers/dri/i965/brw_gs.c index bfca169f7cb..52742d0cb72 100644 --- a/src/mesa/drivers/dri/i965/brw_gs.c +++ b/src/mesa/drivers/dri/i965/brw_gs.c @@ -231,11 +231,6 @@ static void populate_key( struct brw_context *brw, brw->primitive == _3DPRIM_QUADSTRIP || brw->primitive == _3DPRIM_LINELOOP); } - /* For testing, the environment variable INTEL_FORCE_GS can be used to - * force a GS program to be used, even if it's not necessary. - */ - if (getenv("INTEL_FORCE_GS")) - key->need_gs_prog = true; } /* Calculate interpolants for triangle and line rasterization. |