Files
filament/third_party/glslang/Test/spv.tensorARM.invalid_operands.comp
Mathias Agopian 538f497d4d update glslang to version 15.4.0
add a nicer script to update
2025-08-11 15:44:28 -07:00

13 lines
304 B
Plaintext

#version 460 core
#extension GL_ARM_tensors : enable
uniform tensorARM<int, 2> t;
void main() {
int ret;
// error: operands is not a constant expression.
uint operands = gl_TensorOperandsNonTemporalARM | gl_TensorOperandsOutOfBoundsValueARM;
tensorReadARM(t, uint[](0,0), ret, operands, 1);
}