summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/genX_cmd_buffer.c
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2016-05-11 18:03:15 -0700
committerJordan Justen <jordan.l.justen@intel.com>2016-05-17 13:04:03 -0700
commit6c9f35bb73ca69b75cb40fc96c41717806fc74da (patch)
tree7b2a11986770762c913ca8c023a80f15016235c7 /src/intel/vulkan/genX_cmd_buffer.c
parent8a80af282091e692da7bf4e412918ba2362dfb4f (diff)
downloadexternal_mesa3d-6c9f35bb73ca69b75cb40fc96c41717806fc74da.zip
external_mesa3d-6c9f35bb73ca69b75cb40fc96c41717806fc74da.tar.gz
external_mesa3d-6c9f35bb73ca69b75cb40fc96c41717806fc74da.tar.bz2
Revert "HACK: Don't re-configure L3$ in render stages pre-BDW"
This reverts commit 41af9b2e517dd0c17e519490ca915b96f6898390. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94468 Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/intel/vulkan/genX_cmd_buffer.c')
-rw-r--r--src/intel/vulkan/genX_cmd_buffer.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/intel/vulkan/genX_cmd_buffer.c b/src/intel/vulkan/genX_cmd_buffer.c
index 4c9b392..ee47c29 100644
--- a/src/intel/vulkan/genX_cmd_buffer.c
+++ b/src/intel/vulkan/genX_cmd_buffer.c
@@ -330,18 +330,7 @@ genX(cmd_buffer_flush_state)(struct anv_cmd_buffer *cmd_buffer)
assert((pipeline->active_stages & VK_SHADER_STAGE_COMPUTE_BIT) == 0);
-#if GEN_GEN >= 8
- /* FIXME (jason): Currently, the config_l3 function causes problems on
- * Haswell and prior if you have a kernel older than 4.4. In order to
- * work, it requires a couple of registers be white-listed in the
- * command parser and they weren't added until 4.4. What we should do
- * is check the command parser version and make it a no-op if your
- * command parser is either off or too old. Compute won't work 100%,
- * but at least 3-D will. In the mean time, I'm going to make this
- * gen8+ only so that we can get Haswell working again.
- */
genX(cmd_buffer_config_l3)(cmd_buffer, pipeline);
-#endif
genX(flush_pipeline_select_3d)(cmd_buffer);