skia2/tests/sksl/errors/BitShiftFloatMatrix.glsl
Ethan Nicholas cb13c892af Added range highlighting to SkSL error reports
SkSL errors now identify the specific range of code they are describing,
rather than just the line number.

Change-Id: Ifabb3148476f9b4cd8e532f23e5b38e1cf33a87e
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/528039
Reviewed-by: John Stiles <johnstiles@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
2022-04-07 13:29:48 +00:00

34 lines
1.2 KiB
GLSL

### Compilation failed:
error: 5: type mismatch: '>>=' cannot operate on 'float2x2', 'int'
void shr_eq() { x >>= 1; }
^^^^^^^
error: 6: type mismatch: '<<=' cannot operate on 'float2x2', 'int'
void shl_eq() { x <<= 1; }
^^^^^^^
error: 7: type mismatch: '&=' cannot operate on 'float2x2', 'int'
void and_eq() { x &= 1; }
^^^^^^^
error: 8: type mismatch: '|=' cannot operate on 'float2x2', 'int'
void or_eq() { x |= 1; }
^^^^^^^
error: 9: type mismatch: '^=' cannot operate on 'float2x2', 'int'
void xor_eq() { x ^= 1; }
^^^^^^^
error: 11: type mismatch: '>>' cannot operate on 'float2x2', 'int'
void shr() { x = x >> 1; }
^^^^^^
error: 12: type mismatch: '<<' cannot operate on 'float2x2', 'int'
void shl() { x = x << 1; }
^^^^^^
error: 13: type mismatch: '&' cannot operate on 'float2x2', 'int'
void and() { x = x & 1; }
^^^^^
error: 14: type mismatch: '|' cannot operate on 'float2x2', 'int'
void or() { x = x | 1; }
^^^^^
error: 15: type mismatch: '^' cannot operate on 'float2x2', 'int'
void xor() { x = x ^ 1; }
^^^^^
10 errors