Lines Matching defs:samples
113 if (index >= ctx->DrawBuffer->Visual.samples) {
234 GLenum internalFormat, GLsizei samples,
240 * "If internalformat is a signed or unsigned integer format and samples
247 && samples > 0) {
261 if (samples > ctx->Const.MaxColorFramebufferSamples)
277 * greater than <samples>."
279 if (storageSamples > samples)
291 * <samples>."
293 if (storageSamples != samples)
300 assert(samples == storageSamples);
309 * "If <samples is greater than the maximum number of samples supported
318 /* since the query returns samples sorted in descending order,
323 return samples > limit ? GL_INVALID_OPERATION : GL_NO_ERROR;
333 * <samples> is greater than the value of MAX_INTEGER_SAMPLES, then the
341 * * <internalformat> is a depth/stencil-renderable format and <samples>
343 * * <internalformat> is a color-renderable format and <samples> is
346 * <samples> is greater than the value of MAX_INTEGER_SAMPLES
351 return samples > ctx->Const.MaxIntegerSamples
358 return samples > ctx->Const.MaxDepthTextureSamples
361 return samples > ctx->Const.MaxColorTextureSamples
370 * "... or if samples is greater than MAX_SAMPLES, then the error
373 return (GLuint) samples > ctx->Const.MaxSamples