HomeSort by relevance Sort by last modified time
    Searched refs:m_surface (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
UnacceleratedImageBufferSurface.cpp 41 , m_surface(adoptRef(SkSurface::NewRasterPMColor(size.width(), size.height())))
43 if (m_surface)
51 return m_surface->getCanvas();
56 return m_surface;
ImageBuffer.cpp 80 : m_surface(surface)
83 if (m_surface->canvas()) {
84 m_context = adoptPtr(new GraphicsContext(m_surface->canvas()));
85 m_context->setCertainlyOpaque(m_surface->opacityMode() == Opaque);
86 m_context->setAccelerated(m_surface->isAccelerated());
88 m_surface->setImageBuffer(this);
105 return m_surface->bitmap();
110 return m_surface->isValid();
126 m_surface->finalizeFrame(dirtyRect);
132 return m_surface->isValid() || m_surface->restore()
    [all...]
UnacceleratedImageBufferSurface.h 51 RefPtr<SkSurface> m_surface; member in class:blink::UnacceleratedImageBufferSurface
ImageBuffer.h 81 const IntSize& size() const { return m_surface->size(); }
82 bool isAccelerated() const { return m_surface->isAccelerated(); }
86 void setIsHidden(bool hidden) { m_surface->setIsHidden(hidden); }
140 OwnPtr<ImageBufferSurface> m_surface; member in class:blink::ImageBuffer
Canvas2DLayerBridge.cpp 78 , m_surface(surface)
96 ASSERT(m_surface);
141 m_surface.clear();
172 m_surface->notifyContentWillChange(SkSurface::kRetain_ContentChangeMode);
346 m_surface.clear();
375 m_surface = surface.release();
376 m_canvas->setSurface(m_surface.get());
Canvas2DLayerBridge.h 101 RefPtr<SkSurface> m_surface; member in class:blink::Canvas2DLayerBridge
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
AcceleratedImageBufferSurface.h 47 virtual SkCanvas* canvas() const OVERRIDE { return m_surface ? m_surface->getCanvas() : 0; }
48 virtual bool isValid() const OVERRIDE { return m_surface; }
53 OwnPtr<SkSurface> m_surface; member in class:blink::AcceleratedImageBufferSurface
AcceleratedImageBufferSurface.cpp 57 m_surface = adoptPtr(SkSurface::NewScratchRenderTarget(grContext, info, msaaSampleCount));
58 if (!m_surface.get())
65 GrRenderTarget* renderTarget = m_surface->getCanvas()->getTopDevice()->accessRenderTarget();
  /external/deqp/framework/egl/
egluUnique.hpp 38 EGLSurface operator* (void) { return m_surface; }
39 operator bool (void) const { return m_surface != EGL_NO_SURFACE; }
43 EGLSurface m_surface; member in class:eglu::UniqueSurface
egluUnique.cpp 33 , m_surface (surface)
39 if (m_surface != EGL_NO_SURFACE)
40 TCU_CHECK_EGL_CALL(eglDestroySurface(m_display, m_surface));
tcuEgl.cpp 135 TCU_CHECK_EGL_CALL(eglQuerySurface(m_display.getEGLDisplay(), m_surface, attribute, &value));
141 TCU_CHECK_EGL_CALL(eglSurfaceAttrib(m_display.getEGLDisplay(), m_surface, attribute, value));
163 m_surface = windowSurface;
169 m_surface = eglCreateWindowSurface(display.getEGLDisplay(), config, nativeWindow, attribList);
171 TCU_CHECK(m_surface != EGL_NO_SURFACE);
176 eglDestroySurface(m_display.getEGLDisplay(), m_surface);
177 m_surface = EGL_NO_SURFACE;
182 TCU_CHECK_EGL_CALL(eglSwapBuffers(m_display.getEGLDisplay(), m_surface));
188 m_surface = surface;
194 m_surface = eglCreatePixmapSurface(m_display.getEGLDisplay(), config, nativePixmap, attribList)
    [all...]
tcuEgl.hpp 91 EGLSurface getEGLSurface (void) const { return m_surface; }
102 Surface (Display& display) : m_display(display), m_surface(EGL_NO_SURFACE) {}
108 EGLSurface m_surface; member in class:tcu::egl::Surface
  /external/deqp/modules/egl/
teglResizeTests.cpp 117 MovePtr<UniqueSurface> m_surface; member in class:deqp::egl::ResizeTest
177 m_surface = surface;
189 m_surface.clear();
335 ScopedCurrentContext currentCtx (m_display, **m_surface, **m_surface, **m_context);
337 **m_surface,
346 eglSwapBuffers(m_display, **m_surface);
347 checkSurfaceSize(m_display, **m_surface, *m_nativeWindow, m_newSize, m_status);
371 ScopedCurrentContext currentCtx (m_display, **m_surface, **m_surface, **m_context)
    [all...]
teglImageTests.cpp 244 , m_surface (DE_NULL)
258 m_surface = new tcu::egl::PbufferSurface(dpy, m_config, pbufferAttrs);
263 m_surface = new tcu::egl::WindowSurface(dpy, eglu::createWindowSurface(eglTestCtx.getNativeDisplay(), *m_window, dpy.getEGLDisplay(), m_config, DE_NULL));
268 m_surface = new tcu::egl::PixmapSurface(dpy, eglu::createPixmapSurface(eglTestCtx.getNativeDisplay(), *m_pixmap, dpy.getEGLDisplay(), m_config, DE_NULL));
273 m_context.makeCurrent(*m_surface, *m_surface);
282 delete m_surface;
348 tcu::egl::Surface* m_surface; member in class:deqp::egl::Image::GLES2Context
teglColorClearCase.cpp 246 , m_surface (surface)
261 eglMakeCurrent(m_display.getEGLDisplay(), m_surface.getEGLSurface(), m_surface.getEGLSurface(), m_context.getEGLContext());
277 tcu::egl::Surface& m_surface; member in class:deqp::egl::ColorClearThread
teglImageFormatTests.cpp 214 tcu::egl::Surface* m_surface; member in class:deqp::egl::Image::ImageApi
221 , m_surface (surface)
338 m_context->makeCurrent(*m_surface, *m_surface);
349 m_context->makeCurrent(*m_surface, *m_surface);
686 m_context->makeCurrent(*m_surface, *m_surface);
1621 tcu::egl::Surface* m_surface; member in class:deqp::egl::Image::ImageFormatCase
    [all...]
teglRenderTests.cpp 831 , m_surface (surface)
847 eglMakeCurrent(m_display.getEGLDisplay(), m_surface.getEGLSurface(), m_surface.getEGLSurface(), m_context.getEGLContext());
863 tcu::egl::Surface& m_surface; member in class:deqp::egl::RenderTestThread
    [all...]
teglGLES2SharingThreadedTests.cpp 692 SharedPtr<Surface> m_surface; member in class:deqp::egl::GLES2ThreadTest::MakeCurrent
699 , m_surface (surface)
705 if (m_surface)
706 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(m_surface));
721 thread.surface = m_surface;
731 thread.eglSurface = m_surface->surface;
734 DE_ASSERT(m_surface);
735 thread.newMessage() << "Begin -- eglMakeCurrent(" << m_display << ", " << m_surface->surface << ", " << m_surface->surface << ", " << m_context->context << ")" << tcu::ThreadUtil::Message::End;
736 TCU_CHECK_EGL_CALL(eglMakeCurrent(m_display, m_surface->surface, m_surface->surface, m_context->context))
825 SharedPtr<Surface> m_surface; member in class:deqp::egl::GLES2ThreadTest::CreatePBufferSurface
861 SharedPtr<Surface> m_surface; member in class:deqp::egl::GLES2ThreadTest::DestroySurface
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9HWR.h 33 VASurfaceID* m_surface; member in struct:vaapiMemId
OMXVideoDecoderVP9HWR.cpp 219 extMIDs[i]->m_surface = new VASurfaceID;
313 extMIDs[i]->m_surface,
328 va_res = vaDeriveImage(mVADisplay, *(extMIDs[i]->m_surface), &image);
349 if (extMIDs[i]->m_surface != NULL) {
350 vaDestroySurfaces(mVADisplay, extMIDs[i]->m_surface, 1);
365 delete extMIDs[i]->m_surface;
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 301 mutable tcu::Surface* m_surface; member in class:deqp::gls::TextureTestUtil::SurfaceAccess
312 m_surface->setPixel(m_x+x, m_y+y, toRGBAMasked(color, m_colorMask));
glsTextureTestUtil.cpp 194 : m_surface (&surface)
204 : m_surface (&surface)
214 : m_surface (parent.m_surface)
    [all...]

Completed in 313 milliseconds