Searched refs:surf (Results 126 - 150 of 170) sorted by relevance

1234567

/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dsurface.c361 struct pipe_surface surf_templ, *surf; local
390 surf = pipe->create_surface(pipe, tex, &surf_templ);
392 if (!surf)
436 vl_compositor_render(cstate, compositor, surf, dirty_area);
/external/qemu/android/skin/
H A Dsurface.c58 SkinSurface* surf = *psurface; local
59 if (surf) {
60 if (--surf->refcount <= 0)
61 skin_surface_free(surf);
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglapi.h69 typedef EGLBoolean (*SwapInterval_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf, EGLint interval);
114 typedef EGLBoolean (*SwapBuffersRegionNOK_t)(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf, EGLint numRects, const EGLint *rects);
/external/dnsmasq/src/
H A Dutil.c67 static void surf(void) function
92 surf();
/external/mesa3d/src/egl/main/
H A Deglapi.h69 typedef EGLBoolean (*SwapInterval_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf, EGLint interval);
114 typedef EGLBoolean (*SwapBuffersRegionNOK_t)(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf, EGLint numRects, const EGLint *rects);
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
H A Dcompute.c54 struct pipe_surface *surf[MAX_RESOURCES]; member in struct:context
354 ctx->surf[i] = pipe->create_surface(pipe, ctx->tex[*slots],
356 assert(ctx->surf[i]);
359 pipe->set_compute_resources(pipe, 0, i, ctx->surf);
370 if (ctx->surf[i]) {
371 pipe->surface_destroy(pipe, ctx->surf[i]);
372 ctx->surf[i] = NULL;
/external/mesa3d/src/gallium/tests/trivial/
H A Dcompute.c54 struct pipe_surface *surf[MAX_RESOURCES]; member in struct:context
354 ctx->surf[i] = pipe->create_surface(pipe, ctx->tex[*slots],
356 assert(ctx->surf[i]);
359 pipe->set_compute_resources(pipe, 0, i, ctx->surf);
370 if (ctx->surf[i]) {
371 pipe->surface_destroy(pipe, ctx->surf[i]);
372 ctx->surf[i] = NULL;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_state.c794 static void r300_print_fb_surf_info(struct pipe_surface *surf, unsigned index, argument
797 struct pipe_resource *tex = surf->texture;
807 binding, index, surf->width, surf->height,
808 surf->u.tex.first_layer, surf->u.tex.last_layer, surf->u.tex.level,
809 util_format_short_name(surf->format),
814 tex->last_level, util_format_short_name(surf->format));
H A Dr300_context.h639 static INLINE struct r300_surface* r300_surface(struct pipe_surface* surf) argument
641 return (struct r300_surface*)surf;
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_state.c794 static void r300_print_fb_surf_info(struct pipe_surface *surf, unsigned index, argument
797 struct pipe_resource *tex = surf->texture;
807 binding, index, surf->width, surf->height,
808 surf->u.tex.first_layer, surf->u.tex.last_layer, surf->u.tex.level,
809 util_format_short_name(surf->format),
814 tex->last_level, util_format_short_name(surf->format));
H A Dr300_context.h639 static INLINE struct r300_surface* r300_surface(struct pipe_surface* surf) argument
641 return (struct r300_surface*)surf;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DImage9.cpp358 IDirect3DSurface9 *surf = 0; local
359 HRESULT result = device->CreateOffscreenPlainSurface(desc.Width, desc.Height, desc.Format, D3DPOOL_SYSTEMMEM, &surf, NULL);
363 copyLockableSurfaces(surf, sourceSurface);
364 result = device->UpdateSurface(surf, &rect, destSurface, &point);
366 SafeRelease(surf);
/external/chromium_org/third_party/mesa/src/src/egl/drivers/glx/
H A Degl_glx.c740 destroy_surface(_EGLDisplay *disp, _EGLSurface *surf) argument
743 struct GLX_egl_surface *GLX_surf = GLX_egl_surface(surf);
999 GLX_eglDestroySurface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf) argument
1003 if (_eglPutSurface(surf))
1004 destroy_surface(disp, surf);
/external/mesa3d/src/egl/drivers/glx/
H A Degl_glx.c740 destroy_surface(_EGLDisplay *disp, _EGLSurface *surf) argument
743 struct GLX_egl_surface *GLX_surf = GLX_egl_surface(surf);
999 GLX_eglDestroySurface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf) argument
1003 if (_eglPutSurface(surf))
1004 destroy_surface(disp, surf);
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
H A Dplatform_android.c230 droid_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf) argument
233 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
235 if (!_eglPutSurface(surf))
H A Degl_dri2.c986 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
989 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
997 if (!_eglBindTexImage(drv, disp, surf, buffer))
1028 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
1032 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1040 if (!_eglReleaseTexImage(drv, disp, surf, buffer))
985 dri2_bind_tex_image(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer) argument
1027 dri2_release_tex_image(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer) argument
H A Dplatform_wayland.c206 dri2_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf) argument
209 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
214 if (!_eglPutSurface(surf))
245 free(surf);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h1157 struct pipe_surface* surf = ((GalliumD3D11DepthStencilView*)depth_stencil_view.p)->object; local
1158 fb.zsbuf = surf;
1159 if(surf->width > fb.width)
1160 fb.width = surf->width;
1161 if(surf->height > fb.height)
1162 fb.height = surf->height;
1170 struct pipe_surface* surf = ((GalliumD3D11RenderTargetView*)render_target_views[i].p)->object; local
1171 fb.cbufs[i] = surf;
1172 if(surf->width > fb.width)
1173 fb.width = surf
[all...]
/external/mesa3d/src/egl/drivers/dri2/
H A Dplatform_android.c230 droid_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf) argument
233 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
235 if (!_eglPutSurface(surf))
H A Degl_dri2.c986 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
989 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
997 if (!_eglBindTexImage(drv, disp, surf, buffer))
1028 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
1032 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1040 if (!_eglReleaseTexImage(drv, disp, surf, buffer))
985 dri2_bind_tex_image(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer) argument
1027 dri2_release_tex_image(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer) argument
H A Dplatform_wayland.c206 dri2_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf) argument
209 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
214 if (!_eglPutSurface(surf))
245 free(surf);
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h1157 struct pipe_surface* surf = ((GalliumD3D11DepthStencilView*)depth_stencil_view.p)->object; local
1158 fb.zsbuf = surf;
1159 if(surf->width > fb.width)
1160 fb.width = surf->width;
1161 if(surf->height > fb.height)
1162 fb.height = surf->height;
1170 struct pipe_surface* surf = ((GalliumD3D11RenderTargetView*)render_target_views[i].p)->object; local
1171 fb.cbufs[i] = surf;
1172 if(surf->width > fb.width)
1173 fb.width = surf
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dsi_state.c1448 struct r600_surface *surf; local
1460 surf = (struct r600_surface *)state->cbufs[cb];
1524 desc = util_format_description(surf->base.format);
1549 format = si_translate_colorformat(surf->base.format);
1550 swap = si_translate_colorswap(surf->base.format);
1616 struct r600_surface *surf; local
1627 surf = (struct r600_surface *)state->zsbuf;
1628 level = surf->base.u.tex.level;
1629 rtex = (struct r600_resource_texture*)surf->base.texture;
1633 z_offs = r600_resource_va(rctx->context.screen, surf
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_state.c1448 struct r600_surface *surf; local
1460 surf = (struct r600_surface *)state->cbufs[cb];
1524 desc = util_format_description(surf->base.format);
1549 format = si_translate_colorformat(surf->base.format);
1550 swap = si_translate_colorswap(surf->base.format);
1616 struct r600_surface *surf; local
1627 surf = (struct r600_surface *)state->zsbuf;
1628 level = surf->base.u.tex.level;
1629 rtex = (struct r600_resource_texture*)surf->base.texture;
1633 z_offs = r600_resource_va(rctx->context.screen, surf
[all...]
/external/chromium_org/third_party/angle/include/EGL/
H A Deglext.h675 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEWINDOWNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window);
676 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEPIXMAPNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap);
679 EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeWindowNV (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window);
680 EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativePixmapNV (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap);

Completed in 556 milliseconds

1234567