Home | History | Annotate | Download | only in functional

Lines Matching refs:GL_SAMPLES

127 			gl.getInternalformativ(m_texTarget, m_internalFormat, GL_SAMPLES, numSampleCounts, &samples[0]);
128 GLU_EXPECT_NO_ERROR(gl.getError(), "get GL_SAMPLES");
135 samplesMsg << "GL_SAMPLES = [";
283 m_testCtx.getLog() << tcu::TestLog::Message << "Querying GL_SAMPLES to larger-than-needed buffer." << tcu::TestLog::EndMessage;
284 gl.getInternalformativ(GL_TEXTURE_2D_MULTISAMPLE, GL_RGBA8, GL_SAMPLES, (glw::GLsizei)buffer.size(), &buffer[0]);
285 GLU_EXPECT_NO_ERROR(gl.getError(), "get GL_SAMPLES");
299 m_testCtx.getLog() << tcu::TestLog::Message << "Querying GL_SAMPLES to buffer with bufSize=2." << tcu::TestLog::EndMessage;
300 gl.getInternalformativ(GL_TEXTURE_2D_MULTISAMPLE, GL_RGBA8, GL_SAMPLES, 2, buffer);
301 GLU_EXPECT_NO_ERROR(gl.getError(), "get GL_SAMPLES");
314 m_testCtx.getLog() << tcu::TestLog::Message << "Querying GL_SAMPLES to zero-sized buffer." << tcu::TestLog::EndMessage;
315 gl.getInternalformativ(GL_TEXTURE_2D_MULTISAMPLE, GL_RGBA8, GL_SAMPLES, 0, buffer);
316 GLU_EXPECT_NO_ERROR(gl.getError(), "get GL_SAMPLES");
418 const std::string desc = std::string("Verify GL_SAMPLES of ") + internalFormats[caseNdx].name;
431 group->addChild(new SamplesBufferCase (m_context, "samples", "Query GL_SAMPLES to too short a buffer"));