/third_party/vk-gl-cts/framework/common/ |
H A D | tcuImageCompare.hpp | 34 class ConstPixelBufferAccess; 51 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode); 52 bool bitwiseCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, CompareLogMode logMode); 53 bool floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode); 54 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode); 55 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess [all...] |
H A D | tcuTextureUtil.hpp | 34 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int z, int width, int height, int depth); 37 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int width, int height); 40 ConstPixelBufferAccess flipYAccess (const ConstPixelBufferAccess& access); 129 void copy (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, const bool clearUnused = DE_TRUE); 131 void scale (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, Sampler::FilterMode filter); 133 void estimatePixelValueRange (const ConstPixelBufferAccess& access, Vec4& minVal, Vec4& maxVal); 134 void computePixelScaleBias (const ConstPixelBufferAccess [all...] |
H A D | tcuTexLookupVerifier.hpp | 122 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const float coordX, const int coordY, const Vec4& result); 123 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const IVec4& result); 124 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const UVec4& result); 126 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec4& result); 127 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const IVec4& result); 128 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const UVec4& result); 130 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec3& coord, const Vec4& result); 131 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const IVec4& result); 132 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const UVec4& result); 134 bool isLinearSampleResultValid (const ConstPixelBufferAccess [all...] |
H A D | tcuTexture.hpp | 344 * ConstPixelBufferAccess encapsulates pixel data pointer along with 351 class ConstPixelBufferAccess class 354 ConstPixelBufferAccess (void); 355 ConstPixelBufferAccess (const TextureLevel& level); 356 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data); 357 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const void* data); 358 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data); 359 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const IVec3& pitch, const void* data); 360 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const IVec3& pitch, const IVec3& divider, const void* data); 415 * PixelBufferAccess to ConstPixelBufferAccess [all...] |
H A D | tcuBilinearImageCompare.cpp | 50 inline deUint32 readRGBA8Raw (const ConstPixelBufferAccess& src, deUint32 x, deUint32 y) in readRGBA8Raw() 55 inline deUint32 readRGBA8Raw (const ConstPixelBufferAccess& src, deUint32 x, deUint32 y) in readRGBA8Raw() 61 inline RGBA readRGBA8 (const ConstPixelBufferAccess& src, deUint32 x, deUint32 y) in readRGBA8() 86 RGBA bilinearSampleRGBA8 (const ConstPixelBufferAccess& access, deUint32 u, deUint32 v) in bilinearSampleRGBA8() 114 bool comparePixelRGBA8 (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, int x, int y) 191 bool bilinearCompareRGBA8 (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold) 219 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess [all...] |
H A D | tcuBilinearImageCompare.hpp | 31 class ConstPixelBufferAccess; 35 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold);
|
H A D | tcuFuzzyImageCompare.hpp | 31 class ConstPixelBufferAccess; 44 float fuzzyCompare (const FuzzyCompareParams& params, const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& errorMask);
|
H A D | tcuFuzzyImageCompare.cpp | 74 static inline deUint32 readUnorm8 (const tcu::ConstPixelBufferAccess& src, int x, int y) in readUnorm8() 90 inline deUint32 readUnorm8<4> (const tcu::ConstPixelBufferAccess& src, int x, int y) in readUnorm8() 124 inline deUint32 bilinearSample (const ConstPixelBufferAccess& src, float u, float v) in bilinearSample() 162 static void separableConvolve (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, int shiftX, int shiftY, const std::vector<float>& kernelX, const std::vector<float>& kernelY) in separableConvolve() 213 static deUint32 distSquaredToNeighbor (de::Random& rnd, deUint32 pixel, const ConstPixelBufferAccess& surface, int x, int y) in distSquaredToNeighbor() 273 float fuzzyCompare (const FuzzyCompareParams& params, const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& errorMask) in fuzzyCompare() 316 ConstPixelBufferAccess refAccess = refFiltered.getAccess(); in fuzzyCompare() 317 ConstPixelBufferAccess cmpAccess = cmpFiltered.getAccess(); in fuzzyCompare()
|
H A D | tcuImageCompare.cpp | 44 void computeScaleAndBias (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, tcu::Vec4& scale, tcu::Vec4& bias) in computeScaleAndBias() 91 static int findNumPositionDeviationFailingPixels (const PixelBufferAccess& errorMask, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue) in findNumPositionDeviationFailingPixels() 217 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode) in fuzzyCompare() 278 bool bitwiseCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, CompareLogMode logMode) in bitwiseCompare() 386 static deInt64 computeSquaredDiffSum (const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess [all...] |
H A D | tcuSurface.hpp | 59 ConstPixelBufferAccess getAccess (void) const; 105 inline ConstPixelBufferAccess Surface::getAccess (void) const in getAccess() 107 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : m_pixels.getPtr()); in getAccess()
|
H A D | tcuTexture.cpp | 977 ConstPixelBufferAccess::ConstPixelBufferAccess (void) in ConstPixelBufferAccess() function in tcu::ConstPixelBufferAccess 985 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data) in ConstPixelBufferAccess() function in tcu::ConstPixelBufferAccess 995 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const void* data) in ConstPixelBufferAccess() function in tcu::ConstPixelBufferAccess 1005 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data) in ConstPixelBufferAccess() function in tcu::ConstPixelBufferAccess 1015 ConstPixelBufferAccess::ConstPixelBufferAccess (cons function in tcu::ConstPixelBufferAccess 1026 ConstPixelBufferAccess::ConstPixelBufferAccess(const TextureFormat& format, const IVec3& size, const IVec3& pitch, const IVec3& block, const void* data) ConstPixelBufferAccess() function in tcu::ConstPixelBufferAccess 1037 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureLevel& level) ConstPixelBufferAccess() function in tcu::ConstPixelBufferAccess 3112 static void getCubeLinearSamples (const ConstPixelBufferAccess (&faceAccesses)[CUBEFACE_LAST], CubeFace baseFace, float u, float v, int depth, Vec4 (&dst)[4]) global() member [all...] |
H A D | tcuTexLookupVerifier.cpp | 50 static inline bool coordsInBounds (const ConstPixelBufferAccess& access, int x, int y, int z) in coordsInBounds() 56 inline Vector<ScalarType, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k) in lookup() 65 inline Vector<float, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k) in lookup() 101 static void lookupQuad (ColorQuad& dst, const ConstPixelBufferAccess& level, const Sampler& sampler, int x0, int x1, int y0, int y1, int z) in lookupQuad() 115 static void lookupLine (ColorLine& dst, const ConstPixelBufferAccess& level, const Sampler& sampler, int x0, int x1, int y) in lookupLine() 565 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level, in isNearestSampleResultValid() 592 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level, in isNearestSampleResultValid() 627 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level, in isNearestSampleResultValid() 667 bool isLinearSampleResultValid (const ConstPixelBufferAccess& level, in isLinearSampleResultValid() 720 bool isLinearSampleResultValid (const ConstPixelBufferAccess 1519 static bool isSeamlessLinearSampleResultValid (const ConstPixelBufferAccess (&faces)[CUBEFACE_LAST], global() member 1591 static bool isSeamplessLinearMipmapLinearSampleResultValid (const ConstPixelBufferAccess (&faces0)[CUBEFACE_LAST], global() member 1707 static bool isCubeLevelSampleResultValid (const ConstPixelBufferAccess (&level)[CUBEFACE_LAST], global() member 1725 static bool isCubeMipmapLinearSampleResultValid (const ConstPixelBufferAccess (&faces0)[CUBEFACE_LAST], global() member [all...] |
H A D | tcuImageIO.hpp | 33 class ConstPixelBufferAccess; 42 void savePNG (const ConstPixelBufferAccess& src, const char* fileName);
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluTextureTestUtil.hpp | 171 void fetchTexture (const tcu::SurfaceAccess& dst, const tcu::ConstPixelBufferAccess& src, const float* texCoord, const tcu::Vec4& colorScale, const tcu::Vec4& colorBias); 208 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result, 209 const tcu::ConstPixelBufferAccess& reference, 218 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result, 219 const tcu::ConstPixelBufferAccess& reference, 228 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result, 229 const tcu::ConstPixelBufferAccess& reference, 238 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result, 239 const tcu::ConstPixelBufferAccess& reference, 248 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess [all...] |
H A D | gluPixelTransfer.hpp | 31 class ConstPixelBufferAccess; 43 void texImage2D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src); 44 void texImage3D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src); 45 void texSubImage2D (const RenderContext& context, deUint32 target, int level, int x, int y, const tcu::ConstPixelBufferAccess& src); 46 void texSubImage3D (const RenderContext& context, deUint32 target, int level, int x, int y, int z, const tcu::ConstPixelBufferAccess& src);
|
H A D | gluPixelTransfer.cpp | 68 void texImage2D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src) in texImage2D() 87 void texImage3D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src) in texImage3D() 107 void texSubImage2D (const RenderContext& context, deUint32 target, int level, int x, int y, const tcu::ConstPixelBufferAccess& src) in texSubImage2D() 126 void texSubImage3D (const RenderContext& context, deUint32 target, int level, int x, int y, int z, const tcu::ConstPixelBufferAccess& src) in texSubImage3D()
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrMultisamplePixelBufferAccess.hpp | 69 MultisampleConstPixelBufferAccess (const tcu::ConstPixelBufferAccess& rawAccess); 75 inline const tcu::ConstPixelBufferAccess& raw (void) const { return m_access; } in raw() 78 const tcu::ConstPixelBufferAccess toSinglesampleAccess (void) const; 80 static MultisampleConstPixelBufferAccess fromSinglesampleAccess (const tcu::ConstPixelBufferAccess& singlesampledAccess); 81 static MultisampleConstPixelBufferAccess fromMultisampleAccess (const tcu::ConstPixelBufferAccess& multisampledAccess); 84 tcu::ConstPixelBufferAccess m_access;
|
H A D | rrMultisamplePixelBufferAccess.cpp | 66 : m_access(tcu::ConstPixelBufferAccess()) in MultisampleConstPixelBufferAccess() 70 MultisampleConstPixelBufferAccess::MultisampleConstPixelBufferAccess (const tcu::ConstPixelBufferAccess& rawAccess) in MultisampleConstPixelBufferAccess() 80 const tcu::ConstPixelBufferAccess MultisampleConstPixelBufferAccess::toSinglesampleAccess (void) const in toSinglesampleAccess() 84 return tcu::ConstPixelBufferAccess(m_access.getFormat(), in toSinglesampleAccess() 90 MultisampleConstPixelBufferAccess MultisampleConstPixelBufferAccess::fromSinglesampleAccess (const tcu::ConstPixelBufferAccess& original) in fromSinglesampleAccess() 93 tcu::ConstPixelBufferAccess( in fromSinglesampleAccess() 100 MultisampleConstPixelBufferAccess MultisampleConstPixelBufferAccess::fromMultisampleAccess (const tcu::ConstPixelBufferAccess& multisampledAccess) in fromMultisampleAccess() 146 const tcu::ConstPixelBufferAccess effectiveSrc = tcu::getEffectiveDepthStencilAccess(src.raw(), tcu::Sampler::MODE_DEPTH); in resolveMultisampleDepthBuffer() 175 const tcu::ConstPixelBufferAccess effectiveSrc = tcu::getEffectiveDepthStencilAccess(src.raw(), tcu::Sampler::MODE_STENCIL); in resolveMultisampleStencilBuffer()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawImageObjectUtil.hpp | 74 tcu::ConstPixelBufferAccess readSurface (vk::VkQueue queue, 84 tcu::ConstPixelBufferAccess readDepth (vk::VkQueue queue, 94 tcu::ConstPixelBufferAccess readSurface1D (vk::VkQueue queue, 103 tcu::ConstPixelBufferAccess readVolume (vk::VkQueue queue, 114 tcu::ConstPixelBufferAccess readSurfaceLinear (vk::VkOffset3D offset, 156 void uploadVolume (const tcu::ConstPixelBufferAccess& access, 165 void uploadSurface (const tcu::ConstPixelBufferAccess& access, 174 void uploadSurface1D (const tcu::ConstPixelBufferAccess& access, 183 void uploadSurfaceLinear (const tcu::ConstPixelBufferAccess& access,
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
H A D | vktDrawImageObjectUtil.hpp | 74 tcu::ConstPixelBufferAccess readSurface (vk::VkQueue queue, 84 tcu::ConstPixelBufferAccess readDepth (vk::VkQueue queue, 94 tcu::ConstPixelBufferAccess readSurface1D (vk::VkQueue queue, 103 tcu::ConstPixelBufferAccess readVolume (vk::VkQueue queue, 114 tcu::ConstPixelBufferAccess readSurfaceLinear (vk::VkOffset3D offset, 156 void uploadVolume (const tcu::ConstPixelBufferAccess& access, 165 void uploadSurface (const tcu::ConstPixelBufferAccess& access, 174 void uploadSurface1D (const tcu::ConstPixelBufferAccess& access, 183 void uploadSurfaceLinear (const tcu::ConstPixelBufferAccess& access,
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineImageSamplingInstance.cpp | 990 const tcu::ConstPixelBufferAccess& texCoords, in validateResultImage() 995 const tcu::ConstPixelBufferAccess& result, in validateResultImage() 1078 void swizzleT (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleT() 1086 void swizzleFromSRGB (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleFromSRGB() 1094 void swizzle (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzle() 1131 typename TexViewTraits<TextureViewType>::TextureType* createSkeletonClone (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0); 1150 tcu::Texture1D* createSkeletonClone<tcu::Texture1DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() 1156 tcu::Texture1DArray* createSkeletonClone<tcu::Texture1DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() 1162 tcu::Texture2D* createSkeletonClone<tcu::Texture2DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() 1168 tcu::Texture2DArray* createSkeletonClone<tcu::Texture2DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess [all...] |
H A D | vktPipelineImageUtil.hpp | 179 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const = 0; 215 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 236 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 259 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 280 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 302 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 323 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 345 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineImageSamplingInstance.cpp | 984 const tcu::ConstPixelBufferAccess& texCoords, in validateResultImage() 989 const tcu::ConstPixelBufferAccess& result, in validateResultImage() 1072 void swizzleT (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleT() 1080 void swizzleFromSRGB (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleFromSRGB() 1088 void swizzle (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzle() 1125 typename TexViewTraits<TextureViewType>::TextureType* createSkeletonClone (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0); 1144 tcu::Texture1D* createSkeletonClone<tcu::Texture1DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() 1150 tcu::Texture1DArray* createSkeletonClone<tcu::Texture1DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() 1156 tcu::Texture2D* createSkeletonClone<tcu::Texture2DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() 1162 tcu::Texture2DArray* createSkeletonClone<tcu::Texture2DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess [all...] |
H A D | vktPipelineImageUtil.hpp | 179 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const = 0; 215 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 236 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 259 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 280 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 302 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 323 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const; 345 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiFillBufferTests.cpp | 200 void uploadBuffer (tcu::ConstPixelBufferAccess 203 virtual tcu::TestStatus checkTestResult (tcu::ConstPixelBufferAccess 205 deUint32 calculateSize (tcu::ConstPixelBufferAccess in calculateSize() 270 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), m_destinationBufferAlloc->getHostPtr())); in iterate() 292 (tcu::ConstPixelBufferAccess in uploadBuffer() 306 (tcu::ConstPixelBufferAccess in checkTestResult() 309 const tcu::ConstPixelBufferAccess in checkTestResult() 324 const tcu::ConstPixelBufferAccess in generateExpectedResult() 412 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), m_destinationBufferAlloc->getHostPtr())); in iterate() 420 const tcu::ConstPixelBufferAccess in generateExpectedResult() [all...] |