Skip to content
Snippets Groups Projects
Commit 849e85df authored by Ptolemy's avatar Ptolemy
Browse files

SL-17274: Fix diffuse color not being used in pbr shader

parent 54919fa7
No related branches found
No related tags found
No related merge requests found
......@@ -34,9 +34,11 @@ class LLDrawPoolPBROpaque : public LLRenderPass
public:
enum
{
VERTEX_DATA_MASK = LLVertexBuffer::MAP_VERTEX
| LLVertexBuffer::MAP_NORMAL
| LLVertexBuffer::MAP_TEXCOORD0
VERTEX_DATA_MASK = 0
| LLVertexBuffer::MAP_VERTEX
| LLVertexBuffer::MAP_NORMAL
| LLVertexBuffer::MAP_TEXCOORD0
| LLVertexBuffer::MAP_COLOR
};
virtual U32 getVertexDataMask() { return VERTEX_DATA_MASK; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment