Searched defs:surface (Results 1 - 25 of 320) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipData.cpp21 void GrClipData::getConservativeBounds(const GrSurface* surface, argument
28 surface->width(),
29 surface->height(),
/external/skia/src/gpu/
H A DGrClipData.cpp21 void GrClipData::getConservativeBounds(const GrSurface* surface, argument
28 surface->width(),
29 surface->height(),
/external/chromium_org/content/common/gpu/
H A Dimage_transport_surface_linux.cc17 scoped_refptr<gfx::GLSurface> surface = local
19 if (!surface.get())
20 return surface;
22 manager, stub, surface.get(), handle.is_transport()));
H A Dimage_transport_surface_android.cc24 scoped_refptr<gfx::GLSurface> surface = local
26 bool initialize_success = surface->Initialize();
33 manager, stub, surface.get(), false));
/external/chromium_org/media/tools/shader_bench/
H A Dgpu_painter.h21 gfx::GLSurface* surface() const { return surface_; } function in class:GPUPainter
24 virtual void SetGLContext(gfx::GLSurface* surface, gfx::GLContext* context);
/external/chromium_org/third_party/mesa/src/src/egl/wayland/wayland-egl/
H A Dwayland-egl.c22 wl_egl_window_create(struct wl_surface *surface, argument
31 egl_window->surface = surface;
H A Dwayland-egl-priv.h18 struct wl_surface *surface; member in struct:wl_egl_window
/external/chromium_org/ui/gl/
H A Dgl_surface.h21 // Encapsulates a surface that can be rendered to with GL, hiding platform
27 // (Re)create the surface. TODO(apatrick): This is an ugly hack to allow the
28 // EGL surface associated to be recreated without destroying the associated
33 // Destroys the surface.
38 // Recreate the surface without changing the size.
42 // a GL draw call to this surface and defer it until the GpuScheduler is
46 // Returns true if this surface is offscreen.
53 // Get the size of the surface.
56 // Get the underlying platform specific surface "handle".
59 // Returns space separated list of surface specifi
151 GLSurface* surface() const { return surface_.get(); } function in class:gfx::GLSurfaceAdapter
[all...]
H A Dscoped_make_current.cc14 gfx::GLSurface* surface)
18 surface_(surface),
21 DCHECK(surface);
22 succeeded_ = context->MakeCurrent(surface);
13 ScopedMakeCurrent(gfx::GLContext* context, gfx::GLSurface* surface) argument
H A Dgl_context_stub.cc18 bool GLContextStub::MakeCurrent(GLSurface* surface) { argument
19 SetCurrent(surface);
23 void GLContextStub::ReleaseCurrent(GLSurface* surface) { argument
27 bool GLContextStub::IsCurrent(GLSurface* surface) { argument
/external/mesa3d/src/egl/wayland/wayland-egl/
H A Dwayland-egl.c22 wl_egl_window_create(struct wl_surface *surface, argument
31 egl_window->surface = surface;
/external/chromium/chrome/browser/ui/window_snapshot/
H A Dwindow_snapshot_x.cc47 cairo_surface_t* surface = local
55 if (!surface) {
56 LOG(ERROR) << "Unable to create Cairo surface from XImage data";
60 surface, SnapshotCallback, png_representation);
61 cairo_surface_destroy(surface);
/external/chromium_org/android_webview/browser/
H A Dscoped_app_gl_state_restore.cc21 : surface(new gfx::GLSurfaceStub),
23 surface.get(),
25 void MakeCurrent() { context->MakeCurrent(surface.get()); }
28 scoped_refptr<gfx::GLSurfaceStub> surface; member in class:android_webview::__anon3427::AppContextSurface
/external/chromium_org/content/plugin/
H A Dwebplugin_accelerated_surface_proxy_mac.cc14 #include "ui/surface/accelerated_surface_mac.h"
15 #include "ui/surface/transport_dib.h"
31 AcceleratedSurface* surface = new AcceleratedSurface;
34 if (!surface->Initialize(NULL, true, gpu_preference)) {
35 delete surface;
39 return new WebPluginAcceleratedSurfaceProxy(plugin_proxy, surface);
44 AcceleratedSurface* surface)
46 surface_(surface) {
42 WebPluginAcceleratedSurfaceProxy( WebPluginProxy* plugin_proxy, AcceleratedSurface* surface) argument
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A Dmain.cpp74 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface) argument
81 if (context && display && surface)
83 context->makeCurrent(surface);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_surface.h88 svga_surface(struct pipe_surface *surface) argument
90 assert(surface);
91 return (struct svga_surface *)surface;
96 svga_surface_const(const struct pipe_surface *surface) argument
98 assert(surface);
99 return (const struct svga_surface *)surface;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_texture.c78 struct pipe_surface *surface)
82 if(!surface)
85 assert(surface->texture == tr_res->resource);
91 memcpy(&tr_surf->base, surface, sizeof(struct pipe_surface));
96 tr_surf->surface = surface;
101 pipe_surface_reference(&surface, NULL);
110 pipe_surface_reference(&tr_surf->surface, NULL);
77 trace_surf_create(struct trace_resource *tr_res, struct pipe_surface *surface) argument
H A Dtr_texture.h53 struct pipe_surface *surface; member in struct:trace_surface
91 trace_surface(struct pipe_surface *surface) argument
93 if(!surface)
95 (void)trace_resource(surface->texture);
96 return (struct trace_surface *)surface;
129 struct pipe_surface *surface);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_surface.c43 XvMCSurface surface = {0}; local
74 assert(XvMCCreateSurface(display, NULL, &surface) == XvMCBadContext);
75 /* Test NULL surface */
78 assert(XvMCCreateSurface(display, &context, &surface) == Success);
79 /* Test surface id assigned */
80 assert(surface.surface_id != 0);
82 assert(surface.context_id == context.context_id);
83 /* Test surface type id assigned and correct */
84 assert(surface.surface_type_id == surface_type_id);
86 assert(surface
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/
H A Dgraw_util.c79 struct pipe_surface *surface,
91 debug_dump_surface_bmp(pipe, filename, surface);
78 graw_save_surface_to_file(struct pipe_context *pipe, struct pipe_surface *surface, const char *filename) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_fbo.h43 struct nouveau_surface surface; member in struct:nouveau_renderbuffer
H A Dnouveau_texture.h34 struct nouveau_surface surface; member in struct:nouveau_teximage
36 struct nouveau_surface surface; member in struct:nouveau_teximage::__anon12804
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_fbo.h44 * pipe surface.
50 struct pipe_surface *surface; /* temporary view into texture */ member in struct:st_renderbuffer
/external/harfbuzz_ng/util/
H A Dhelper-cairo-ansi.cc34 helper_cairo_surface_write_to_ansi_stream (cairo_surface_t *surface, argument
38 unsigned int width = cairo_image_surface_get_width (surface);
39 unsigned int height = cairo_image_surface_get_height (surface);
40 if (cairo_image_surface_get_format (surface) != CAIRO_FORMAT_RGB24) {
43 if (cairo_image_surface_get_format (surface) == CAIRO_FORMAT_A8) {
47 cairo_mask_surface (cr, surface, 0, 0);
51 cairo_set_source_surface (cr, surface, 0, 0);
55 surface = new_surface;
57 cairo_surface_reference (surface);
59 unsigned int stride = cairo_image_surface_get_stride (surface);
[all...]
/external/icu4c/samples/layout/
H A DGDIFontMap.cpp18 GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
19 : FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)

Completed in 1294 milliseconds

1234567891011>>