Home
last modified time | relevance | path

Searched refs:planeCount (Results 1 - 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/
H A DClipPlaneTest.cpp36 GLint planeCount = 0; in TEST_P() local
37 glGetIntegerv(GL_MAX_CLIP_PLANES, &planeCount); in TEST_P()
40 EXPECT_GE(planeCount, 1); // spec minimum in TEST_P()
44 for (int i = 0; i < planeCount; i++) in TEST_P()
64 GLint planeCount = 0; in TEST_P() local
65 glGetIntegerv(GL_MAX_CLIP_PLANES, &planeCount); in TEST_P()
68 glClipPlanef(GL_CLIP_PLANE0 + planeCount, nullptr); in TEST_P()
74 glGetClipPlanef(GL_CLIP_PLANE0 + planeCount, nullptr); in TEST_P()
84 GLint planeCount = 0; in TEST_P() local
85 glGetIntegerv(GL_MAX_CLIP_PLANES, &planeCount); in TEST_P()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/linux/
H A DDmaBufImageSiblingVkLinux.cpp95 uint32_t planeCount, in GetModifiers()
98 for (uint32_t plane = 0; plane < planeCount; ++plane) in GetModifiers()
256 uint32_t planeCount, in GetAllocateInfo()
272 planeCount > 1 && IsMaskFlagSet(properties.drmFormatModifierTilingFeatures, kDisjointBit); in GetAllocateInfo()
276 for (uint32_t plane = 1; plane < planeCount; ++plane) in GetAllocateInfo()
293 const uint32_t planesToAllocate = isDisjoint ? planeCount : 1; in GetAllocateInfo()
351 const uint32_t planeCount = GetPlaneCount(mAttribs); in initImpl() local
354 GetModifiers(mAttribs, planeCount, &planeModifiers); in initImpl()
360 for (uint32_t plane = 0; plane < planeCount; ++plane) in initImpl()
378 ANGLE_VK_CHECK(displayVk, modifierProperties.drmFormatModifierPlaneCount == planeCount, in initImpl()
94 GetModifiers(const egl::AttributeMap &attribs, uint32_t planeCount, PerPlane<uint64_t> *drmModifiersOut) GetModifiers() argument
254 GetAllocateInfo(const egl::AttributeMap &attribs, VkImage image, uint32_t planeCount, const VkDrmFormatModifierPropertiesEXT &properties, AllocateInfo *infoOut) GetAllocateInfo() argument
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/external_memory/
H A DMemoryServiceDmaBuf.cpp98 uint32_t planeCount = 0; in SupportsCreateImage() local
101 &planeCount)) { in SupportsCreateImage()
104 if (planeCount == 0) { in SupportsCreateImage()
108 if (planeCount > 1) { in SupportsCreateImage()
238 uint32_t planeCount; in CreateImage() local
239 DAWN_TRY_ASSIGN(planeCount, in CreateImage()
242 ASSERT(planeCount == 1); in CreateImage()
249 explicitCreateInfo.drmFormatModifierPlaneCount = planeCount; in CreateImage()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
H A DDisplay.cpp535 size_t planeCount = IOSurfaceGetPlaneCount(ioSurface); in createPBufferSurface() local
538 ((planeCount != 0) && static_cast<size_t>(ioSurfacePlane) >= planeCount)) in createPBufferSurface()
/third_party/mesa3d/include/android_stub/android/
H A Dhardware_buffer.h326 uint32_t planeCount; ///< Number of distinct planes member
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkWsiUtil.cpp190 deUint32 planeCount = 0u; in createDisplaySurface() local
193 VK_CHECK_SUPPORTED(vki.getPhysicalDeviceDisplayPlanePropertiesKHR(physDevice, &planeCount, DE_NULL)); in createDisplaySurface()
195 planeProperties.resize(planeCount); in createDisplaySurface()
196 VK_CHECK_SUPPORTED(vki.getPhysicalDeviceDisplayPlanePropertiesKHR(physDevice, &planeCount, &planeProperties[0])); in createDisplaySurface()
198 for (deUint32 i = 0; i < planeCount; ++i) in createDisplaySurface()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationEGL.cpp4257 EGLAttrib planeCount = -1; in ValidateStreamConsumerGLTextureExternalAttribsNV() local
4282 // planeCount = -1 is a tag for the default plane count so the value must be checked in ValidateStreamConsumerGLTextureExternalAttribsNV()
4290 planeCount = value; in ValidateStreamConsumerGLTextureExternalAttribsNV()
4315 if (planeCount > 0) in ValidateStreamConsumerGLTextureExternalAttribsNV()
4339 if (planeCount == -1) in ValidateStreamConsumerGLTextureExternalAttribsNV()
4341 planeCount = 2; in ValidateStreamConsumerGLTextureExternalAttribsNV()
4343 if (planeCount < 1 || planeCount > 3) in ValidateStreamConsumerGLTextureExternalAttribsNV()
4348 for (EGLAttrib i = planeCount; i < 3; i++) in ValidateStreamConsumerGLTextureExternalAttribsNV()
4359 for (EGLAttrib i = 0; i < planeCount; in ValidateStreamConsumerGLTextureExternalAttribsNV()
[all...]
H A Dformatutils.h552 uint32_t planeCount; member
H A Dformatutils.cpp620 planeCount = gl::GetPlaneCount(internalFormat); in YuvFormatInfo()
630 planeBpp[2] = (planeCount > 2) ? planeBpp[1] : 0; in YuvFormatInfo()
636 planeExtent[2] = (planeCount > 2) ? planeExtent[1] : Extents(); in YuvFormatInfo()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DImageTest.cpp494 EXPECT_EQ(data.size(), planeInfo.planeCount); in writeAHBData()
803 ASSERT_EQ(data.size(), planeInfo.planeCount); in verifyResultAHB()
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_format_traits.hpp6996 VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_14 uint8_t planeCount( VULKAN_HPP_NAMESPACE::Format format ) in planeCount() function
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_helpers.cpp5840 for (uint32_t plane = 0; plane < yuvInfo.planeCount; plane++) in stageSubresourceUpdateImpl()

Completed in 42 milliseconds