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 335 int getPixelPitch (void) const { return m_pitch.x(); }
336 int getRowPitch (void) const { return m_pitch.y(); }
337 int getSlicePitch (void) const { return m_pitch.z(); }
338 const IVec3& getPitch (void) const { return m_pitch; }
341 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(); }
367 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch) member in class:tcu::ConstPixelBufferAccess
391 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 886 , m_pitch (0)
894 , m_pitch (calculatePackedPitch(m_format, m_size))
    [all...]

Completed in 65 milliseconds