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()
326 MovePtr<UniqueImage> GLES2ImageApi::createImage (const ImageSource& source, const ClientBuffer& buf… in createImage()
379 bool GLES2ImageApi::RenderTexture2D::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, tc… in invokeGLES2()
456 bool GLES2ImageApi::RenderDepthbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, … in invokeGLES2()
579 bool GLES2ImageApi::RenderStencilbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img… in invokeGLES2()
697 bool GLES2ImageApi::RenderReadPixelsRenderbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueIm… in invokeGLES2()
736 bool GLES2ImageApi::RenderTryAll::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, tcu::… in invokeGLES2()
740 GLES2ImageApi::RenderTexture2D renderTex2D; in invokeGLES2()
741 GLES2ImageApi::RenderReadPixelsRenderbuffer renderReadPixels; in invokeGLES2()
742 GLES2ImageApi::RenderDepthbuffer renderDepth; in invokeGLES2()
743 GLES2ImageApi::RenderStencilbuffer renderStencil; in invokeGLES2()
771 bool GLES2ImageApi::ModifyTexSubImage::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img, … in invokeGLES2()
798 bool GLES2ImageApi::ModifyRenderbuffer::invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& img,… in invokeGLES2()
822 void GLES2ImageApi::ModifyRenderbufferClearColor::initializeRbo (GLES2ImageApi& api, GLuint renderb… in initializeRbo()
835 void GLES2ImageApi::ModifyRenderbufferClearDepth::initializeRbo (GLES2ImageApi& api, GLuint renderb… in initializeRbo()
848 void GLES2ImageApi::ModifyRenderbufferClearStencil::initializeRbo (GLES2ImageApi& api, GLuint rende… in initializeRbo()
987 api = new GLES2ImageApi(egl, m_gl, contextNdx, getLog(), m_display, m_surface, m_config); in init()
1092 …m_createActions.add(name, MovePtr<Action>(new GLES2ImageApi::Create(createTextureImageSource(sourc… in addCreateTexture()
1097 …m_createActions.add(name, MovePtr<Action>(new GLES2ImageApi::Create(createRenderbufferImageSource(… in addCreateRenderbuffer()
1102 …m_createActions.add(name, MovePtr<Action>(new GLES2ImageApi::Create(createAndroidNativeImageSource… in addCreateAndroidNative()
1154 m_renderActions.add("texture", MovePtr<Action>(new GLES2ImageApi::RenderTexture2D())); in addRenderActions()
1155 …m_renderActions.add("read_pixels", MovePtr<Action>(new GLES2ImageApi::RenderReadPixelsRenderbuffe… in addRenderActions()
1156 m_renderActions.add("depth_buffer", MovePtr<Action>(new GLES2ImageApi::RenderDepthbuffer())); in addRenderActions()
1157 m_renderActions.add("stencil_buffer", MovePtr<Action>(new GLES2ImageApi::RenderStencilbuffer())); in addRenderActions()
1219 if (const GLES2ImageApi::Create* gles2Create = dynamic_cast<const GLES2ImageApi::Create*>(&create)) in isCompatibleCreateAndRenderActions()
1223 if (dynamic_cast<const GLES2ImageApi::RenderTexture2D*>(&render)) in isCompatibleCreateAndRenderActions()
1230 if (dynamic_cast<const GLES2ImageApi::RenderReadPixelsRenderbuffer*>(&render)) in isCompatibleCreateAndRenderActions()
1237 if (dynamic_cast<const GLES2ImageApi::RenderDepthbuffer*>(&render)) in isCompatibleCreateAndRenderActions()
1245 if (dynamic_cast<const GLES2ImageApi::RenderStencilbuffer*>(&render)) in isCompatibleCreateAndRenderActions()
1382 if (const GLES2ImageApi::Create* gles2Create = dynamic_cast<const GLES2ImageApi::Create*>(&create)) in isCompatibleCreateAndModifyActions()
1386 …if (const GLES2ImageApi::ModifyTexSubImage* gles2TexSubImageModify = dynamic_cast<const GLES2Image… in isCompatibleCreateAndModifyActions()
1394 if (dynamic_cast<const GLES2ImageApi::ModifyRenderbufferClearColor*>(&modify)) in isCompatibleCreateAndModifyActions()
1401 if (dynamic_cast<const GLES2ImageApi::ModifyRenderbufferClearDepth*>(&modify)) in isCompatibleCreateAndModifyActions()
1408 if (dynamic_cast<const GLES2ImageApi::ModifyRenderbufferClearStencil*>(&modify)) in isCompatibleCreateAndModifyActions()
1440 …m_clearActions.add("renderbuffer_clear_color", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbuf… in addClearActions()
1441 …m_clearActions.add("renderbuffer_clear_depth", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbuf… in addClearActions()
1442 …m_clearActions.add("renderbuffer_clear_stencil", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbu… in addClearActions()
1503 GLES2ImageApi::RenderTryAll m_renderAction;
1508 …m_modifyActions.add("tex_subimage_rgb8", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(GL… in addModifyActions()
1509 …m_modifyActions.add("tex_subimage_rgb565", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(… in addModifyActions()
1510 …m_modifyActions.add("tex_subimage_rgba8", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(G… in addModifyActions()
1511 …m_modifyActions.add("tex_subimage_rgb5_a1", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage… in addModifyActions()
1512 …m_modifyActions.add("tex_subimage_rgba4", MovePtr<Action>(new GLES2ImageApi::ModifyTexSubImage(G… in addModifyActions()
1514 …m_modifyActions.add("renderbuffer_clear_color", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbu… in addModifyActions()
1515 …m_modifyActions.add("renderbuffer_clear_depth", MovePtr<Action>(new GLES2ImageApi::ModifyRenderbu… in addModifyActions()
1516 …m_modifyActions.add("renderbuffer_clear_stencil", MovePtr<Action>(new GLES2ImageApi::ModifyRenderb… in addModifyActions()