• Home
  • Raw
  • Download

Lines Matching refs:SharedPtr

58 using de::SharedPtr;
79 SharedPtr<Texture> popTexture (int index);
80 const SharedPtr<Texture> getTexture (int index) const { return m_textures[index]; } in getTexture()
81 void addTexture (SharedPtr<Texture> texture) { m_textures.push_back(texture); } in addTexture()
84 SharedPtr<Buffer> popBuffer (int index);
85 const SharedPtr<Buffer> getBuffer (int index) const { return m_buffers[index]; } in getBuffer()
86 void addBuffer (SharedPtr<Buffer> buffer) { m_buffers.push_back(buffer); } in addBuffer()
89 SharedPtr<Shader> popShader (int index);
90 const SharedPtr<Shader> getShader (int index) const { return m_shaders[index]; } in getShader()
91 void addShader (SharedPtr<Shader> shader) { m_shaders.push_back(shader); } in addShader()
94 SharedPtr<Program> popProgram (int index);
95 const SharedPtr<Program> getProgram (int index) const { return m_programs[index]; } in getProgram()
96 void addProgram (SharedPtr<Program> program) { m_programs.push_back(program); } in addProgram()
100 std::vector<SharedPtr<Texture> > m_textures;
101 std::vector<SharedPtr<Buffer> > m_buffers;
102 std::vector<SharedPtr<Shader> > m_shaders;
103 std::vector<SharedPtr<Program> > m_programs;
106 SharedPtr<Texture> GLES2ResourceManager::popTexture (int index) in popTexture()
108 SharedPtr<Texture> texture = m_textures[index]; in popTexture()
115 SharedPtr<Buffer> GLES2ResourceManager::popBuffer (int index) in popBuffer()
117 SharedPtr<Buffer> buffer = m_buffers[index]; in popBuffer()
124 SharedPtr<Shader> GLES2ResourceManager::popShader (int index) in popShader()
126 SharedPtr<Shader> shader = m_shaders[index]; in popShader()
133 SharedPtr<Program> GLES2ResourceManager::popProgram (int index) in popProgram()
135 SharedPtr<Program> program = m_programs[index]; in popProgram()
145 …GLES2Context (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<GLES2ResourceManager> resourceMa…
149 SharedPtr<GLES2ResourceManager> resourceManager;
164 GLES2Context::GLES2Context (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<GLES2ResourceManager… in GLES2Context()
180 Surface (SharedPtr<tcu::ThreadUtil::Event> event);
191 Surface::Surface (SharedPtr<tcu::ThreadUtil::Event> event) in Surface()
213 SharedPtr<GLES2Context> context;
214 SharedPtr<Surface> surface;
218 SharedPtr<GLES2Context> runtimeContext;
347 Object (const char* type, SharedPtr<tcu::ThreadUtil::Event> e, SharedPtr<FenceSync> sync);
350 void readGL (SharedPtr<FenceSync> sync, std::vector<SharedPtr<FenceSync> >& deps);
351 void modifyGL (SharedPtr<FenceSync> sync, std::vector<SharedPtr<FenceSync> >& deps);
354 SharedPtr<FenceSync> m_modifySync;
355 vector<SharedPtr<FenceSync> > m_readSyncs;
358 Object::Object (const char* type, SharedPtr<tcu::ThreadUtil::Event> e, SharedPtr<FenceSync> sync) in Object()
368 void Object::readGL (SharedPtr<FenceSync> sync, std::vector<SharedPtr<FenceSync> >& deps) in readGL()
380 void Object::modifyGL (SharedPtr<FenceSync> sync, std::vector<SharedPtr<FenceSync> >& deps) in modifyGL()
409 SharedPtr<FenceSync> getSync (void) { return m_sync; } in getSync()
410 void readGLObject (SharedPtr<Object> object);
411 void modifyGLObject (SharedPtr<Object> object);
418 std::vector<SharedPtr<FenceSync> > m_syncDeps;
419 SharedPtr<FenceSync> m_sync;
426 , m_sync (useSync ? SharedPtr<FenceSync>(new FenceSync()) : SharedPtr<FenceSync>()) in Operation()
434 void Operation::readGLObject (SharedPtr<Object> object) in readGLObject()
440 void Operation::modifyGLObject (SharedPtr<Object> object) in modifyGLObject()
512 m_event = SharedPtr<tcu::ThreadUtil::Event>(); in execute()
514 m_sync = SharedPtr<FenceSync>(); in execute()
520 EGLImage (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync);
531 void addContext (SharedPtr<GLES2Context> context) { m_contexts.push_back(context); } in addContext()
532 void addSurface (SharedPtr<Surface> surface) { m_surfaces.push_back(surface); } in addSurface()
533 void addImage (SharedPtr<EGLImage> image) { m_images.push_back(image); } in addImage()
535 SharedPtr<Surface> popSurface (int index);
536 SharedPtr<GLES2Context> popContext (int index);
537 SharedPtr<EGLImage> popImage (int index);
544 std::vector<SharedPtr<GLES2Context> > m_contexts;
545 std::vector<SharedPtr<Surface> > m_surfaces;
546 std::vector<SharedPtr<EGLImage> > m_images;
549 SharedPtr<Surface> EGLResourceManager::popSurface (int index) in popSurface()
551 SharedPtr<Surface> surface = m_surfaces[index]; in popSurface()
556 SharedPtr<GLES2Context> EGLResourceManager::popContext (int index) in popContext()
558 SharedPtr<GLES2Context> context = m_contexts[index]; in popContext()
563 SharedPtr<EGLImage> EGLResourceManager::popImage (int index) in popImage()
565 SharedPtr<EGLImage> image = m_images[index]; in popImage()
573 …CreateContext (EGLDisplay display, EGLConfig config, SharedPtr<GLES2Context> shared, SharedPtr<GLE…
580 SharedPtr<GLES2Context> m_shared;
581 SharedPtr<GLES2Context> m_context;
584 …t::CreateContext (EGLDisplay display, EGLConfig config, SharedPtr<GLES2Context> shared, SharedPtr<… in CreateContext()
591 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(shared)); in CreateContext()
593 …context = SharedPtr<GLES2Context>(new GLES2Context(getEvent(), (shared ? shared->resourceManager :… in CreateContext()
636 DestroyContext (SharedPtr<GLES2Context> contex);
640 SharedPtr<GLES2Context> m_context;
643 DestroyContext::DestroyContext (SharedPtr<GLES2Context> contex) in DestroyContext()
647 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(m_context)); in DestroyContext()
664 …MakeCurrent (EGLThread& thread, EGLDisplay display, SharedPtr<Surface> surface, SharedPtr<GLES2Con…
670 SharedPtr<Surface> m_surface;
671 SharedPtr<GLES2Context> m_context;
674 …rent::MakeCurrent (EGLThread& thread, EGLDisplay display, SharedPtr<Surface> surface, SharedPtr<GL… in MakeCurrent()
681 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(m_context)); in MakeCurrent()
684 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(m_surface)); in MakeCurrent()
689 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(thread.context)); in MakeCurrent()
695 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(thread.surface)); in MakeCurrent()
794 …ace (EGLDisplay display, EGLConfig config, EGLint width, EGLint height, SharedPtr<Surface>& surfac…
802 SharedPtr<Surface> m_surface;
805 …ace (EGLDisplay display, EGLConfig config, EGLint width, EGLint height, SharedPtr<Surface>& surfac… in CreatePBufferSurface()
812 surface = SharedPtr<Surface>(new Surface(getEvent())); in CreatePBufferSurface()
835 DestroySurface (EGLDisplay display, SharedPtr<Surface> surface);
840 SharedPtr<Surface> m_surface;
843 DestroySurface::DestroySurface (EGLDisplay display, SharedPtr<Surface> surface) in DestroySurface()
848 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(m_surface)); in DestroySurface()
860 EGLImage::EGLImage (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync) in EGLImage()
869 Texture (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync);
877 SharedPtr<EGLImage> sourceImage;
880 Texture::Texture (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync) in Texture()
890 CreateTexture (SharedPtr<Texture>& texture, bool useSync, bool serverSync);
894 SharedPtr<Texture> m_texture;
897 CreateTexture::CreateTexture (SharedPtr<Texture>& texture, bool useSync, bool serverSync) in CreateTexture()
900 texture = SharedPtr<Texture>(new Texture(getEvent(), getSync())); in CreateTexture()
919 DeleteTexture (SharedPtr<Texture> texture, bool useSync, bool serverSync);
923 SharedPtr<Texture> m_texture;
926 DeleteTexture::DeleteTexture (SharedPtr<Texture> texture, bool useSync, bool serverSync) in DeleteTexture()
930 modifyGLObject(SharedPtr<Object>(m_texture)); in DeleteTexture()
948 …TexImage2D (SharedPtr<Texture> texture, GLint level, GLint internalFormat, GLsizei width, GLsizei …
952 SharedPtr<Texture> m_texture;
961 TexImage2D::TexImage2D (SharedPtr<Texture> texture, GLint level, GLint internalFormat, GLsizei widt… in TexImage2D()
971 modifyGLObject(SharedPtr<Object>(m_texture)); in TexImage2D()
975 texture->sourceImage = SharedPtr<EGLImage>(); in TexImage2D()
999 …TexSubImage2D (SharedPtr<Texture> texture, GLint level, GLint xoffset, GLint yoffset, GLsizei widt…
1003 SharedPtr<Texture> m_texture;
1013 TexSubImage2D::TexSubImage2D (SharedPtr<Texture> texture, GLint level, GLint xoffset, GLint yoffset… in TexSubImage2D()
1024 modifyGLObject(SharedPtr<Object>(m_texture)); in TexSubImage2D()
1027 modifyGLObject(SharedPtr<Object>(m_texture->sourceImage)); in TexSubImage2D()
1051 …CopyTexImage2D (SharedPtr<Texture> texture, GLint level, GLint internalFormat, GLint x, GLint y, G…
1055 SharedPtr<Texture> m_texture;
1065 CopyTexImage2D::CopyTexImage2D (SharedPtr<Texture> texture, GLint level, GLint internalFormat, GLin… in CopyTexImage2D()
1076 modifyGLObject(SharedPtr<Object>(m_texture)); in CopyTexImage2D()
1080 texture->sourceImage = SharedPtr<EGLImage>(); in CopyTexImage2D()
1103 …CopyTexSubImage2D (SharedPtr<Texture> texture, GLint level, GLint xoffset, GLint yoffset, GLint x…
1107 SharedPtr<Texture> m_texture;
1117 CopyTexSubImage2D::CopyTexSubImage2D (SharedPtr<Texture> texture, GLint level, GLint xoffset, GLint… in CopyTexSubImage2D()
1128 modifyGLObject(SharedPtr<Object>(m_texture)); in CopyTexSubImage2D()
1131 modifyGLObject(SharedPtr<Object>(m_texture->sourceImage)); in CopyTexSubImage2D()
1154 Buffer (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync);
1164 Buffer::Buffer (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync) in Buffer()
1175 CreateBuffer (SharedPtr<Buffer>& buffer, bool useSync, bool serverSync);
1179 SharedPtr<Buffer> m_buffer;
1182 CreateBuffer::CreateBuffer (SharedPtr<Buffer>& buffer, bool useSync, bool serverSync) in CreateBuffer()
1185 buffer = SharedPtr<Buffer>(new Buffer(getEvent(), getSync())); in CreateBuffer()
1204 DeleteBuffer (SharedPtr<Buffer> buffer, bool useSync, bool serverSync);
1208 SharedPtr<Buffer> m_buffer;
1211 DeleteBuffer::DeleteBuffer (SharedPtr<Buffer> buffer, bool useSync, bool serverSync) in DeleteBuffer()
1215 modifyGLObject(SharedPtr<Object>(m_buffer)); in DeleteBuffer()
1233 …BufferData (SharedPtr<Buffer> buffer, GLenum target, GLsizeiptr size, GLenum usage, bool useSync, …
1237 SharedPtr<Buffer> m_buffer;
1243 BufferData::BufferData (SharedPtr<Buffer> buffer, GLenum target, GLsizeiptr size, GLenum usage, boo… in BufferData()
1250 modifyGLObject(SharedPtr<Object>(m_buffer)); in BufferData()
1276 …BufferSubData (SharedPtr<Buffer> buffer, GLenum target, GLintptr offset, GLsizeiptr size, bool use…
1280 SharedPtr<Buffer> m_buffer;
1286 BufferSubData::BufferSubData (SharedPtr<Buffer> buffer, GLenum target, GLintptr offset, GLsizeiptr … in BufferSubData()
1293 modifyGLObject(SharedPtr<Object>(m_buffer)); in BufferSubData()
1317 Shader (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync);
1325 Shader::Shader (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync) in Shader()
1337 CreateShader (GLenum type, SharedPtr<Shader>& shader, bool useSync, bool serverSync);
1341 SharedPtr<Shader> m_shader;
1345 CreateShader::CreateShader (GLenum type, SharedPtr<Shader>& shader, bool useSync, bool serverSync) in CreateShader()
1349 shader = SharedPtr<Shader>(new Shader(getEvent(), getSync())); in CreateShader()
1371 DeleteShader (SharedPtr<Shader> shader, bool useSync, bool serverSync);
1375 SharedPtr<Shader> m_shader;
1378 DeleteShader::DeleteShader (SharedPtr<Shader> shader, bool useSync, bool serverSync) in DeleteShader()
1382 modifyGLObject(SharedPtr<Object>(m_shader)); in DeleteShader()
1400 ShaderSource (SharedPtr<Shader> sharder, const char* source, bool useSync, bool serverSync);
1404 SharedPtr<Shader> m_shader;
1408 ShaderSource::ShaderSource (SharedPtr<Shader> shader, const char* source, bool useSync, bool server… in ShaderSource()
1413 modifyGLObject(SharedPtr<Object>(m_shader)); in ShaderSource()
1430 ShaderCompile (SharedPtr<Shader> sharder, bool useSync, bool serverSync);
1434 SharedPtr<Shader> m_shader;
1437 ShaderCompile::ShaderCompile (SharedPtr<Shader> shader, bool useSync, bool serverSync) in ShaderCompile()
1442 modifyGLObject(SharedPtr<Object>(m_shader)); in ShaderCompile()
1457 Program (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync);
1460 SharedPtr<Shader> vertexShader;
1461 SharedPtr<Shader> fragmentShader;
1470 Program::Program (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync) in Program()
1482 CreateProgram (SharedPtr<Program>& program, bool useSync, bool serverSync);
1486 SharedPtr<Program> m_program;
1489 CreateProgram::CreateProgram (SharedPtr<Program>& program, bool useSync, bool serverSync) in CreateProgram()
1492 program = SharedPtr<Program>(new Program(getEvent(), getSync())); in CreateProgram()
1512 DeleteProgram (SharedPtr<Program> program, bool useSync, bool serverSync);
1516 SharedPtr<Program> m_program;
1519 DeleteProgram::DeleteProgram (SharedPtr<Program> program, bool useSync, bool serverSync) in DeleteProgram()
1523 modifyGLObject(SharedPtr<Object>(m_program)); in DeleteProgram()
1541 …AttachShader (SharedPtr<Program> sharder, SharedPtr<Shader> shader, bool useSync, bool serverSync);
1545 SharedPtr<Program> m_program;
1546 SharedPtr<Shader> m_shader;
1549 AttachShader::AttachShader (SharedPtr<Program> program, SharedPtr<Shader> shader, bool useSync, boo… in AttachShader()
1554 modifyGLObject(SharedPtr<Object>(m_program)); in AttachShader()
1555 readGLObject(SharedPtr<Object>(m_shader)); in AttachShader()
1584 DetachShader (SharedPtr<Program> sharder, GLenum type, bool useSync, bool serverSync);
1588 SharedPtr<Program> m_program;
1592 DetachShader::DetachShader (SharedPtr<Program> program, GLenum type, bool useSync, bool serverSync) in DetachShader()
1597 modifyGLObject(SharedPtr<Object>(m_program)); in DetachShader()
1602 m_program->vertexShader = SharedPtr<Shader>(); in DetachShader()
1607 m_program->fragmentShader = SharedPtr<Shader>(); in DetachShader()
1638 LinkProgram (SharedPtr<Program> program, bool useSync, bool serverSync);
1642 SharedPtr<Program> m_program;
1645 LinkProgram::LinkProgram (SharedPtr<Program> program, bool useSync, bool serverSync) in LinkProgram()
1649 modifyGLObject(SharedPtr<Object>(m_program)); in LinkProgram()
1666 …RenderBuffer (SharedPtr<Program> program, SharedPtr<Buffer> buffer, bool useSync, bool serverSync);
1670 SharedPtr<Program> m_program;
1671 SharedPtr<Buffer> m_buffer;
1674 RenderBuffer::RenderBuffer (SharedPtr<Program> program, SharedPtr<Buffer> buffer, bool useSync, boo… in RenderBuffer()
1679 readGLObject(SharedPtr<Object>(program)); in RenderBuffer()
1680 readGLObject(SharedPtr<Object>(buffer)); in RenderBuffer()
1736 …RenderTexture (SharedPtr<Program> program, SharedPtr<Texture> texture, bool useSync, bool serverSy…
1740 SharedPtr<Program> m_program;
1741 SharedPtr<Texture> m_texture;
1744 RenderTexture::RenderTexture (SharedPtr<Program> program, SharedPtr<Texture> texture, bool useSync,… in RenderTexture()
1749 readGLObject(SharedPtr<Object>(program)); in RenderTexture()
1750 readGLObject(SharedPtr<Object>(texture)); in RenderTexture()
1835 …ReadPixels (int x, int y, int width, int height, GLenum format, GLenum type, SharedPtr<tcu::Threa…
1845 SharedPtr<tcu::ThreadUtil::DataBlock> m_data;
1848 ReadPixels::ReadPixels (int x, int y, int width, int height, GLenum format, GLenum type, SharedPtr<… in ReadPixels()
1857 data = SharedPtr<tcu::ThreadUtil::DataBlock>(new tcu::ThreadUtil::DataBlock(getEvent())); in ReadPixels()
1882 …CreateImageFromTexture (SharedPtr<EGLImage>& image, SharedPtr<Texture> texture, bool useSync, bool…
1886 SharedPtr<Texture> m_texture;
1887 SharedPtr<EGLImage> m_image;
1890 CreateImageFromTexture::CreateImageFromTexture (SharedPtr<EGLImage>& image, SharedPtr<Texture> text… in CreateImageFromTexture()
1893 modifyGLObject(SharedPtr<Object>(texture)); in CreateImageFromTexture()
1894 image = SharedPtr<EGLImage>(new EGLImage(getEvent(), getSync())); in CreateImageFromTexture()
1946 DestroyImage (SharedPtr<EGLImage> image, bool useSync, bool serverSync);
1950 SharedPtr<EGLImage> m_image;
1953 DestroyImage::DestroyImage (SharedPtr<EGLImage> image, bool useSync, bool serverSync) in DestroyImage()
1957 modifyGLObject(SharedPtr<Object>(image)); in DestroyImage()
1974 …DefineTextureFromImage (SharedPtr<Texture> texture, SharedPtr<EGLImage> image, bool useSync, bool …
1978 SharedPtr<Texture> m_texture;
1979 SharedPtr<EGLImage> m_image;
1982 DefineTextureFromImage::DefineTextureFromImage (SharedPtr<Texture> texture, SharedPtr<EGLImage> ima… in DefineTextureFromImage()
1985 readGLObject(SharedPtr<Object>(image)); in DefineTextureFromImage()
1986 modifyGLObject(SharedPtr<Object>(texture)); in DefineTextureFromImage()
2173 SharedPtr<GLES2ThreadTest::GLES2Context> context; in init()
2174SharedPtr<GLES2ThreadTest::GLES2Context> shared = (threadNdx > 0 ? resourceManager.popContext(0) :… in init()
2186 SharedPtr<GLES2ThreadTest::Surface> surface; in init()
2226 const SharedPtr<GLES2ThreadTest::EGLImage> image = resourceManager.popImage(0); in init()
2237 SharedPtr<GLES2ThreadTest::GLES2Context> context = m_threads[threadNdx]->context; in init()
2238 SharedPtr<GLES2ThreadTest::Surface> surface = m_threads[threadNdx]->surface; in init()
2240 …t::MakeCurrent(*m_threads[threadNdx], m_eglDisplay, SharedPtr<GLES2ThreadTest::Surface>(), SharedP… in init()
2338SharedPtr<GLES2ThreadTest::Buffer> buffer = m_threads[threadNdx]->context->resourceManager->getBuf… in addRandomOperation()
2352SharedPtr<GLES2ThreadTest::Texture> texture = m_threads[threadNdx]->context->resourceManager->getT… in addRandomOperation()
2375SharedPtr<GLES2ThreadTest::Shader> shader = m_threads[threadNdx]->context->resourceManager->getSha… in addRandomOperation()
2408SharedPtr<GLES2ThreadTest::Program> program = m_threads[threadNdx]->context->resourceManager->getP… in addRandomOperation()
2606 SharedPtr<GLES2ThreadTest::Buffer> buffer; in addRandomOperation()
2614SharedPtr<GLES2ThreadTest::Buffer> buffer = m_threads[threadNdx]->context->resourceManager->popBuf… in addRandomOperation()
2621SharedPtr<GLES2ThreadTest::Buffer> buffer = m_threads[threadNdx]->context->resourceManager->popBuf… in addRandomOperation()
2629SharedPtr<GLES2ThreadTest::Buffer> buffer = m_threads[threadNdx]->context->resourceManager->popBuf… in addRandomOperation()
2637 SharedPtr<GLES2ThreadTest::Texture> texture; in addRandomOperation()
2649SharedPtr<GLES2ThreadTest::Texture> texture = m_threads[threadNdx]->context->resourceManager->popT… in addRandomOperation()
2657SharedPtr<GLES2ThreadTest::Texture> texture = m_threads[threadNdx]->context->resourceManager->popT… in addRandomOperation()
2665SharedPtr<GLES2ThreadTest::Texture> texture = m_threads[threadNdx]->context->resourceManager->popT… in addRandomOperation()
2673SharedPtr<GLES2ThreadTest::Texture> texture = m_threads[threadNdx]->context->resourceManager->popT… in addRandomOperation()
2681 SharedPtr<GLES2ThreadTest::Shader> shader; in addRandomOperation()
2689 SharedPtr<GLES2ThreadTest::Shader> shader; in addRandomOperation()
2716SharedPtr<GLES2ThreadTest::Shader> shader = m_threads[threadNdx]->context->resourceManager->popSha… in addRandomOperation()
2724SharedPtr<GLES2ThreadTest::Shader> shader = m_threads[threadNdx]->context->resourceManager->popSha… in addRandomOperation()
2732 SharedPtr<GLES2ThreadTest::Program> program; in addRandomOperation()
2744SharedPtr<GLES2ThreadTest::Program> program = m_threads[threadNdx]->context->resourceManager->popP… in addRandomOperation()
2745SharedPtr<GLES2ThreadTest::Shader> shader = m_threads[threadNdx]->context->resourceManager->popSha… in addRandomOperation()
2756SharedPtr<GLES2ThreadTest::Program> program = m_threads[threadNdx]->context->resourceManager->popP… in addRandomOperation()
2764SharedPtr<GLES2ThreadTest::Program> program = m_threads[threadNdx]->context->resourceManager->popP… in addRandomOperation()
2772 SharedPtr<GLES2ThreadTest::EGLImage> image; in addRandomOperation()
2773SharedPtr<GLES2ThreadTest::Texture> texture = m_threads[threadNdx]->context->resourceManager->popT… in addRandomOperation()
2784 SharedPtr<GLES2ThreadTest::EGLImage> image = resourceManager.popImage(imageNdx); in addRandomOperation()
2792SharedPtr<GLES2ThreadTest::Texture> texture = m_threads[threadNdx]->context->resourceManager->popT… in addRandomOperation()
2793 SharedPtr<GLES2ThreadTest::EGLImage> image = resourceManager.popImage(imageNdx); in addRandomOperation()
3062 SharedPtr<GLES2ThreadTest::GLES2Context> contex1; in init()
3063 SharedPtr<GLES2ThreadTest::GLES2Context> contex2; in init()
3065 SharedPtr<GLES2ThreadTest::Surface> surface1; in init()
3066 SharedPtr<GLES2ThreadTest::Surface> surface2; in init()
3069 …m_threads[0]->addOperation(new GLES2ThreadTest::CreateContext(m_eglDisplay, m_eglConfig, SharedPtr in init()
3118 …hreadTest::MakeCurrent(*m_threads[0], m_eglDisplay, SharedPtr<GLES2ThreadTest::Surface>(), SharedP… in init()
3119 …hreadTest::MakeCurrent(*m_threads[0], m_eglDisplay, SharedPtr<GLES2ThreadTest::Surface>(), SharedP… in init()
3133 SharedPtr<GLES2ThreadTest::Shader> vertexShader; in addBufferOperations()
3134 SharedPtr<GLES2ThreadTest::Shader> fragmentShader; in addBufferOperations()
3135 SharedPtr<GLES2ThreadTest::Program> program; in addBufferOperations()
3170 SharedPtr<GLES2ThreadTest::Buffer> buffer; in addBufferOperations()
3195 SharedPtr<tcu::ThreadUtil::DataBlock> pixels1; in addBufferOperations()
3196 SharedPtr<tcu::ThreadUtil::DataBlock> pixels2; in addBufferOperations()
3220 SharedPtr<GLES2ThreadTest::Shader> vertexShader; in addTextureOperations()
3221 SharedPtr<GLES2ThreadTest::Shader> fragmentShader; in addTextureOperations()
3222 SharedPtr<GLES2ThreadTest::Program> program; in addTextureOperations()
3258 SharedPtr<GLES2ThreadTest::Texture> texture; in addTextureOperations()
3296 SharedPtr<tcu::ThreadUtil::DataBlock> pixels1; in addTextureOperations()
3297 SharedPtr<tcu::ThreadUtil::DataBlock> pixels2; in addTextureOperations()
3324 SharedPtr<GLES2ThreadTest::Shader> vertexShader; in addImageOperations()
3325 SharedPtr<GLES2ThreadTest::Shader> fragmentShader; in addImageOperations()
3326 SharedPtr<GLES2ThreadTest::Program> program; in addImageOperations()
3365 SharedPtr<GLES2ThreadTest::Texture> sourceTexture; in addImageOperations()
3366 SharedPtr<GLES2ThreadTest::Texture> texture; in addImageOperations()
3367 SharedPtr<GLES2ThreadTest::EGLImage> image; in addImageOperations()
3437 SharedPtr<tcu::ThreadUtil::DataBlock> pixels1; in addImageOperations()
3438 SharedPtr<tcu::ThreadUtil::DataBlock> pixels2; in addImageOperations()
3472 SharedPtr<GLES2ThreadTest::Shader> shader; in addShaderOperations()
3516 SharedPtr<GLES2ThreadTest::Shader> vertexShader; in addProgramOperations()
3517 SharedPtr<GLES2ThreadTest::Shader> fragmentShader; in addProgramOperations()
3546 SharedPtr<GLES2ThreadTest::Program> program; in addProgramOperations()