Home | History | Annotate | Download | only in functional

Lines Matching refs:numSampleCounts

85 	glw::GLint				numSampleCounts	= 0;
106 gl.getInternalformativ(m_texTarget, m_internalFormat, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
109 m_testCtx.getLog() << tcu::TestLog::Message << "GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
111 if (numSampleCounts < 1)
113 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR: Format MUST support some multisample configuration, got GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
123 if (numSampleCounts > 0)
125 samples.resize(numSampleCounts, -1);
127 gl.getInternalformativ(m_texTarget, m_internalFormat, GL_SAMPLES, numSampleCounts, &samples[0]);
136 for (int ndx = 0; ndx < numSampleCounts; ++ndx)
145 for (int ndx = 1; ndx < numSampleCounts; ++ndx)
156 for (int ndx = 1; ndx < numSampleCounts; ++ndx)
262 glw::GLint numSampleCounts = 0;
266 gl.getInternalformativ(GL_TEXTURE_2D_MULTISAMPLE, GL_RGBA8, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
269 m_testCtx.getLog() << tcu::TestLog::Message << "GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
272 if (numSampleCounts < 1)
274 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR: Format MUST support some multisample configuration, got GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
281 std::vector<glw::GLint> buffer(numSampleCounts + 1, defaultValue);
295 if (numSampleCounts > 2)