blob: fb1c283e5dd65498f9f6c5fff81abe005f323c29 [file] [log] [blame]
#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);
}