Lines Matching defs:binding
1390 /** Checks binding
1393 * @param pname Pname of binding
1394 * @param index Index of binding
1396 * @param expected_value Expected value of binding
1403 GLint binding = -1;
1405 gl.getIntegeri_v(pname, index, &binding);
1408 if (binding != expected_value)
1410 context.getTestContext().getLog() << tcu::TestLog::Message << "Invalid binding: " << binding
1413 TCU_FAIL("Invalid binding");
1422 * @param expected_value Expected value of binding at <pname> target
1433 GLint binding = -1;
1436 gl.getIntegeri_v(pname_binding, index, &binding);
1444 if (binding != value)
1446 context.getTestContext().getLog() << tcu::TestLog::Message << "Invalid binding: " << binding
1449 TCU_FAIL("Invalid binding");
1454 /** Checks binding
1457 * @param index Index of binding
1458 * @param expected_value Expected value of binding
1464 GLint binding = -1;
1466 gl.getVertexAttribiv(index, GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING, &binding);
1469 if (binding != expected_value)
1471 context.getTestContext().getLog() << tcu::TestLog::Message << "Invalid binding: " << binding
1474 TCU_FAIL("Invalid binding");
1481 * @param texture_id Index of binding
1550 /** Get texture binding pname for given index
1609 : TestCase(context, "errors_bind_buffers", "Verifies that proper errors are generated by buffer binding routines")
1819 : TestCase(context, "errors_bind_textures", "Verifies that proper errors are generated by texture binding routines")
1936 : TestCase(context, "errors_bind_samplers", "Verifies that proper errors are generated by sampler binding routines")
2055 "Verifies that proper errors are generated by image binding routines")
2217 "Verifies that proper errors are generated by vertex buffer binding routines")
2503 * - bind any buffer to first binding;
2505 * with zeros to unbind 1st binding for tested target;
2676 * - bind any buffer to first binding;
2678 * with zeros to unbind 1st binding for tested target;
3382 "layout (std140, binding = 0) buffer SSB {\n"
3392 static const GLchar* ubo = "layout (std140, binding = XXX) uniform BXXX { vec4 data; } bXXX;";
3537 "layout (std140, binding = 0) uniform B0 { int data; } b0;"
3538 "layout (std140, binding = 1) uniform B1 { int data; } b1;"
3539 "layout (std140, binding = 2) uniform B2 { int data; } b2;"
3540 "layout (std140, binding = 3) uniform B3 { int data; } b3;"
3542 "layout (std140, binding = 0) buffer SSB {\n"
3672 "layout (std140, binding = 0) buffer SSB {\n"
3930 "layout (std140, binding = 0) buffer SSB {\n"
4186 "layout (std140, binding = 0) buffer SSB {\n"