HomeSort by relevance Sort by last modified time
    Searched refs:ConstPixelBufferAccess (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/deqp/framework/common/
tcuBilinearImageCompare.hpp 31 class ConstPixelBufferAccess;
35 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold);
tcuFuzzyImageCompare.hpp 31 class ConstPixelBufferAccess;
44 float fuzzyCompare (const FuzzyCompareParams& params, const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& errorMask);
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 floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
53 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
54 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Vec4& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
55 bool intThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode)
    [all...]
tcuImageIO.hpp 33 class ConstPixelBufferAccess;
42 void savePNG (const ConstPixelBufferAccess& src, const char* fileName);
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);
125 void copy (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src);
127 void scale (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, Sampler::FilterMode filter);
129 void estimatePixelValueRange (const ConstPixelBufferAccess& access, Vec4& minVal, Vec4& maxVal);
130 void computePixelScaleBias (const ConstPixelBufferAccess& access, Vec4& scale, Vec4& bias)
    [all...]
tcuTexLookupVerifier.hpp 116 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const float coordX, const int coordY, const Vec4& result);
117 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const IVec4& result);
118 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const UVec4& result);
120 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec4& result);
121 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const IVec4& result);
122 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const UVec4& result);
124 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec3& coord, const Vec4& result);
125 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const IVec4& result);
126 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const UVec4& result);
128 bool isLinearSampleResultValid (const ConstPixelBufferAccess& level, const Sampler& sampler, const LookupPrecision& prec, const Vec2& coord, const int coordZ, (…)
    [all...]
tcuSurface.hpp 59 ConstPixelBufferAccess getAccess (void) const;
105 inline ConstPixelBufferAccess Surface::getAccess (void) const
107 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : m_pixels.getPtr());
tcuTexture.hpp 308 * ConstPixelBufferAccess encapsulates pixel data pointer along with
315 class ConstPixelBufferAccess
318 ConstPixelBufferAccess (void);
319 ConstPixelBufferAccess (const TextureLevel& level);
320 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data);
321 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const void* data);
322 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data);
323 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const IVec3& pitch, const void* data);
373 * PixelBufferAccess to ConstPixelBufferAccess.
375 class PixelBufferAccess : public ConstPixelBufferAccess
    [all...]
tcuBilinearImageCompare.cpp 50 inline deUint32 readRGBA8Raw (const ConstPixelBufferAccess& src, deUint32 x, deUint32 y)
55 inline deUint32 readRGBA8Raw (const ConstPixelBufferAccess& src, deUint32 x, deUint32 y)
61 inline RGBA readRGBA8 (const ConstPixelBufferAccess& src, deUint32 x, deUint32 y)
86 RGBA bilinearSampleRGBA8 (const ConstPixelBufferAccess& access, deUint32 u, deUint32 v)
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& result, const PixelBufferAccess& errorMask, const RGBA threshold
    [all...]
tcuFuzzyImageCompare.cpp 74 static inline deUint32 readUnorm8 (const tcu::ConstPixelBufferAccess& src, int x, int y)
90 inline deUint32 readUnorm8<4> (const tcu::ConstPixelBufferAccess& src, int x, int y)
124 inline deUint32 bilinearSample (const ConstPixelBufferAccess& src, float u, float v)
162 static void separableConvolve (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, int shiftX, int shiftY, const std::vector<float>& kernelX, const std::vector<float>& kernelY)
213 static deUint32 distSquaredToNeighbor (de::Random& rnd, deUint32 pixel, const ConstPixelBufferAccess& surface, int x, int y)
273 float fuzzyCompare (const FuzzyCompareParams& params, const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& errorMask)
316 ConstPixelBufferAccess refAccess = refFiltered.getAccess();
317 ConstPixelBufferAccess cmpAccess = cmpFiltered.getAccess();
tcuImageCompare.cpp 44 void computeScaleAndBias (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, tcu::Vec4& scale, tcu::Vec4& bias)
91 static int findNumPositionDeviationFailingPixels (const PixelBufferAccess& errorMask, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue)
216 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode)
290 static deInt64 computeSquaredDiffSum (const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& diffMask, int diffFactor)
334 int measurePixelDiffAccuracy (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, int bestScoreDiff, int worstScoreDiff, CompareLogMode logMode
    [all...]
tcuTexture.cpp 828 ConstPixelBufferAccess::ConstPixelBufferAccess (void)
835 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data)
844 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const void* data)
853 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data)
862 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const IVec3& pitch, const void* data
    [all...]
tcuTexLookupVerifier.cpp 50 static inline bool coordsInBounds (const ConstPixelBufferAccess& access, int x, int y, int z)
56 inline Vector<ScalarType, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k)
65 inline Vector<float, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k)
101 static void lookupQuad (ColorQuad& dst, const ConstPixelBufferAccess& level, const Sampler& sampler, int x0, int x1, int y0, int y1, int z)
115 static void lookupLine (ColorLine& dst, const ConstPixelBufferAccess& level, const Sampler& sampler, int x0, int x1, int y)
520 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level,
547 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level,
582 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level,
622 bool isLinearSampleResultValid (const ConstPixelBufferAccess& level,
665 bool isLinearSampleResultValid (const ConstPixelBufferAccess& level
    [all...]
  /external/deqp/framework/opengl/
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);
gluPixelTransfer.cpp 68 void texImage2D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src)
87 void texImage3D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src)
107 void texSubImage2D (const RenderContext& context, deUint32 target, int level, int x, int y, const tcu::ConstPixelBufferAccess& src)
126 void texSubImage3D (const RenderContext& context, deUint32 target, int level, int x, int y, int z, const tcu::ConstPixelBufferAccess& src)
  /external/deqp/framework/referencerenderer/
rrMultisamplePixelBufferAccess.hpp 69 MultisampleConstPixelBufferAccess (const tcu::ConstPixelBufferAccess& rawAccess);
75 inline const tcu::ConstPixelBufferAccess& raw (void) const { return m_access; }
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;
rrMultisamplePixelBufferAccess.cpp 66 : m_access(tcu::ConstPixelBufferAccess())
70 MultisampleConstPixelBufferAccess::MultisampleConstPixelBufferAccess (const tcu::ConstPixelBufferAccess& rawAccess)
80 const tcu::ConstPixelBufferAccess MultisampleConstPixelBufferAccess::toSinglesampleAccess (void) const
84 return tcu::ConstPixelBufferAccess(m_access.getFormat(),
90 MultisampleConstPixelBufferAccess MultisampleConstPixelBufferAccess::fromSinglesampleAccess (const tcu::ConstPixelBufferAccess& original)
93 tcu::ConstPixelBufferAccess(
100 MultisampleConstPixelBufferAccess MultisampleConstPixelBufferAccess::fromMultisampleAccess (const tcu::ConstPixelBufferAccess& multisampledAccess)
146 const tcu::ConstPixelBufferAccess effectiveSrc = tcu::getEffectiveDepthStencilAccess(src.raw(), tcu::Sampler::MODE_DEPTH);
175 const tcu::ConstPixelBufferAccess effectiveSrc = tcu::getEffectiveDepthStencilAccess(src.raw(), tcu::Sampler::MODE_STENCIL);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 348 void fetchTexture (const SurfaceAccess& dst, const tcu::ConstPixelBufferAccess& src, const float* texCoord, const tcu::Vec4& colorScale, const tcu::Vec4& colorBias);
375 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
376 const tcu::ConstPixelBufferAccess& reference,
385 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
386 const tcu::ConstPixelBufferAccess& reference,
395 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
396 const tcu::ConstPixelBufferAccess& reference,
405 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
406 const tcu::ConstPixelBufferAccess& reference,
415 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result
    [all...]
glsFragmentOpUtil.hpp 147 tcu::ConstPixelBufferAccess getMultisampleAccess(const tcu::ConstPixelBufferAccess& original);
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.hpp 107 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const = 0;
137 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
153 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
170 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
186 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
203 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
219 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
236 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
vktPipelineImageUtil.cpp 319 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), bufferAlloc->getHostPtr()));
557 const tcu::ConstPixelBufferAccess level = getLevel(levelNdx, layerNdx);
657 const tcu::ConstPixelBufferAccess level = getLevel(levelNdx, layerNdx);
723 const tcu::ConstPixelBufferAccess srcAccess = getLevel(levelNdx, layerNdx);
811 const tcu::ConstPixelBufferAccess TestTexture1D::getLevel (int level, int layer) const
866 const tcu::ConstPixelBufferAccess TestTexture1DArray::getLevel (int level, int layer) const
868 const tcu::ConstPixelBufferAccess levelLayers = m_texture.getLevel(level);
872 return tcu::ConstPixelBufferAccess(levelLayers.getFormat(), levelLayers.getWidth(), 1, 1, (deUint8*)levelLayers.getDataPtr() + layerOffset);
920 const tcu::ConstPixelBufferAccess TestTexture2D::getLevel (int level, int layer) const
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.hpp 72 tcu::ConstPixelBufferAccess readSurface (vk::VkQueue queue,
82 tcu::ConstPixelBufferAccess readSurface1D (vk::VkQueue queue,
91 tcu::ConstPixelBufferAccess readVolume (vk::VkQueue queue,
102 tcu::ConstPixelBufferAccess readSurfaceLinear (vk::VkOffset3D offset,
144 void uploadVolume (const tcu::ConstPixelBufferAccess& access,
153 void uploadSurface (const tcu::ConstPixelBufferAccess& access,
162 void uploadSurface1D (const tcu::ConstPixelBufferAccess& access,
171 void uploadSurfaceLinear (const tcu::ConstPixelBufferAccess& access,
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateImageObjectUtil.hpp 73 tcu::ConstPixelBufferAccess readSurface (vk::VkQueue queue,
83 tcu::ConstPixelBufferAccess readSurface1D (vk::VkQueue queue,
92 tcu::ConstPixelBufferAccess readVolume (vk::VkQueue queue,
103 tcu::ConstPixelBufferAccess readSurfaceLinear (vk::VkOffset3D offset,
145 void uploadVolume (const tcu::ConstPixelBufferAccess& access,
154 void uploadSurface (const tcu::ConstPixelBufferAccess& access,
163 void uploadSurface1D (const tcu::ConstPixelBufferAccess& access,
172 void uploadSurfaceLinear (const tcu::ConstPixelBufferAccess& access,
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolImageObjectUtil.hpp 72 tcu::ConstPixelBufferAccess readSurface1D (vk::VkQueue queue,
81 tcu::ConstPixelBufferAccess readVolume (vk::VkQueue queue,
92 tcu::ConstPixelBufferAccess readSurfaceLinear (vk::VkOffset3D offset,
134 void uploadVolume (const tcu::ConstPixelBufferAccess& access,
143 void uploadSurface (const tcu::ConstPixelBufferAccess& access,
152 void uploadSurface1D (const tcu::ConstPixelBufferAccess& access,
161 void uploadSurfaceLinear (const tcu::ConstPixelBufferAccess& access,
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCopiesAndBlittingTests.cpp 109 void uploadBuffer (tcu::ConstPixelBufferAccess bufferAccess, const Allocation& bufferAlloc);
110 void uploadImage (tcu::ConstPixelBufferAccess imageAccess, const VkImage& image);
111 virtual tcu::TestStatus checkTestResult (tcu::ConstPixelBufferAccess result);
112 virtual void copyRegionToTextureLevel (tcu::ConstPixelBufferAccess src, tcu::PixelBufferAccess dst, CopyRegion region) = 0;
114 deUint32 calculateSize (tcu::ConstPixelBufferAccess src) const
210 void CopiesAndBlittingTestInstance::uploadBuffer(tcu::ConstPixelBufferAccess bufferAccess, const Allocation& bufferAlloc)
221 void CopiesAndBlittingTestInstance::uploadImage(tcu::ConstPixelBufferAccess imageAccess, const VkImage& image)
389 tcu::TestStatus CopiesAndBlittingTestInstance::checkTestResult(tcu::ConstPixelBufferAccess result)
391 const tcu::ConstPixelBufferAccess expected = m_expectedTextureLevel->getAccess();
402 const tcu::ConstPixelBufferAccess src = m_sourceTextureLevel->getAccess()
    [all...]

Completed in 638 milliseconds

1 2 3 4 5