OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:planeNdx
(Results
1 - 10
of
10
) sorted by null
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrUtil.cpp
57
for (deUint32
planeNdx
= 0;
planeNdx
< m_description.numPlanes; ++
planeNdx
)
59
const deUint32 planeW = size.x() / m_description.planes[
planeNdx
].widthDivisor;
60
const deUint32 planeH = size.y() / m_description.planes[
planeNdx
].heightDivisor;
61
const deUint32 planeSize = m_description.planes[
planeNdx
].elementSizeBytes * planeW * planeH;
63
m_planeData[
planeNdx
].resize(planeSize);
72
for (deUint32
planeNdx
= 0;
planeNdx
< m_description.numPlanes; ++
planeNdx
)
[
all
...]
vktYCbCrViewTests.cpp
69
VkFormat getPlaneCompatibleFormat (VkFormat multiPlanarFormat, deUint32
planeNdx
)
76
if (de::inRange(
planeNdx
, 0u, 2u))
81
if (
planeNdx
== 0)
83
else if (
planeNdx
== 1)
89
if (de::inRange(
planeNdx
, 0u, 2u))
94
if (
planeNdx
== 0)
96
else if (
planeNdx
== 1)
102
if (de::inRange(
planeNdx
, 0u, 2u))
107
if (
planeNdx
== 0)
109
else if (
planeNdx
== 1
[
all
...]
vktYCbCrUtil.hpp
56
size_t getPlaneSize (deUint32
planeNdx
) const { return m_planeData[
planeNdx
].size(); }
57
void* getPlanePtr (deUint32
planeNdx
) { return &m_planeData[
planeNdx
][0]; }
58
const void* getPlanePtr (deUint32
planeNdx
) const { return &m_planeData[
planeNdx
][0]; }
vktYCbCrCopyTests.cpp
179
vk::VkFormat getPlaneCompatibleFormat (vk::VkFormat format, deUint32
planeNdx
)
181
DE_ASSERT(
planeNdx
< 3);
190
DE_ASSERT(
planeNdx
< 2);
192
if (
planeNdx
== 0)
203
DE_ASSERT(
planeNdx
< 2);
205
if (
planeNdx
== 0)
219
DE_ASSERT(
planeNdx
< 2);
221
if (
planeNdx
== 0)
232
DE_ASSERT(
planeNdx
< 2);
234
if (
planeNdx
== 0
[
all
...]
vktYCbCrConversionTests.cpp
571
const deUint32
planeNdx
= formatInfo.channels[channelNdx].
planeNdx
;
577
DE_ASSERT(size.x() % formatInfo.planes[
planeNdx
].widthDivisor == 0);
578
DE_ASSERT(size.y() % formatInfo.planes[
planeNdx
].heightDivisor == 0);
580
deUint32 accessWidth = size.x() / formatInfo.planes[
planeNdx
].widthDivisor;
581
const deUint32 accessHeight = size.y() / formatInfo.planes[
planeNdx
].heightDivisor;
582
const deUint32 elementSizeBytes = formatInfo.planes[
planeNdx
].elementSizeBytes;
584
const deUint32 rowPitch = formatInfo.planes[
planeNdx
].elementSizeBytes * accessWidth;
593
return ChannelAccess((tcu::TextureChannelClass)formatInfo.channels[channelNdx].type, sizeBits, IVec3(accessWidth, accessHeight, 1u), IVec3((int)pixelStrideBits, (int)rowPitchBits, 0), data.getPlanePtr(
planeNdx
), (deUint32)valueOffsetBits);
[
all
...]
/external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.hpp
92
deUint8
planeNdx
;
115
VkImageAspectFlagBits getPlaneAspect (deUint32
planeNdx
);
vkNullDriver.cpp
934
for (deUint32
planeNdx
= 0;
planeNdx
< desc.numPlanes; ++
planeNdx
)
936
const deUint32 planeW = extent.width / desc.planes[
planeNdx
].widthDivisor;
937
const deUint32 planeH = extent.height / desc.planes[
planeNdx
].heightDivisor;
938
const deUint32 elementSize = desc.planes[
planeNdx
].elementSizeBytes;
[
all
...]
vkImageUtil.cpp
1394
VkImageAspectFlagBits getPlaneAspect (deUint32
planeNdx
)
1396
DE_ASSERT(de::inBounds(
planeNdx
, 0u, 3u));
1397
return (VkImageAspectFlagBits)(VK_IMAGE_ASPECT_PLANE_0_BIT_KHR <<
planeNdx
);
[
all
...]
/external/deqp/framework/referencerenderer/
rrRenderer.cpp
549
for (int
planeNdx
= 0;
planeNdx
< numPlanes; ++
planeNdx
)
551
const ClipVolumePlane* plane = planes[
planeNdx
];
565
clippedByPlane[
planeNdx
] = true;
570
clippedByPlane[
planeNdx
] = false;
604
for (int
planeNdx
= 0;
planeNdx
< numPlanes; ++
planeNdx
)
608
if (!clippedByPlane[
planeNdx
])
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryRequirementsTests.cpp
[
all
...]
Completed in 651 milliseconds