Home | History | Annotate | Download | only in functional

Lines Matching refs:samples

70 		std::vector<GLint> samples;
71 samples.resize(sampleCounts, -1);
72 glGetInternalformativ(GL_RENDERBUFFER, m_internalFormat, GL_SAMPLES, sampleCounts, &samples[0]);
77 for (size_t ndx = 0; ndx < samples.size(); ++ndx, prevSampleCount = sampleCount)
79 sampleCount = samples[ndx];
89 // samples must be ordered descending
102 // the maximum value in SAMPLES is guaranteed to be at least the value of MAX_SAMPLES
109 const GLint maximumFormatSampleCount = samples[0];
112 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected maximum value in SAMPLES (" << maximumFormatSampleCount << ") to be at least the value of MAX_SAMPLES (" << maxSamples << ")" << TestLog::EndMessage;
231 addChild(new SamplesCase(m_context, (std::string(internalFormat.name) + "_samples").c_str(), "SAMPLES and NUM_SAMPLE_COUNTS", internalFormat.format, internalFormat.isIntegerFormat));
234 addChild(new SamplesBufferSizeCase(m_context, "rgba8_samples_buffer", "SAMPLES bufSize parameter", GL_RGBA8));