HomeSort by relevance Sort by last modified time
    Searched refs:m_pitch (Results 1 - 2 of 2) sorted by null

  /external/deqp/framework/common/
tcuTexture.hpp 332 int getPixelPitch (void) const { return m_pitch.x(); }
333 int getRowPitch (void) const { return m_pitch.y(); }
334 int getSlicePitch (void) const { return m_pitch.z(); }
335 const IVec3& getPitch (void) const { return m_pitch; }
338 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(); }
364 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in class:tcu::ConstPixelBufferAccess
388 void* getPixelPtr (int x, int y, int z = 0) const { return (deUint8*)m_data + x * m_pitch.x() + y * m_pitch.y() + z * m_pitch.z();
    [all...]
tcuTexture.cpp 830 , m_pitch (0)
838 , m_pitch (calculatePackedPitch(m_format, m_size))
847 , m_pitch (calculatePackedPitch(m_format, m_size))
856 , m_pitch (format.getPixelSize(), rowPitch, slicePitch)
865 , m_pitch (pitch)
869 DE_ASSERT(m_format.getPixelSize() <= m_pitch.x());
875 , m_pitch (calculatePackedPitch(m_format, m_size))
    [all...]

Completed in 163 milliseconds