Home
last modified time | relevance | path

Searched refs:maxColorAttachments (Results 1 – 25 of 59) sorted by relevance

123

/third_party/vk-gl-cts/modules/gles3/functional/
Des3fNegativeBufferApiTests.cpp811 int maxColorAttachments; in init()
813 glGetIntegerv (GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in init()
851 glReadBuffer (GL_COLOR_ATTACHMENT0 + maxColorAttachments); in init()
854 if (GL_COLOR_ATTACHMENT0+maxColorAttachments < GL_DEPTH_ATTACHMENT-1) in init()
1314 int maxColorAttachments; in init()
1315 glGetIntegerv (GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in init()
1317 attachments[1] = GL_COLOR_ATTACHMENT0 + maxColorAttachments; in init()
1348 int maxColorAttachments; in init()
1349 glGetIntegerv (GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in init()
1351 attachments[1] = GL_COLOR_ATTACHMENT0 + maxColorAttachments; in init()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fNegativeBufferApiTests.cpp762 int maxColorAttachments = -1; in draw_buffers() local
763 ctx.glGetIntegerv (GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in draw_buffers()
773 attachments[0] = (glw::GLenum) (GL_COLOR_ATTACHMENT0 + maxColorAttachments); in draw_buffers()
959 int maxColorAttachments = 0x1234; in read_buffer() local
962 ctx.glGetIntegerv (GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in read_buffer()
1000 ctx.glReadBuffer (GL_COLOR_ATTACHMENT0 + maxColorAttachments); in read_buffer()
1003 if (GL_COLOR_ATTACHMENT0+maxColorAttachments < GL_DEPTH_ATTACHMENT-1) in read_buffer()
1689 int maxColorAttachments = 0x1234; in invalidate_framebuffer() local
1691 ctx.glGetIntegerv (GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in invalidate_framebuffer()
1693 attachments[1] = GL_COLOR_ATTACHMENT0 + maxColorAttachments; in invalidate_framebuffer()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_caps_utils.cpp134 std::min<uint32_t>(limitsVk.maxColorAttachments, limitsVk.maxFragmentOutputAttachments); in ensureCapsInitialized()
137 mNativeCaps.maxColorAttachments = limitsVk.maxColorAttachments; in ensureCapsInitialized()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DFramebufferTest.cpp486 GLint maxColorAttachments = 0; in TEST_P() local
487 glGetIntegerv(GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in TEST_P()
488 GLenum attachment = static_cast<GLenum>(maxColorAttachments + GL_COLOR_ATTACHMENT0); in TEST_P()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderLayeredFBO.cpp801 glw::GLint maxColorAttachments = 0; in iterate() local
812 gl.getIntegerv(GL_MAX_COLOR_ATTACHMENTS, &maxColorAttachments); in iterate()
820 …gl.framebufferTexture(fbEnums[i], GL_COLOR_ATTACHMENT0 + maxColorAttachments, m_to_id /* texture *… in iterate()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_caps_utils.cpp588 std::min(limitsVk.maxColorAttachments, limitsVk.maxFragmentOutputAttachments); in ensureCapsInitialized()
591 mNativeCaps.maxColorAttachments = LimitToInt(limitsVk.maxColorAttachments); in ensureCapsInitialized()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DAdapterVk.cpp258 if (vkLimits.maxColorAttachments < kMaxColorAttachments) { in InitializeSupportedLimitsImpl()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DCaps.h212 GLint maxColorAttachments = 0; member
DFramebuffer.cpp378 mColorAttachments(caps.maxColorAttachments), in FramebufferState()
799 ASSERT(mState.mColorAttachments.size() == static_cast<size_t>(caps.maxColorAttachments)); in Framebuffer()
DCaps.cpp1011 caps.maxColorAttachments = 4; in GenerateMinimumCaps()
DvalidationES.cpp1375 if (colorAttachment >= context->getCaps().maxColorAttachments) in ValidateAttachmentTarget()
4622 GL_COLOR_ATTACHMENT0 + static_cast<GLuint>(context->getCaps().maxColorAttachments)) in ValidateDiscardFramebufferBase()
4929 GLuint maxColorAttachment = GL_COLOR_ATTACHMENT0_EXT + context->getCaps().maxColorAttachments; in ValidateDrawBuffersBase()
5370 static_cast<GLuint>(context->getCaps().maxColorAttachments)) in ValidateGetFramebufferAttachmentParameterivBase()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DCaps.h618 GLuint maxColorAttachments = 0; member
DFramebuffer.cpp282 mColorAttachments(caps.maxColorAttachments), in FramebufferState()
628 ASSERT(mState.mColorAttachments.size() == static_cast<size_t>(caps.maxColorAttachments)); in Framebuffer()
DvalidationES.cpp1127 if (colorAttachment >= context->getCaps().maxColorAttachments) in ValidateAttachmentTarget()
3296 if (attachments[i] >= GL_COLOR_ATTACHMENT0 + context->getCaps().maxColorAttachments) in ValidateDiscardFramebufferBase()
3562 GLuint maxColorAttachment = GL_COLOR_ATTACHMENT0_EXT + context->getCaps().maxColorAttachments; in ValidateDrawBuffersBase()
3957 (attachment - GL_COLOR_ATTACHMENT0_EXT) >= context->getCaps().maxColorAttachments) in ValidateGetFramebufferAttachmentParameterivBase()
DCaps.cpp961 caps.maxColorAttachments = 4; in GenerateMinimumCaps()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Drenderer9_utils.cpp537 caps->maxColorAttachments = 1; in GenerateCaps()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Drenderer9_utils.cpp554 caps->maxColorAttachments = 1; in GenerateCaps()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
DvktDrawAhbTests.cpp217 if (m_data.m_numLayers > properties.limits.maxColorAttachments) in checkSupport()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DContext11.cpp516 caps.maxColorAttachments = caps.maxCombinedShaderOutputResources; in getNativeCaps()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_screen.c417 return screen->info.props.limits.maxColorAttachments; in zink_get_param()
817 max = screen->info.props.limits.maxColorAttachments; in zink_get_shader_param()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DFrameBufferMtl.mm1027 uint32_t maxColorAttachments = static_cast<uint32_t>(mState.getColorAttachments().size());
1030 for (uint32_t colorIndexGL = 0; colorIndexGL < maxColorAttachments; ++colorIndexGL)
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DContext11.cpp841 caps.maxColorAttachments = caps.maxCombinedShaderOutputResources; in getNativeCaps()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvkphysicaldevice.c622 DEBUG_UINT32 ("limit", limits, maxColorAttachments); in dump_limits()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp743 caps->maxColorAttachments = QuerySingleGLInt(functions, GL_MAX_COLOR_ATTACHMENTS); in GenerateCaps()
748 caps->maxColorAttachments = 1; in GenerateCaps()
/third_party/mesa3d/src/panfrost/vulkan/
Dpanvk_device.c810 .maxColorAttachments = MAX_RTS, in panvk_GetPhysicalDeviceProperties2()

123