HomeSort by relevance Sort by last modified time
    Searched defs:ConstPixelBufferAccess (Results 1 - 3 of 3) sorted by null

  /external/deqp/framework/common/
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...]
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...]
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...]

Completed in 160 milliseconds