Searched refs:m_pitch (Results 1 – 2 of 2) sorted by relevance
/external/deqp/framework/common/ |
D | tcuTexture.hpp | 361 int getPixelPitch (void) const { return m_pitch.x(); } in getPixelPitch() 362 int getRowPitch (void) const { return m_pitch.y(); } in getRowPitch() 363 int getSlicePitch (void) const { return m_pitch.z(); } in getSlicePitch() 364 const IVec3& getPitch (void) const { return m_pitch; } in getPitch() 368 … deUint8*)m_data + (x/m_divider.x()) * m_pitch.x() + (y/m_divider.y()) * m_pitch.y() + (z/m_divide… in getPixelPtr() 394 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in tcu::ConstPixelBufferAccess 420 …(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 | 918 , m_pitch (0) in ConstPixelBufferAccess() 927 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 937 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess() 947 , m_pitch (format.getPixelSize(), rowPitch, slicePitch) in ConstPixelBufferAccess() 957 , m_pitch (pitch) in ConstPixelBufferAccess() 962 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x()); in ConstPixelBufferAccess() 968 , m_pitch (pitch) in ConstPixelBufferAccess() 973 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x()); in ConstPixelBufferAccess() 979 , m_pitch (calculatePackedPitch(m_format, m_size)) in ConstPixelBufferAccess()
|