Commit 9fe6f984 by Nicolas Capens Committed by Shannon Woods

Implemented 3D sampler HLSL translation.

TRAC #23365 Signed-off-by: Jamie Madill Signed-off-by: Shannon Woods Author: Nicolas Capens
parent da07535f
...@@ -101,6 +101,12 @@ class OutputHLSL : public TIntermTraverser ...@@ -101,6 +101,12 @@ class OutputHLSL : public TIntermTraverser
bool mUsesTexture2DProj; bool mUsesTexture2DProj;
bool mUsesTexture2DProj_bias; bool mUsesTexture2DProj_bias;
bool mUsesTexture2DProjLod; bool mUsesTexture2DProjLod;
bool mUsesTexture3D;
bool mUsesTexture3D_bias;
bool mUsesTexture3DLod;
bool mUsesTexture3DProj;
bool mUsesTexture3DProj_bias;
bool mUsesTexture3DProjLod;
bool mUsesTextureCube; bool mUsesTextureCube;
bool mUsesTextureCube_bias; bool mUsesTextureCube_bias;
bool mUsesTextureCubeLod; bool mUsesTextureCubeLod;
...@@ -108,6 +114,10 @@ class OutputHLSL : public TIntermTraverser ...@@ -108,6 +114,10 @@ class OutputHLSL : public TIntermTraverser
bool mUsesTexture2DLod0_bias; bool mUsesTexture2DLod0_bias;
bool mUsesTexture2DProjLod0; bool mUsesTexture2DProjLod0;
bool mUsesTexture2DProjLod0_bias; bool mUsesTexture2DProjLod0_bias;
bool mUsesTexture3DLod0;
bool mUsesTexture3DLod0_bias;
bool mUsesTexture3DProjLod0;
bool mUsesTexture3DProjLod0_bias;
bool mUsesTextureCubeLod0; bool mUsesTextureCubeLod0;
bool mUsesTextureCubeLod0_bias; bool mUsesTextureCubeLod0_bias;
bool mUsesFragColor; bool mUsesFragColor;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment