Commit 10bcf377 by Greg Hartman Committed by Nicolas Capens

Remove const modifiers that break implicit operator= generation.

This is needed because the object is included by value in STL containers. Change-Id: I4008aa3b733bdfc6c045a7622a0e40d7eb61b0bf Reviewed-on: https://swiftshader-review.googlesource.com/3811Reviewed-by: 's avatarNicolas Capens <capn@google.com> Tested-by: 's avatarNicolas Capens <capn@google.com>
parent 5228d3c7
......@@ -82,9 +82,9 @@ namespace es2
bool isReferencedByVertexShader() const;
bool isReferencedByFragmentShader() const;
const std::string name;
const unsigned int elementIndex;
const unsigned int dataSize;
std::string name;
unsigned int elementIndex;
unsigned int dataSize;
std::vector<unsigned int> memberUniformIndexes;
......
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