Searched refs:m_pitch (Results 1 - 2 of 2) sorted by relevance

/external/deqp/framework/common/
H A DtcuTexture.hpp335 int getPixelPitch (void) const { return m_pitch.x(); }
336 int getRowPitch (void) const { return m_pitch.y(); }
337 int getSlicePitch (void) const { return m_pitch.z(); }
338 const IVec3& getPitch (void) const { return m_pitch; }
341 const void* getPixelPtr (int x, int y, int z = 0) const { return (const deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch.z(); }
367 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in class:tcu::ConstPixelBufferAccess
391 void* getPixelPtr (int x, int y, int z = 0) const { return (deUint8*)m_data + x * m_pitch.x() + y * m_pitch
[all...]
H A DtcuTexture.cpp886 , m_pitch (0)
894 , m_pitch (calculatePackedPitch(m_format, m_size))
903 , m_pitch (calculatePackedPitch(m_format, m_size))
912 , m_pitch (format.getPixelSize(), rowPitch, slicePitch)
921 , m_pitch (pitch)
925 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x());
931 , m_pitch (calculatePackedPitch(m_format, m_size))

Completed in 562 milliseconds