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

1 2 3 4 5 6 7

  /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 121 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const float coordX, const int coordY, const Vec4& result);
122 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const IVec4& result);
123 bool isLevel1DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const UVec4& result);
125 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec4& result);
126 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const IVec4& result);
127 bool isLevel2DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const UVec4& result);
129 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec3& coord, const Vec4& result);
130 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const IVec4& result);
131 bool isLevel3DLookupResultValid (const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const UVec4& result);
133 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 313 * ConstPixelBufferAccess encapsulates pixel data pointer along with
320 class ConstPixelBufferAccess
323 ConstPixelBufferAccess (void);
324 ConstPixelBufferAccess (const TextureLevel& level);
325 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data);
326 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const void* data);
327 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data);
328 ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const IVec3& pitch, const void* data);
378 * PixelBufferAccess to ConstPixelBufferAccess.
380 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)
217 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode)
291 static deInt64 computeSquaredDiffSum (const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& diffMask, int diffFactor)
335 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 884 ConstPixelBufferAccess::ConstPixelBufferAccess (void)
891 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data)
900 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, const IVec3& size, const (…)
    [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);
gluTextureTestUtil.hpp 156 void fetchTexture (const tcu::SurfaceAccess& dst, const tcu::ConstPixelBufferAccess& src, const float* texCoord, const tcu::Vec4& colorScale, const tcu::Vec4& colorBias);
183 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
184 const tcu::ConstPixelBufferAccess& reference,
193 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
194 const tcu::ConstPixelBufferAccess& reference,
203 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
204 const tcu::ConstPixelBufferAccess& reference,
213 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
214 const tcu::ConstPixelBufferAccess& reference,
223 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result
    [all...]
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/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.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/pipeline/
vktPipelineImageUtil.hpp 111 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const = 0;
147 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
168 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
190 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
211 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
233 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
254 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
276 virtual const tcu::ConstPixelBufferAccess getLevel (int level, int layer) const;
vktPipelineImageSamplingInstance.cpp     [all...]
vktPipelineImageUtil.cpp 326 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), bufferAlloc->getHostPtr()));
625 const tcu::ConstPixelBufferAccess level = getLevel(levelNdx, layerNdx);
737 const tcu::ConstPixelBufferAccess level = getLevel(levelNdx, layerNdx);
806 const tcu::ConstPixelBufferAccess srcAccess = getLevel(levelNdx, layerNdx);
903 const tcu::ConstPixelBufferAccess TestTexture1D::getLevel (int level, int layer) const
    [all...]
  /external/deqp/modules/glshared/
glsFragmentOpUtil.hpp 147 tcu::ConstPixelBufferAccess getMultisampleAccess(const tcu::ConstPixelBufferAccess& original);
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiFillBufferTests.cpp 92 void uploadBuffer (tcu::ConstPixelBufferAccess
95 virtual tcu::TestStatus checkTestResult (tcu::ConstPixelBufferAccess
97 deUint32 calculateSize (tcu::ConstPixelBufferAccess
188 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), m_destinationBufferAlloc->getHostPtr()));
210 (tcu::ConstPixelBufferAccess
224 (tcu::ConstPixelBufferAccess
227 const tcu::ConstPixelBufferAccess
242 const tcu::ConstPixelBufferAccess
353 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), m_destinationBufferAlloc->getHostPtr()));
361 const tcu::ConstPixelBufferAccess
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktDrawUtil.hpp 90 virtual tcu::ConstPixelBufferAccess getColorPixels (void) const = 0;
110 virtual tcu::ConstPixelBufferAccess getColorPixels (void) const;
159 virtual tcu::ConstPixelBufferAccess getColorPixels (void) const;

Completed in 246 milliseconds

1 2 3 4 5 6 7