Searched refs:surface (Results 51 - 75 of 446) sorted by relevance

1234567891011>>

/external/deqp/modules/egl/
H A DteglColorClearCase.hpp50 eglw::EGLSurface surface,
68 eglw::EGLSurface surface,
H A DteglRenderCase.hpp59 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config) = DE_NULL;
71 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config);
72 virtual void executeForContext (eglw::EGLDisplay display, eglw::EGLContext context, eglw::EGLSurface surface, const Config& config) = DE_NULL;
84 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config);
85 virtual void executeForContexts (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config, const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts) = DE_NULL;
/external/icu/icu4c/source/samples/layout/
H A Dgnomeglue.cpp48 void rs_gnomeRenderingSurfaceClose(rs_surface *surface) argument
50 GnomeSurface *rs = (GnomeSurface *) surface;
H A DGDIFontMap.h31 GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
/external/mesa3d/src/gallium/drivers/galahad/
H A Dglhd_objects.c76 struct pipe_surface *surface)
80 if(!surface)
83 assert(surface->texture == glhd_resource->resource);
89 memcpy(&glhd_surface->base, surface, sizeof(struct pipe_surface));
94 glhd_surface->surface = surface;
99 pipe_surface_reference(&surface, NULL);
108 pipe_surface_reference(&glhd_surface->surface, NULL);
74 galahad_surface_create(struct galahad_context *glhd_context, struct galahad_resource *glhd_resource, struct pipe_surface *surface) argument
/external/mesa3d/src/gallium/drivers/identity/
H A Did_objects.c76 struct pipe_surface *surface)
80 if(!surface)
83 assert(surface->texture == id_resource->resource);
89 memcpy(&id_surface->base, surface, sizeof(struct pipe_surface));
94 id_surface->surface = surface;
99 pipe_surface_reference(&surface, NULL);
109 id_surface->surface);
74 identity_surface_create(struct identity_context *id_context, struct identity_resource *id_resource, struct pipe_surface *surface) argument
/external/skia/bench/
H A DImageBench.cpp34 auto surface(canvas->makeSurface(info));
36 fImage = surface->makeImageSnapshot();
43 // Release the image and raster surface here to prevent out of order destruction
H A Dnanobench.h47 sk_sp<SkSurface> surface; member in struct:Target
83 if (!surface.get()) {
86 return surface->getCanvas();
/external/skia/src/gpu/
H A DGrSurfacePriv.h21 read/write respects the bounds of a surface. If the input *rowBytes is 0 it will be
41 explicit GrSurfacePriv(GrSurface* surface) : fSurface(surface) {} argument
/external/swiftshader/src/OpenGL/libGL/
H A DDisplay.h48 void destroySurface(Surface *surface);
53 bool isValidSurface(Surface *surface);
H A Dmain.h40 void makeCurrent(Context *context, Display *display, Surface *surface);
50 void setCurrentDrawSurface(Surface *surface);
51 void setCurrentReadSurface(Surface *surface);
/external/deqp/framework/egl/wrapper/
H A DeglwFuncPtrLibraryDecl.inl7 EGLBoolean bindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) const;
11 EGLBoolean copyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target) const;
28 EGLBoolean destroySurface (EGLDisplay dpy, EGLSurface surface) const;
44 EGLBoolean lockSurfaceKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list) const;
49 EGLBoolean querySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value) const;
50 EGLBoolean releaseTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) const;
52 EGLBoolean setDamageRegionKHR (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects) const;
54 EGLBoolean surfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) const;
55 EGLBoolean swapBuffers (EGLDisplay dpy, EGLSurface surface) const;
56 EGLBoolean swapBuffersWithDamageKHR (EGLDisplay dpy, EGLSurface surface, EGLin
[all...]
H A DeglwFuncPtrLibraryImpl.inl12 EGLBoolean FuncPtrLibrary::bindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) const
14 return m_egl.bindTexImage(dpy, surface, buffer);
32 EGLBoolean FuncPtrLibrary::copyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target) const
34 return m_egl.copyBuffers(dpy, surface, target);
117 EGLBoolean FuncPtrLibrary::destroySurface (EGLDisplay dpy, EGLSurface surface) const
119 return m_egl.destroySurface(dpy, surface);
197 EGLBoolean FuncPtrLibrary::lockSurfaceKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list) const
199 return m_egl.lockSurfaceKHR(dpy, surface, attrib_list);
222 EGLBoolean FuncPtrLibrary::querySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value) const
224 return m_egl.querySurface(dpy, surface, attribut
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_fbo.h43 struct nouveau_surface surface; member in struct:nouveau_renderbuffer
/external/skia/tests/
H A DDrawPathTest.cpp28 // check that the pixel in question starts as transparent (by the surface)
97 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
101 surface->getCanvas()->drawPath(path, paint);
134 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
135 SkCanvas* canvas = surface->getCanvas();
173 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
174 surface->getCanvas()->drawPath(path, paint);
215 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
216 surface->getCanvas()->drawPath(path, paint);
243 auto surface(SkSurfac
[all...]
/external/deqp/framework/randomshaders/
H A DrsgTest.cpp67 tcu::Surface surface(64, 64);
68 rsg::ProgramExecutor executor(surface.getAccess(), 3, 5);
73 tcu::ImageIO::savePNG(surface.getAccess(), fileName.c_str());
/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/mesa3d/src/gallium/state_trackers/vdpau/
H A Ddevice.c262 vlVdpResolveDelayedRendering(vlVdpDevice *dev, struct pipe_surface *surface, struct u_rect *dirty_area) argument
273 vlsurface = vlGetDataHTAB(dev->delayed_rendering.surface);
277 if (!surface) {
278 surface = vlsurface->surface;
282 vl_compositor_render(cstate, &dev->compositor, surface, dirty_area);
284 dev->delayed_rendering.surface = VDP_INVALID_HANDLE;
288 if (surface->texture != vlsurface->sampler_view->texture) {
289 struct pipe_resource *res = surface->texture;
301 vlVdpSave4DelayedRendering(vlVdpDevice *dev, VdpOutputSurface surface, struc argument
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_svga.c163 struct vmw_svga_winsys_surface *surface; local
165 surface = CALLOC_STRUCT(vmw_svga_winsys_surface);
166 if(!surface)
169 pipe_reference_init(&surface->refcnt, 1);
170 p_atomic_set(&surface->validated, 0);
171 surface->screen = vws;
172 surface->sid = vmw_ioctl_surface_create(vws,
175 if(surface->sid == SVGA3D_INVALID_ID)
178 return svga_winsys_surface(surface);
181 FREE(surface);
188 vmw_svga_winsys_surface_is_flushed(struct svga_winsys_screen *sws, struct svga_winsys_surface *surface) argument
[all...]
/external/skia/tools/viewer/sk_app/unix/
H A DVulkanWindowContext_unix.cpp31 VkSurfaceKHR surface;
41 VkResult res = createXcbSurfaceKHR(instance, &surfaceCreateInfo, nullptr, &surface);
46 return surface;
/external/skia/tools/viewer/sk_app/win/
H A DVulkanWindowContext_win.cpp29 VkSurfaceKHR surface;
39 VkResult res = createWin32SurfaceKHR(instance, &surfaceCreateInfo, nullptr, &surface);
44 return surface;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug.c502 struct pipe_surface *surface)
508 if (!surface)
512 * temporary storage for the surface which hasn't been propagated
517 texture = surface->texture;
519 transfer = pipe_get_transfer(pipe, texture, surface->u.tex.level,
520 surface->u.tex.first_layer,
522 0, 0, surface->width, surface->height);
531 util_format_get_nblocksx(texture->format, surface->width),
532 util_format_get_nblocksy(texture->format, surface
500 debug_dump_surface(struct pipe_context *pipe, const char *prefix, struct pipe_surface *surface) argument
546 struct pipe_surface *surface, surf_tmpl; local
594 debug_dump_surface_bmp(struct pipe_context *pipe, const char *filename, struct pipe_surface *surface) argument
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_blit.c82 info->src.layer = srcRb->surface->u.tex.first_layer;
84 info->dst.level = dstRb->surface->u.tex.level;
85 info->dst.layer = dstRb->surface->u.tex.first_layer;
116 info->src.layer = srcRb->surface->u.tex.first_layer;
118 info->dst.level = dstRb->surface->u.tex.level;
119 info->dst.layer = dstRb->surface->u.tex.first_layer;
132 info->src.layer = srcRb->surface->u.tex.first_layer;
134 info->dst.level = dstRb->surface->u.tex.level;
135 info->dst.layer = dstRb->surface->u.tex.first_layer;
236 struct pipe_surface *dstSurf = dstRb->surface;
[all...]
/external/skia/gm/
H A Dimagemakewithfilter.cpp73 sk_sp<SkSurface> surface = canvas->makeSurface(info); variable
74 if (!surface) {
75 surface = SkSurface::MakeRaster(info);
77 sk_tool_utils::draw_checkerboard(surface->getCanvas());
78 sk_sp<SkImage> source = surface->makeImageSnapshot();
/external/skia/src/core/
H A DSkPictureImageGenerator.cpp103 // TODO: respect the usage, by possibly creating a different (pow2) surface
105 sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(ctx, SkBudgeted::kYes, info));
106 if (!surface) {
112 surface->getCanvas()->clear(0); // does NewRenderTarget promise to do this for us?
113 surface->getCanvas()->drawPicture(fPicture.get(), &matrix, fPaint.getMaybeNull());
114 sk_sp<SkImage> image(surface->makeImageSnapshot());

Completed in 843 milliseconds

1234567891011>>