Commit decbc133 by Alexis Hetu Committed by Alexis Hétu

Removing superfluous element in semantic array

The semantic was of size 11, but the 11th member, meant for fog, was never used, so the array was resized to size 10. Change-Id: I2afbc2bc52981eb1002252cc3fb89c6954314c23 Reviewed-on: https://swiftshader-review.googlesource.com/4988Tested-by: 's avatarAlexis Hétu <sugoi@google.com> Reviewed-by: 's avatarNicolas Capens <capn@google.com> Tested-by: 's avatarNicolas Capens <capn@google.com>
parent 9240dac6
...@@ -34,7 +34,7 @@ namespace sw ...@@ -34,7 +34,7 @@ namespace sw
virtual void analyze(); virtual void analyze();
enum {MAX_INPUT_VARYINGS = 11}; enum {MAX_INPUT_VARYINGS = 10};
Semantic semantic[MAX_INPUT_VARYINGS][4]; // FIXME: Private Semantic semantic[MAX_INPUT_VARYINGS][4]; // FIXME: Private
bool vPosDeclared; bool vPosDeclared;
......
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