Lines Matching refs:GLES2ImageApi

172 class GLES2ImageApi : public ImageApi, private glu::CallLogWrapper  class
179 …virtual bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref…
187 …bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) con…
200 …class RenderTexture2D : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<U…
201 …class RenderTextureCubemap : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MoveP…
202 …class RenderReadPixelsRenderbuffer : public Render { public: bool invokeGLES2 (GLES2ImageApi& api,…
203 …class RenderDepthbuffer : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr…
204 …class RenderStencilbuffer : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePt…
205 …class RenderTryAll : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<Uni…
217 …bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) cons…
229 …bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) cons…
232 virtual void initializeRbo (GLES2ImageApi& api, GLuint rbo, tcu::Texture2D& ref) const = 0;
241 void initializeRbo (GLES2ImageApi& api, GLuint rbo, tcu::Texture2D& ref) const;
252 void initializeRbo (GLES2ImageApi& api, GLuint rbo, tcu::Texture2D& ref) const;
263 void initializeRbo (GLES2ImageApi& api, GLuint rbo, tcu::Texture2D& ref) const;
268GLES2ImageApi (const Library& egl, const glw::Functions& gl, int contextId, tcu::TestLog& log,…
269 ~GLES2ImageApi (void);
278 GLES2ImageApi::GLES2ImageApi (const Library& egl, const glw::Functions& gl, int contextId, tcu::Tes… in GLES2ImageApi() function in deqp::egl::Image::GLES2ImageApi
301 GLES2ImageApi::~GLES2ImageApi (void) in ~GLES2ImageApi()
307 bool GLES2ImageApi::GLES2Action::invoke (ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D… in invoke()
309 GLES2ImageApi& gles2Api = dynamic_cast<GLES2ImageApi&>(api); in invoke()
316 bool GLES2ImageApi::Create::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Text… in invokeGLES2()
323 MovePtr<UniqueImage> GLES2ImageApi::createImage (const ImageSource& source, const ClientBuffer& buf… in createImage()
376 bool GLES2ImageApi::RenderTexture2D::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, tc… in invokeGLES2()
453 bool GLES2ImageApi::RenderDepthbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, … in invokeGLES2()
576 bool GLES2ImageApi::RenderStencilbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img… in invokeGLES2()
694 bool GLES2ImageApi::RenderReadPixelsRenderbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueIm… in invokeGLES2()
733 bool GLES2ImageApi::RenderTryAll::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, tcu::… in invokeGLES2()
737 GLES2ImageApi::RenderTexture2D renderTex2D; in invokeGLES2()
738 GLES2ImageApi::RenderReadPixelsRenderbuffer renderReadPixels; in invokeGLES2()
739 GLES2ImageApi::RenderDepthbuffer renderDepth; in invokeGLES2()
740 GLES2ImageApi::RenderStencilbuffer renderStencil; in invokeGLES2()
768 bool GLES2ImageApi::ModifyTexSubImage::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, … in invokeGLES2()
795 bool GLES2ImageApi::ModifyRenderbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img,… in invokeGLES2()
819 void GLES2ImageApi::ModifyRenderbufferClearColor::initializeRbo (GLES2ImageApi& api, GLuint renderb… in initializeRbo()
832 void GLES2ImageApi::ModifyRenderbufferClearDepth::initializeRbo (GLES2ImageApi& api, GLuint renderb… in initializeRbo()
845 void GLES2ImageApi::ModifyRenderbufferClearStencil::initializeRbo (GLES2ImageApi& api, GLuint rende… in initializeRbo()
984 api = new GLES2ImageApi(egl, m_gl, contextNdx, getLog(), m_display, m_surface, m_config); in init()
1089 …m_createActions.add(name, MovePtr<Action>(new GLES2ImageApi::Create(createTextureImageSource(sourc… in addCreateTexture()
1094 …m_createActions.add(name, MovePtr<Action>(new GLES2ImageApi::Create(createRenderbufferImageSource(… in addCreateRenderbuffer()
1099 …m_createActions.add(name, MovePtr<Action>(new GLES2ImageApi::Create(createAndroidNativeImageSource… in addCreateAndroidNative()
1151 m_renderActions.add("texture", MovePtr<Action>(new GLES2ImageApi::RenderTexture2D())); in addRenderActions()
1152 …m_renderActions.add("read_pixels", MovePtr<Action>(new GLES2ImageApi::RenderReadPixelsRenderbuffe… in addRenderActions()
1153 m_renderActions.add("depth_buffer", MovePtr<Action>(new GLES2ImageApi::RenderDepthbuffer())); in addRenderActions()
1154 m_renderActions.add("stencil_buffer", MovePtr<Action>(new GLES2ImageApi::RenderStencilbuffer())); in addRenderActions()
1216 if (const GLES2ImageApi::Create* gles2Create = dynamic_cast<const GLES2ImageApi::Create*>(&create)) in isCompatibleCreateAndRenderActions()
1220 if (dynamic_cast<const GLES2ImageApi::RenderTexture2D*>(&render)) in isCompatibleCreateAndRenderActions()
1227 if (dynamic_cast<const GLES2ImageApi::RenderReadPixelsRenderbuffer*>(&render)) in isCompatibleCreateAndRenderActions()
1234 if (dynamic_cast<const GLES2ImageApi::RenderDepthbuffer*>(&render)) in isCompatibleCreateAndRenderActions()
1242 if (dynamic_cast<const GLES2ImageApi::RenderStencilbuffer*>(&render)) in isCompatibleCreateAndRenderActions()
1379 if (const GLES2ImageApi::Create* gles2Create = dynamic_cast<const GLES2ImageApi::Create*>(&create)) in isCompatibleCreateAndModifyActions()
1383 …if (const GLES2ImageApi::ModifyTexSubImage* gles2TexSubImageModify = dynamic_cast<const GLES2Image… in isCompatibleCreateAndModifyActions()
1391 if (dynamic_cast<const GLES2ImageApi::ModifyRenderbufferClearColor*>(&modify)) in isCompatibleCreateAndModifyActions()
1398 if (dynamic_cast<const GLES2ImageApi::ModifyRenderbufferClearDepth*>(&modify)) in isCompatibleCreateAndModifyActions()
1405 if (dynamic_cast<const GLES2ImageApi::ModifyRenderbufferClearStencil*>(&modify)) in isCompatibleCreateAndModifyActions()
1437 …m_clearActions.add("renderbuffer_clear_color", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbuf… in addClearActions()
1438 …m_clearActions.add("renderbuffer_clear_depth", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbuf… in addClearActions()
1439 …m_clearActions.add("renderbuffer_clear_stencil", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbu… in addClearActions()
1500 GLES2ImageApi::RenderTryAll m_renderAction;
1505 …m_modifyActions.add("tex_subimage_rgb8", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(GL… in addModifyActions()
1506 …m_modifyActions.add("tex_subimage_rgb565", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(… in addModifyActions()
1507 …m_modifyActions.add("tex_subimage_rgba8", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(G… in addModifyActions()
1508 …m_modifyActions.add("tex_subimage_rgb5_a1", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage… in addModifyActions()
1509 …m_modifyActions.add("tex_subimage_rgba4", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(G… in addModifyActions()
1511 …m_modifyActions.add("renderbuffer_clear_color", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbu… in addModifyActions()
1512 …m_modifyActions.add("renderbuffer_clear_depth", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbu… in addModifyActions()
1513 …m_modifyActions.add("renderbuffer_clear_stencil", MovePtr<Action>(new GLES2ImageApi::ModifyRenderb… in addModifyActions()