Lines Matching defs:samples
148 std::vector<glw::GLint> samples (numSampleCounts > 0 ? numSampleCounts : 1);
152 gl.getInternalformativ(m_target, m_internalFormat, GL_SAMPLES, numSampleCounts, &samples[0]);
161 for (size_t ndx = 0; ndx < samples.size(); ++ndx)
165 samplesMsg << samples[ndx];
170 for (size_t ndx = 1; ndx < samples.size(); ++ndx)
172 if (samples[ndx-1] <= samples[ndx])
180 // samples are positive
181 for (size_t ndx = 1; ndx < samples.size(); ++ndx)
183 if (samples[ndx-1] <= 0)
194 if (samples[0] < maxSamples)
469 group->addChild(new SamplesBufferCase (m_context, "samples", "Query GL_SAMPLES to too short a buffer"));