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

  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferDataCairo.h 38 cairo_surface_t* m_surface; member in class:WebCore::ImageBufferData
ImageBufferCairo.cpp 69 : m_surface(0)
79 m_data.m_surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32,
82 if (cairo_surface_status(m_data.m_surface) != CAIRO_STATUS_SUCCESS)
85 RefPtr<cairo_t> cr = adoptRef(cairo_create(m_data.m_surface));
93 cairo_surface_destroy(m_data.m_surface);
114 return BitmapImage::create(copySurface(m_data.m_surface));
119 context->platformContext()->pushImageMask(m_data.m_surface, maskRect);
126 RefPtr<Image> image = BitmapImage::create(cairo_surface_reference(m_data.m_surface));
134 RefPtr<Image> image = BitmapImage::create(cairo_surface_reference(m_data.m_surface));
140 ASSERT(cairo_surface_get_type(m_data.m_surface) == CAIRO_SURFACE_TYPE_IMAGE)
    [all...]
  /development/samples/BrowserPlugin/jni/video/
VideoPlugin.h 41 jobject m_surface; member in class:VideoPlugin
VideoPlugin.cpp 50 m_surface = NULL;
67 if (m_surface) {
68 return m_surface;
94 m_surface = env->NewGlobalRef(videoSurface);
95 return m_surface;
100 if (m_surface && gVM->GetEnv((void**) &env, JNI_VERSION_1_4) == JNI_OK) {
101 env->DeleteGlobalRef(m_surface);
102 m_surface = NULL;
  /external/webkit/Source/WebCore/platform/graphics/android/
PaintTileOperation.cpp 38 , m_surface(surface)
42 SkSafeRef(m_surface);
52 if (m_surface && m_surface->type() == SurfacePainter::ImageSurface) {
53 ImageTexture* image = static_cast<ImageTexture*>(m_surface);
56 SkSafeUnref(m_surface);
TiledTexture.h 46 , m_surface(surface)
94 SurfacePainter* m_surface; member in class:WebCore::TiledTexture
PaintTileOperation.h 52 SurfacePainter* m_surface; member in class:WebCore::PaintTileOperation
TiledTexture.cpp 133 if (!m_surface)
210 PaintTileOperation *operation = new PaintTileOperation(tile, m_surface);
244 if (!m_surface)
278 tile->draw(m_surface->opacity(), rect, m_scale);
312 if (!m_surface)
314 return m_surface->transform();
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.h 44 jobject m_surface; member in class:BallAnimation
AnimationPlugin.cpp 76 if (m_surface) {
77 return m_surface;
105 m_surface = env->NewGlobalRef(fullScreenSurface);
106 return m_surface;
111 if (m_surface && gVM->GetEnv((void**) &env, JNI_VERSION_1_4) == JNI_OK) {
112 env->DeleteGlobalRef(m_surface);
113 m_surface = NULL;
  /development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.h 54 jobject m_surface; member in class:BackgroundPlugin
BackgroundPlugin.cpp 58 m_surface = NULL;
88 if (m_surface) {
89 return m_surface;
115 m_surface = env->NewGlobalRef(backgroundSurface);
116 return m_surface;
121 if (m_surface && gVM->GetEnv((void**) &env, JNI_VERSION_1_4) == JNI_OK) {
122 env->DeleteGlobalRef(m_surface);
123 m_surface = NULL;
150 if (!m_surface || gVM->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK ||
151 !gSurfaceI.lock(env, m_surface, &bitmap, NULL))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 401 , m_surface(0)
407 , m_surface(0)
420 if (surface == m_surface)
426 m_surface = surface;
431 m_surface->setActivePainter(this);
432 m_surface->makeCurrent();
437 if (!m_surface)
440 m_surface->setActivePainter(0);
441 m_surface = 0;
472 ASSERT(m_state); // implies m_surface
    [all...]
PainterOpenVG.h 125 SurfaceOpenVG* surface() { return m_surface; }
137 SurfaceOpenVG* m_surface; member in class:WebCore::PainterOpenVG
  /development/samples/BrowserPlugin/jni/paint/
PaintPlugin.h 55 jobject m_surface; member in class:PaintPlugin
PaintPlugin.cpp 57 m_surface = NULL;
100 if (!m_surface || gVM->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK ||
101 !gSurfaceI.lock(env, m_surface, &bitmap, dirtyRect)) {
135 if (m_surface && gVM->GetEnv((void**) &env, JNI_VERSION_1_4) == JNI_OK) {
136 gSurfaceI.unlock(env, m_surface);
227 if (m_surface) {
228 return m_surface;
258 m_surface = env->NewGlobalRef(paintSurface);
259 return m_surface;
264 if (m_surface && gVM->GetEnv((void**) &env, JNI_VERSION_1_4) == JNI_OK)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferDataCG.h 55 RetainPtr<IOSurfaceRef> m_surface; member in class:WebCore::ImageBufferData
ImageBufferDataCG.cpp 55 , m_surface(0)
193 IOSurfaceRef surface = m_surface.get();
330 IOSurfaceRef surface = m_surface.get();
ImageBufferCG.cpp 146 m_data.m_surface = createIOSurface(size);
147 cgContext.adoptCF(wkIOSurfaceContextCreate(m_data.m_surface.get(), size.width(), size.height(), m_data.m_colorSpace));
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 273 m_surface = textureMapper->createTexture();
281 , m_surface(0)
343 return m_surface && !m_surface->size().isEmpty() ? m_surface->size() : m_size;
484 textureMapper->paintToTarget(*m_surface.get(), options.viewportSize, options.transform, options.opacity * m_state.opacity, options.targetRect);
522 BitmapTexture& texture = *m_surface.get();
558 ASSERT(m_surface);
559 BitmapTexture& texture = *m_surface.get();
601 ASSERT(m_surface);
    [all...]
TextureMapperNode.h 192 RefPtr<BitmapTexture> m_surface, m_replicaSurface; member in class:WebCore::TextureMapperNode
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ImageBufferGtk.cpp 48 GRefPtr<GdkPixbuf> pixbuf = cairoImageSurfaceToGdkPixbuf(m_data.m_surface);

Completed in 176 milliseconds