Lines Matching defs:indirect
414 GLintptr indirect = 0;
415 ctx.glDispatchComputeIndirect(indirect);
433 GLintptr indirect = 0;
434 ctx.glDispatchComputeIndirect(indirect);
526 GLintptr indirect = 0;
527 ctx.glDispatchComputeIndirect(indirect);
546 GLintptr indirect = 1 << 10;
547 ctx.glDispatchComputeIndirect(indirect);
556 ctx.beginSection("GL_INVALID_VALUE is generated by glDispatchComputeIndirect if the value of indirect is less than zero.");
557 GLintptr indirect = -1;
558 ctx.glDispatchComputeIndirect(indirect);
574 ctx.beginSection("GL_INVALID_VALUE is generated by glDispatchComputeIndirect if indirect is not a multiple of the size, in basic machine units, of uint.");
575 GLintptr indirect = sizeof(data) + 1;
576 ctx.glDispatchComputeIndirect(indirect);