Searched refs:m_pitch (Results 1 – 2 of 2) sorted by relevance
/external/deqp/framework/common/ |
D | tcuTexture.hpp | 365 int getPixelPitch (void) const { return m_pitch.x(); } in getPixelPitch() 366 int getRowPitch (void) const { return m_pitch.y(); } in getRowPitch() 367 int getSlicePitch (void) const { return m_pitch.z(); } in getSlicePitch() 368 const IVec3& getPitch (void) const { return m_pitch; } in getPitch() 372 … deUint8*)m_data + (x/m_divider.x()) * m_pitch.x() + (y/m_divider.y()) * m_pitch.y() + (z/m_divide… in getPixelPtr() 398 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in tcu::ConstPixelBufferAccess 424 …(deUint8*)m_data + (x/m_divider.x()) * m_pitch.x() + (y/m_divider.y()) * m_pitch.y() + (z/m_divide… in getPixelPtr()
|
D | tcuTexture.cpp | 932 , m_pitch (0) in ConstPixelBufferAccess() 941 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 951 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 961 , m_pitch (format.getPixelSize(), rowPitch, slicePitch) in ConstPixelBufferAccess() 971 , m_pitch (pitch) in ConstPixelBufferAccess() 976 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x()); in ConstPixelBufferAccess() 982 , m_pitch (pitch) in ConstPixelBufferAccess() 987 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x()); in ConstPixelBufferAccess() 993 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess()
|