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

1 2 3

  /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;
50 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);
96 void copy (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src);
97 void scale (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, Sampler::FilterMode filter);
99 void estimatePixelValueRange (const ConstPixelBufferAccess& access, Vec4& minVal, Vec4& maxVal);
100 void computePixelScaleBias (const ConstPixelBufferAccess& access, Vec4& scale, Vec4& bias)
    [all...]
tcuTexture.hpp 236 * ConstPixelBufferAccess encapsulates pixel data pointer along with
243 class ConstPixelBufferAccess
246 ConstPixelBufferAccess (void);
247 ConstPixelBufferAccess (const TextureLevel& level);
248 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data);
249 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data);
299 * PixelBufferAccess to ConstPixelBufferAccess.
301 class PixelBufferAccess : public ConstPixelBufferAccess
345 ConstPixelBufferAccess getAccess (void) const { return ConstPixelBufferAccess(m_format, m_width, m_height, m_depth, getPtr());
    [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;
62 ConstPixelBufferAccess getSubAccess (int x, int y, int width, int height) const;
109 inline ConstPixelBufferAccess Surface::getSubAccess (int x, int y, int width, int height) const
123 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), width, height, 1, m_width*4, 0, ptr);
145 inline ConstPixelBufferAccess Surface::getAccess (void) const
147 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : &m_pixels[0]);
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 69 static inline deUint32 readUnorm8 (const tcu::ConstPixelBufferAccess& src, int x, int y)
85 inline deUint32 readUnorm8<4> (const tcu::ConstPixelBufferAccess& src, int x, int y)
122 inline deUint32 bilinearSample (const ConstPixelBufferAccess& src, float u, float v)
160 static void separableConvolve (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, int shiftX, int shiftY, const std::vector<float>& kernelX, const std::vector<float>& kernelY)
211 static float compareToNeighbor (const FuzzyCompareParams& params, de::Random& rnd, deUint32 pixel, const ConstPixelBufferAccess& surface, int x, int y)
272 float fuzzyCompare (const FuzzyCompareParams& params, const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& errorMask)
315 ConstPixelBufferAccess refAccess = refFiltered.getAccess();
316 ConstPixelBufferAccess cmpAccess = cmpFiltered.getAccess();
tcuImageCompare.cpp 43 void computeScaleAndBias (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, tcu::Vec4& scale, tcu::Vec4& bias)
90 static int findNumPositionDeviationFailingPixels (const PixelBufferAccess& errorMask, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue)
209 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode)
283 static deInt64 computeSquaredDiffSum (const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& diffMask, int diffFactor)
327 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 523 ConstPixelBufferAccess::ConstPixelBufferAccess (void)
533 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, const void* data)
544 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data)
555 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureLevel& level)
567 : ConstPixelBufferAccess(format, width, height, depth, data)
572 : ConstPixelBufferAccess(format, width, height, depth, rowPitch, slicePitch, data
    [all...]
tcuTexLookupVerifier.cpp 50 static inline bool coordsInBounds (const ConstPixelBufferAccess& access, int x, int y, int z)
61 inline Vector<ScalarType, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k)
70 inline Vector<float, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k)
106 static void lookupQuad (ColorQuad& dst, const ConstPixelBufferAccess& level, const Sampler& sampler, int x0, int x1, int y0, int y1, int z)
120 static void lookupLine (ColorLine& dst, const ConstPixelBufferAccess& level, const Sampler& sampler, int x0, int x1, int y)
495 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level,
522 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level,
557 static bool isNearestSampleResultValid (const ConstPixelBufferAccess& level,
597 bool isLinearSampleResultValid (const ConstPixelBufferAccess& level,
631 bool isLinearSampleResultValid (const ConstPixelBufferAccess& level
    [all...]
tcuTextureUtil.cpp 114 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int z, int width, int height, int depth)
119 return ConstPixelBufferAccess(access.getFormat(), width, height, depth, access.getRowPitch(), access.getSlicePitch(),
166 ConstPixelBufferAccess getSubregion (const ConstPixelBufferAccess& access, int x, int y, int width, int height)
190 ConstPixelBufferAccess flipYAccess (const ConstPixelBufferAccess& access)
195 return ConstPixelBufferAccess(access.getFormat(), access.getWidth(), access.getHeight(), access.getDepth(),
777 void copy (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src)
820 void scale (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, Sampler::FilterMode filter
    [all...]
tcuTestLog.hpp 137 void writeImage (const char* name, const char* description, const ConstPixelBufferAccess& surface, const Vec4& scale, const Vec4& bias, qpImageCompressionMode compressionMode = QP_IMAGE_COMPRESSION_MODE_BEST);
254 LogImage (const std::string& name, const std::string& description, const ConstPixelBufferAccess& access, qpImageCompressionMode compression = QP_IMAGE_COMPRESSION_MODE_BEST);
256 LogImage (const std::string& name, const std::string& description, const ConstPixelBufferAccess& access, const Vec4& scale, const Vec4& bias, qpImageCompressionMode compression = QP_IMAGE_COMPRESSION_MODE_BEST)
271 ConstPixelBufferAccess m_access;
  /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 72 : m_access(tcu::ConstPixelBufferAccess(tcu::TextureFormat(), 0, 0, 0, 0, 0, DE_NULL))
76 MultisampleConstPixelBufferAccess::MultisampleConstPixelBufferAccess (const tcu::ConstPixelBufferAccess& rawAccess)
86 const tcu::ConstPixelBufferAccess MultisampleConstPixelBufferAccess::toSinglesampleAccess (void) const
90 return tcu::ConstPixelBufferAccess(m_access.getFormat(),
99 MultisampleConstPixelBufferAccess MultisampleConstPixelBufferAccess::fromSinglesampleAccess (const tcu::ConstPixelBufferAccess& original)
102 tcu::ConstPixelBufferAccess(
112 MultisampleConstPixelBufferAccess MultisampleConstPixelBufferAccess::fromMultisampleAccess (const tcu::ConstPixelBufferAccess& multisampledAccess)
rrFragmentOperations.hpp 26 * (or ConstPixelBufferAccess) where the x coordinate is the sample
135 void executeStencilCompare (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const StencilState& stencilState, int numStencilBits, const tcu::ConstPixelBufferAccess& stencilBuffer);
137 void executeDepthCompare (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, TestFunc depthFunc, const tcu::ConstPixelBufferAccess& depthBuffer);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 359 void fetchTexture (const SurfaceAccess& dst, const tcu::ConstPixelBufferAccess& src, const float* texCoord, const tcu::Vec4& colorScale, const tcu::Vec4& colorBias);
383 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
384 const tcu::ConstPixelBufferAccess& reference,
393 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
394 const tcu::ConstPixelBufferAccess& reference,
403 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
404 const tcu::ConstPixelBufferAccess& reference,
413 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result,
414 const tcu::ConstPixelBufferAccess& reference,
423 int computeTextureLookupDiff (const tcu::ConstPixelBufferAccess& result
    [all...]
glsFragmentOpUtil.hpp 147 tcu::ConstPixelBufferAccess getMultisampleAccess(const tcu::ConstPixelBufferAccess& original);
glsFragmentOpUtil.cpp 288 tcu::ConstPixelBufferAccess getMultisampleAccess(const tcu::ConstPixelBufferAccess& original)
290 return tcu::ConstPixelBufferAccess(original.getFormat(),
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.hpp 122 const tcu::ConstPixelBufferAccess& getLevel (int level) const { DE_ASSERT(hasLevel(level)); return m_access[level]; }
124 const tcu::ConstPixelBufferAccess* getLevels (void) const { return &m_access[0]; }
145 const tcu::ConstPixelBufferAccess& getLevel (int level) const { return m_levels.getLevel(level); }
171 const tcu::ConstPixelBufferAccess& getLevel (int level) const { return m_levels.getLevel(level); }
198 const tcu::ConstPixelBufferAccess& getFace (int level, tcu::CubeFace face) const { return m_levels[face].getLevel(level); }
222 const tcu::ConstPixelBufferAccess& getLevel (int level) const { return m_levels.getLevel(level); }
248 const tcu::ConstPixelBufferAccess& getLevel (int level) const { return m_levels.getLevel(level); }
274 const tcu::ConstPixelBufferAccess& getLevel (int level) const { return m_levels.getLevel(level); }
315 tcu::ConstPixelBufferAccess getAccess (void) const { return m_data.getAccess(); }
    [all...]
  /external/deqp/modules/egl/
teglResizeTests.cpp 62 using tcu::ConstPixelBufferAccess;
238 bool compareRectangles (const ConstPixelBufferAccess& rectA,
239 const ConstPixelBufferAccess& rectB)
276 ConstPixelBufferAccess oldAccess =
278 ConstPixelBufferAccess newAccess =

Completed in 291 milliseconds

1 2 3