Searched refs:m_pitch (Results 1 – 2 of 2) sorted by relevance
/external/deqp/framework/common/ |
D | tcuTexture.hpp | 330 int getPixelPitch (void) const { return m_pitch.x(); } in getPixelPitch() 331 int getRowPitch (void) const { return m_pitch.y(); } in getRowPitch() 332 int getSlicePitch (void) const { return m_pitch.z(); } in getSlicePitch() 333 const IVec3& getPitch (void) const { return m_pitch; } in getPitch() 336 …int z = 0) const { return (const deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch… in getPixelPtr() 362 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in tcu::ConstPixelBufferAccess 386 …nt y, int z = 0) const { return (deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch… in getPixelPtr()
|
D | tcuTexture.cpp | 830 , m_pitch (0) in ConstPixelBufferAccess() 838 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 847 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 856 , m_pitch (format.getPixelSize(), rowPitch, slicePitch) in ConstPixelBufferAccess() 865 , m_pitch (pitch) in ConstPixelBufferAccess() 869 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x()); in ConstPixelBufferAccess() 875 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess()
|