Lines Matching defs:samples
90 if (index >= ctx->DrawBuffer->Visual.samples) {
212 GLenum internalFormat, GLsizei samples,
218 * "If internalformat is a signed or unsigned integer format and samples
225 && samples > 0) {
239 if (samples > ctx->Const.MaxColorFramebufferSamples)
255 * greater than <samples>."
257 if (storageSamples > samples)
269 * <samples>."
271 if (storageSamples != samples)
278 assert(samples == storageSamples);
287 * "If <samples is greater than the maximum number of samples supported
296 /* since the query returns samples sorted in descending order,
301 return samples > limit ? GL_INVALID_OPERATION : GL_NO_ERROR;
311 * <samples> is greater than the value of MAX_INTEGER_SAMPLES, then the
319 * * <internalformat> is a depth/stencil-renderable format and <samples>
321 * * <internalformat> is a color-renderable format and <samples> is
324 * <samples> is greater than the value of MAX_INTEGER_SAMPLES
329 return samples > ctx->Const.MaxIntegerSamples
336 return samples > ctx->Const.MaxDepthTextureSamples
339 return samples > ctx->Const.MaxColorTextureSamples
348 * "... or if samples is greater than MAX_SAMPLES, then the error
351 return (GLuint) samples > ctx->Const.MaxSamples