Searched refs:m_pitch (Results 1 – 2 of 2) sorted by relevance
/external/deqp/framework/common/ |
D | tcuTexture.hpp | 335 int getPixelPitch (void) const { return m_pitch.x(); } in getPixelPitch() 336 int getRowPitch (void) const { return m_pitch.y(); } in getRowPitch() 337 int getSlicePitch (void) const { return m_pitch.z(); } in getSlicePitch() 338 const IVec3& getPitch (void) const { return m_pitch; } in getPitch() 341 …int z = 0) const { return (const deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch… in getPixelPtr() 367 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in tcu::ConstPixelBufferAccess 391 …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 | 886 , m_pitch (0) in ConstPixelBufferAccess() 894 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 903 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 912 , m_pitch (format.getPixelSize(), rowPitch, slicePitch) in ConstPixelBufferAccess() 921 , m_pitch (pitch) in ConstPixelBufferAccess() 925 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x()); in ConstPixelBufferAccess() 931 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess()
|