OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestTexture
(Results
1 - 4
of
4
) sorted by null
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.hpp
41
class
TestTexture
;
89
const
TestTexture
&
testTexture
,
92
class
TestTexture
95
TestTexture
(const tcu::TextureFormat& format, int width, int height, int depth);
96
TestTexture
(const tcu::CompressedTexFormat& format, int width, int height, int depth);
97
virtual ~
TestTexture
(void);
125
class TestTexture1D : public
TestTexture
141
class TestTexture1DArray : public
TestTexture
158
class TestTexture2D : public
TestTexture
[
all
...]
vktPipelineImageUtil.cpp
329
const
TestTexture
& srcTexture,
513
//
TestTexture
515
TestTexture
::
TestTexture
(const tcu::TextureFormat& format, int width, int height, int depth)
527
TestTexture
::
TestTexture
(const tcu::CompressedTexFormat& format, int width, int height, int depth)
539
TestTexture
::~
TestTexture
(void)
545
deUint32
TestTexture
::getSize (void) const
566
deUint32
TestTexture
::getCompressedSize (void) cons
[
all
...]
vktPipelineImageSamplingInstance.cpp
66
static MovePtr<
TestTexture
> createTestTexture (const TcuFormatType format, VkImageViewType viewType, const tcu::IVec3& size, int layerCount)
68
MovePtr<
TestTexture
> texture;
75
texture = MovePtr<
TestTexture
>(new TestTexture1D(format, size.x()));
77
texture = MovePtr<
TestTexture
>(new TestTexture1DArray(format, size.x(), layerCount));
84
texture = MovePtr<
TestTexture
>(new TestTexture2D(format, size.x(), size.y()));
92
texture = MovePtr<
TestTexture
>(new TestTextureCube(format, size.x()));
98
texture = MovePtr<
TestTexture
>(new TestTextureCubeArray(format, size.x(), layerCount));
103
texture = MovePtr<
TestTexture
>(new TestTexture2DArray(format, size.x(), size.y(), layerCount));
110
texture = MovePtr<
TestTexture
>(new TestTexture3D(format, size.x(), size.y(), size.z()));
183
const
TestTexture
& testTexture
[
all
...]
vktPipelineImageSamplingInstance.hpp
78
de::MovePtr<
TestTexture
> m_texture;
Completed in 352 milliseconds