Lines Matching defs:linked
96 * * Test with program that isn't linked succesfully. Expect INVALID_OPERATION
111 * * Test with nonexistent/deleted/unsuccesfully linked program. Expect
219 * * Test with unsuccesfully linked program. Expect INVALID_OPERATION GL error.
299 * * Test that unsuccesfully linked program cannot be made part of a program
539 int linked = GL_FALSE;
543 gl.getProgramiv(program, GL_LINK_STATUS, &linked);
546 return (program != 0) && (separable == expectedSep) && (linked == expectedLink);
809 // Program that is not successfully linked
1052 // it was linked. So in the tests below, the queries
1054 // program has no linked binary.
1947 // Program that is not successfully linked
2021 int linked = GL_FALSE;
2024 gl.getProgramiv(program, GL_LINK_STATUS, &linked);
2026 if (expectedLink && !linked)
2032 return (program != 0) && (linked == expectedLink);
2429 // Negative Case: Unsuccessfully linked program should not affect current program
2641 int linked = GL_FALSE;
2644 gl.getProgramiv(program, GL_LINK_STATUS, &linked);
2646 if (expectedLink && !linked)
2652 return (program != 0) && (linked == expectedLink);