Home
last modified time | relevance | path

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

/external/deqp/external/openglcts/modules/gl/
Dgl4cIncompleteTextureAccessTests.cpp75 …: deqp::TestCase(context, "sampler", "Fetch using sampler test"), m_po(0), m_to(0), m_fbo(0), m_rb… in SamplerTest()
317 if (m_to) in PrepareTexture()
322 gl.genTextures(1, &m_to); in PrepareTexture()
325 gl.bindTexture(configuration.texture_target, m_to); in PrepareTexture()
442 if (m_to) in CleanCase()
444 gl.deleteTextures(1, &m_to); in CleanCase()
446 m_to = 0; in CleanCase()
Dgl4cDirectStateAccessSamplersTests.cpp467 , m_to(0) in FunctionalTest()
765 gl.genTextures(1, &m_to); in prepareTexture()
768 gl.bindTexture(GL_TEXTURE_2D, m_to); in prepareTexture()
888 if (m_to) in clean()
890 gl.deleteTextures(1, &m_to); in clean()
892 m_to = 0; in clean()
Dgl4cDirectStateAccessTexturesTests.cpp739 , m_to(0) in BufferTest()
779 gl.genTextures(1, &m_to); in CreateBufferTexture()
782 gl.bindTexture(GL_TEXTURE_BUFFER, m_to); in CreateBufferTexture()
808 gl.textureBufferRange(m_to, InternalFormat<T, S, N>(), m_bo, b_offset, TestReferenceDataSize()); in CreateBufferTexture()
815 gl.textureBuffer(m_to, InternalFormat<T, S, N>(), m_bo); in CreateBufferTexture()
1073 gl.bindTextureUnit(0, m_to); in Draw()
1175 if (m_to) in CleanBufferTexture()
1177 gl.deleteTextures(1, &m_to); in CleanBufferTexture()
1179 m_to = 0; in CleanBufferTexture()
1477 , m_to(0) in StorageAndSubImageTest()
[all …]
Dgl4cSparseBufferTests.cpp1212 , m_to(0) in BufferTextureStorageTestCase()
1266 if (m_to != 0) in deinitTestCaseGlobal()
1268 m_gl.deleteTextures(1, &m_to); in deinitTestCaseGlobal()
1270 m_to = 0; in deinitTestCaseGlobal()
1533 m_gl.genTextures(1, &m_to); in initTestCaseGlobal()
1536 m_gl.bindTexture(GL_TEXTURE_BUFFER, m_to); in initTestCaseGlobal()
3359 , m_to(0) in PixelUnpackBufferStorageTestCase()
3394 if (m_to != 0) in deinitTestCaseGlobal()
3396 m_gl.deleteTextures(1, &m_to); in deinitTestCaseGlobal()
3398 m_to = 0; in deinitTestCaseGlobal()
[all …]
Dgl4cIncompleteTextureAccessTests.hpp111 glw::GLuint m_to; member in gl4cts::IncompleteTextureAccess::SamplerTest
Dgl4cSparseBufferTests.hpp270 glw::GLuint m_to; member in gl4cts::BufferTextureStorageTestCase
596 glw::GLuint m_to; member in gl4cts::PixelUnpackBufferStorageTestCase
723 glw::GLuint m_to; member in gl4cts::QuadsBufferStorageTestCase
Dgl4cDirectStateAccessFramebuffersAndRenderbuffersTests.cpp375 , m_to(0) in TextureAttachmentTest()
478 gl.genTextures(1, &m_to); in Test()
481 gl.bindTexture(texture_target, m_to); in Test()
506 gl.namedFramebufferTexture(m_fbo, attachment, m_to, i); in Test()
758 if (m_to) in Clean()
760 gl.deleteTextures(1, &m_to); in Clean()
762 m_to = 0; in Clean()
797 , m_to(0) in TextureLayerAttachmentTest()
917 gl.genTextures(1, &m_to); in Test()
920 gl.bindTexture(texture_target, m_to); in Test()
[all …]
Dgl4cDirectStateAccessTests.hpp586 glw::GLuint m_to; member in gl4cts::DirectStateAccess::Samplers::FunctionalTest
2309 glw::GLuint m_to; member in gl4cts::DirectStateAccess::Framebuffers::TextureAttachmentTest
2389 glw::GLuint m_to; member in gl4cts::DirectStateAccess::Framebuffers::TextureLayerAttachmentTest
2991 glw::GLuint m_to[2]; member in gl4cts::DirectStateAccess::Framebuffers::GetAttachmentParametersTest
4989 glw::GLuint m_to; member in gl4cts::DirectStateAccess::Textures::BufferTest
5176 glw::GLuint m_to; member in gl4cts::DirectStateAccess::Textures::StorageAndSubImageTest
5353 glw::GLuint m_to; member in gl4cts::DirectStateAccess::Textures::StorageMultisampleTest
5537 glw::GLuint m_to; member in gl4cts::DirectStateAccess::Textures::CompressedSubImageTest
5840 glw::GLuint m_to[4]; member in gl4cts::DirectStateAccess::Textures::BindUnitTest
/external/bcc/tests/cc/
Dcatch.hpp2349 BetweenGenerator( T from, T to ) : m_from( from ), m_to( to ){} in BetweenGenerator()
2356 return static_cast<std::size_t>( 1+m_to-m_from ); in size()
2362 T m_to; member in Catch::BetweenGenerator