summaryrefslogtreecommitdiffstats
path: root/src/intel/blorp
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2019-08-23 15:33:24 -0500
committerJason Ekstrand <[email protected]>2019-08-25 01:02:52 -0500
commitf58e0405b6ca15d9b82122d82311e8b82f4a0939 (patch)
tree4dfa20043f16cf2d9663c86129b6b68fe31c2531 /src/intel/blorp
parent5ff41b9fc5ed2298b70772666573ad47418d12fd (diff)
intel/fs: Drop the gl_program from fs_visitor
It's not used by anything anymore now that so much lowering has been moved into NIR. Sadly, we still need on in brw_compile_gs() for geometry shaders on Sandy Bridge. Short of a lot of pointless work, that one's probably not going away. Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/blorp')
-rw-r--r--src/intel/blorp/blorp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/blorp/blorp.c b/src/intel/blorp/blorp.c
index 480107d2a34..498457572db 100644
--- a/src/intel/blorp/blorp.c
+++ b/src/intel/blorp/blorp.c
@@ -205,7 +205,7 @@ blorp_compile_fs(struct blorp_context *blorp, void *mem_ctx,
const unsigned *program =
brw_compile_fs(compiler, blorp->driver_ctx, mem_ctx, wm_key,
- wm_prog_data, nir, NULL, -1, -1, -1, false, use_repclear,
+ wm_prog_data, nir, -1, -1, -1, false, use_repclear,
NULL, NULL, NULL);
return program;