Home
last modified time | relevance | path

Searched refs:m_access (Results 1 – 9 of 9) sorted by relevance

/external/deqp/framework/referencerenderer/
DrrMultisamplePixelBufferAccess.cpp31 : m_access(rawAccess) in MultisamplePixelBufferAccess()
36 : m_access(tcu::PixelBufferAccess(tcu::TextureFormat(), 0, 0, 0, 0, 0, DE_NULL)) in MultisamplePixelBufferAccess()
44 return tcu::PixelBufferAccess(m_access.getFormat(), in toSinglesampleAccess()
45 tcu::IVec3(m_access.getHeight(), m_access.getDepth(), 1), in toSinglesampleAccess()
46 …tcu::IVec3(m_access.getRowPitch(), m_access.getSlicePitch(), m_access.getSlicePitch() * m_access.g… in toSinglesampleAccess()
47 m_access.getDataPtr()); in toSinglesampleAccess()
66 : m_access(tcu::ConstPixelBufferAccess(tcu::TextureFormat(), 0, 0, 0, 0, 0, DE_NULL)) in MultisampleConstPixelBufferAccess()
71 : m_access(rawAccess) in MultisampleConstPixelBufferAccess()
76 : m_access(msAccess.raw()) in MultisampleConstPixelBufferAccess()
84 return tcu::ConstPixelBufferAccess(m_access.getFormat(), in toSinglesampleAccess()
[all …]
DrrMultisamplePixelBufferAccess.hpp47 inline const tcu::PixelBufferAccess& raw (void) const { return m_access; } in raw()
56 tcu::PixelBufferAccess m_access; member in rr::MultisamplePixelBufferAccess
75 inline const tcu::ConstPixelBufferAccess& raw (void) const { return m_access; } in raw()
84 tcu::ConstPixelBufferAccess m_access; member in rr::MultisampleConstPixelBufferAccess
/external/deqp/modules/gles31/functional/
Des31fSSBOArrayLengthTests.cpp65 const ArrayAccess m_access; member in deqp::gles31::Functional::__anon33ba0d500111::SSBOArrayLengthCase
77 , m_access (access) in SSBOArrayLengthCase()
237 …const std::string qualifierStr = (m_access == ACCESS_READONLY) ? ("readonly ") : (m_access == ACCE… in genComputeSource()
258 if (m_access == ACCESS_READONLY || m_access == ACCESS_DEFAULT) in genComputeSource()
262 if (m_access == ACCESS_WRITEONLY || m_access == ACCESS_DEFAULT) in genComputeSource()
/external/deqp/framework/common/
DtcuTexture.hpp592 int getNumLevels (void) const { return (int)m_access.size(); } in getNumLevels()
593 const ConstPixelBufferAccess& getLevel (int ndx) const { return m_access[ndx]; } in getLevel()
594 const PixelBufferAccess& getLevel (int ndx) { return m_access[ndx]; } in getLevel()
596 const ConstPixelBufferAccess* getLevels (void) const { return &m_access[0]; } in getLevels()
597 const PixelBufferAccess* getLevels (void) { return &m_access[0]; } in getLevels()
609 std::vector<PixelBufferAccess> m_access; member in tcu::TextureLevelPyramid
765 int getNumLevels (void) const { return (int)m_access[0].size(); } in getNumLevels()
766 …const ConstPixelBufferAccess& getLevelFace (int ndx, CubeFace face) const { return m_access[face]… in getLevelFace()
767 const PixelBufferAccess& getLevelFace (int ndx, CubeFace face) { return m_access[face][ndx]; } in getLevelFace()
789 std::vector<PixelBufferAccess> m_access[CUBEFACE_LAST]; member in tcu::TextureCube
DtcuTestLog.hpp259 , m_access (access) in LogImage()
271 ConstPixelBufferAccess m_access; member in tcu::LogImage
483 log.writeImage(m_name.c_str(), m_description.c_str(), m_access, m_scale, m_bias, m_compression); in write()
DtcuTexture.cpp2661 , m_access (numLevels) in TextureLevelPyramid()
2668 , m_access (other.getNumLevels()) in TextureLevelPyramid()
2677m_access[levelNdx] = PixelBufferAccess(srcLevel.getFormat(), srcLevel.getWidth(), srcLevel.getHeig… in TextureLevelPyramid()
2689 m_access.resize(other.getNumLevels()); in operator =()
2698m_access[levelNdx] = PixelBufferAccess(srcLevel.getFormat(), srcLevel.getWidth(), srcLevel.getHeig… in operator =()
2718 m_access[levelNdx] = PixelBufferAccess(m_format, width, height, depth, m_data[levelNdx].getPtr()); in allocLevel()
2726 m_access[levelNdx] = PixelBufferAccess(); in clearLevel()
2918 m_access[face].resize(numLevels); in TextureCube()
2919 levels[face] = &m_access[face][0]; in TextureCube()
2935 m_access[face].resize(numLevels); in TextureCube()
[all …]
DtcuTestLog.cpp51 , m_access (surface.getAccess()) in LogImage()
61 , m_access (access) in LogImage()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.hpp122 …erAccess& getLevel (int level) { DE_ASSERT(hasLevel(level)); return m_access[level]; } in getLevel()
123 …ccess& getLevel (int level) const { DE_ASSERT(hasLevel(level)); return m_access[level]; } in getLevel()
125 …const tcu::ConstPixelBufferAccess* getLevels (void) const { return &m_access[0]; … in getLevels()
137 tcu::PixelBufferAccess m_access[MAX_TEXTURE_SIZE_LOG2]; member in sglr::rc::TextureLevelArray
DsglrReferenceContext.cpp4672 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(m_data) == DE_LENGTH_OF_ARRAY(m_access)); in clear()
4677 m_access[ndx] = PixelBufferAccess(); in clear()
4691 m_access[level] = PixelBufferAccess(format, width, height, depth, m_data[level].getPtr()); in allocLevel()
4699 m_access[level] = PixelBufferAccess(); in clearLevel()
4705 m_effectiveAccess[levelNdx] = tcu::getEffectiveDepthStencilAccess(m_access[levelNdx], mode); in updateSamplerMode()