Home
last modified time | relevance | path

Searched refs:getMaximumRenderTargets (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/
DvalidationES3.cpp465 if (colorAttachment >= context->getMaximumRenderTargets()) in ValidateES3FramebufferTextureParameters()
726 if (attachments[i] >= GL_COLOR_ATTACHMENT0 + context->getMaximumRenderTargets()) in ValidateInvalidateFramebufferParameters()
DvalidationES.cpp341 if (colorAttachment >= context->getMaximumRenderTargets()) in ValidateFramebufferRenderbufferParameters()
1055 if (colorAttachment >= context->getMaximumRenderTargets()) in ValidateStateQuery()
DvalidationES2.cpp854 if (colorAttachment >= context->getMaximumRenderTargets()) in ValidateES2FramebufferTextureParameters()
DContext.h415 unsigned int getMaximumRenderTargets() const;
DlibGLESv2.cpp2680 (attachment - GL_COLOR_ATTACHMENT0_EXT) >= context->getMaximumRenderTargets()) in glGetFramebufferAttachmentParameteriv()
7947 … if (drawbuffer < 0 || drawbuffer >= static_cast<GLint>(context->getMaximumRenderTargets())) in glClearBufferiv()
7990 … if (drawbuffer < 0 || drawbuffer >= static_cast<GLint>(context->getMaximumRenderTargets())) in glClearBufferuiv()
8027 … if (drawbuffer < 0 || drawbuffer >= static_cast<GLint>(context->getMaximumRenderTargets())) in glClearBufferfv()
9899 if (n < 0 || (unsigned int)n > context->getMaximumRenderTargets()) in glDrawBuffersEXT()
9935 …for (int colorAttachment = n; colorAttachment < (int)context->getMaximumRenderTargets(); colorAtta… in glDrawBuffersEXT()
DContext.cpp3186 unsigned int Context::getMaximumRenderTargets() const in getMaximumRenderTargets() function in gl::Context