Lines Matching refs:access
121 MoveMapOwner MapRange(glw::GLintptr offset, glw::GLsizeiptr length, glw::GLenum access);
149 static void* Map(const glw::Functions& gl, glw::GLenum target, glw::GLenum access);
152 glw::GLenum access);
382 /** Get support for direct state access
586 * @param access Requested access
590 Buffer::MoveMapOwner Buffer::MapRange(glw::GLintptr offset, glw::GLsizeiptr length, glw::GLenum access)
596 void* data = MapRange(gl, m_target, offset, length, access);
613 /** Loads entry points for direct state access extension
755 * @param access Access rights for mapped region
759 void* Buffer::Map(const glw::Functions& gl, glw::GLenum target, glw::GLenum access)
761 void* result = gl.mapBuffer(target, access);
771 * @param access Access rights for mapped region
776 glw::GLenum access)
778 void* result = gl.mapBufferRange(target, offset, length, access);
1290 /** Loads entry points for direct state access extension
1803 * is included in <access> and not in buffer's storage flags;
1816 verifyError(GL_INVALID_OPERATION, "MapNamedBufferRange was executed with access == GL_MAP_READ_BIT, "
1821 verifyError(GL_INVALID_OPERATION, "MapNamedBufferRange was executed with access == GL_MAP_WRITE_BIT, "
1826 verifyError(GL_INVALID_OPERATION, "MapNamedBufferRange was executed with access == GL_MAP_PERSISTENT_BIT, "
1831 verifyError(GL_INVALID_OPERATION, "MapNamedBufferRange was executed with access == GL_MAP_COHERENT_BIT, "
1842 "MapBufferRange was executed with access == GL_MAP_READ_BIT, storage flags == GL_DYNAMIC_STORAGE_BIT",
1848 "MapBufferRange was executed with access == GL_MAP_WRITE_BIT, storage flags == GL_DYNAMIC_STORAGE_BIT",
1854 "MapBufferRange was executed with access == GL_MAP_PERSISTENT_BIT, storage flags == GL_DYNAMIC_STORAGE_BIT",
1860 "MapBufferRange was executed with access == GL_MAP_COHERENT_BIT, storage flags == GL_DYNAMIC_STORAGE_BIT",
1967 const GLenum access = s_mapping_bits[access_idx];
1969 m_test_cases.push_back(testCase(flags_with_mapping | GL_MAP_READ_BIT, access | GL_MAP_READ_BIT));
1970 m_test_cases.push_back(testCase(flags_with_mapping | GL_MAP_WRITE_BIT, access | GL_MAP_WRITE_BIT));
1972 testCase(flags_with_mapping | GL_MAP_READ_BIT | GL_MAP_WRITE_BIT, access | GL_MAP_READ_BIT));
1974 testCase(flags_with_mapping | GL_MAP_READ_BIT | GL_MAP_WRITE_BIT, access | GL_MAP_WRITE_BIT));
1976 access | GL_MAP_WRITE_BIT | GL_MAP_READ_BIT));
2008 const GLenum access = test_case.m_access;
2098 if (0 != access)
2102 Buffer::MapOwner tmp(buffer.MapRange(0 /* offset */, data_size, access));
2109 if (queried_access != (GLint)access)
2115 << " expected: " << access << tcu::TestLog::EndMessage;
2122 if (queried_access != (GLint)access)
2128 << " expected: " << access << tcu::TestLog::EndMessage;
2153 GetBufferParameterTest::testCase::testCase(glw::GLenum flags, glw::GLenum access) : m_flags(flags), m_access(access)
2404 * - map buffer contents with MapBufferRange; <access> should contain
2594 * - map buffer contents with MapBufferRange, <access> should contain
2857 * - map buffer contents with MapBufferRange, <access> should contain
3033 * - use MapBufferRange to map both buffers; <access> shall be set as follows:
3208 * - use MapBufferRange to map both buffers; <access> shall be set as follows: