Skip to content

Commit f56cd18

Browse files
Graban, DanielZuul
authored andcommitted
Backout of change.
Change-Id: I70a05e75b9c22d872132d425160e1a710c50fabe
1 parent c1e9977 commit f56cd18

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

IGC/Compiler/CISACodeGen/PushAnalysis.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,6 @@ namespace IGC
13141314
// if there is double on input to vertex shader
13151315
if (!m_context->getModuleMetaData()->pushInfo.inputs.empty() &&
13161316
m_context->type == ShaderType::VERTEX_SHADER &&
1317-
m_context->platform.getWATable().Wa_1604402567 &&
13181317
m_context->getModuleMetaData()->compOpt.disableVertexComponentPacking)
13191318
{
13201319
PushInfo& pushInfo = m_context->getModuleMetaData()->pushInfo;

IGC/Compiler/CISACodeGen/VertexShaderCodeGen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ namespace IGC
8989
// and ElementComponentEnableMask is not full == packing occurs
9090
// right now only OGL is affected, so there is special disableVertexComponentPacking flag set by GLSL FE
9191
// if there is double on input to vertex shader
92-
&& !(m_Platform->getWATable().Wa_1604402567 && m_ModuleMetadata->compOpt.disableVertexComponentPacking)
92+
&& !m_ModuleMetadata->compOpt.disableVertexComponentPacking
9393
;
9494

9595
m_ElementComponentPackingEnabled = packedInput;

0 commit comments

Comments
 (0)