HomeSort by relevance Sort by last modified time
    Searched defs:rsurf (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/gallium/state_trackers/egl/wayland/
native_wayland.h 80 struct resource_surface *rsurf; member in struct:wayland_surface
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_helper.c 70 struct resource_surface *rsurf = CALLOC_STRUCT(resource_surface); local
73 if (rsurf) {
74 rsurf->screen = screen;
75 rsurf->format = format;
76 rsurf->bind = bind;
77 rsurf->desired_fences = (swap_fences) ? atoi(swap_fences) :
79 if (rsurf->desired_fences > EGL_SWAP_FENCES_MAX)
80 rsurf->desired_fences = EGL_SWAP_FENCES_MAX;
83 return rsurf;
87 resource_surface_free_resources(struct resource_surface *rsurf)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/drm/
native_drm.h 98 struct resource_surface *rsurf; member in struct:drm_surface
  /external/mesa3d/src/gallium/state_trackers/egl/fbdev/
native_fbdev.c 77 struct resource_surface *rsurf; member in struct:fbdev_surface
104 if (!resource_surface_add_resources(fbsurf->rsurf, attachment_mask))
107 resource_surface_get_resources(fbsurf->rsurf, textures, attachment_mask);
207 ret = resource_surface_present(fbsurf->rsurf,
214 if (resource_surface_set_size(fbsurf->rsurf,
224 ret = resource_surface_present(fbsurf->rsurf,
242 resource_surface_destroy(fbsurf->rsurf);
285 fbsurf->rsurf = resource_surface_create(fbdpy->base.screen,
289 if (!fbsurf->rsurf) {
294 resource_surface_set_size(fbsurf->rsurf, fbsurf->width, fbsurf->height)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/gdi/
native_gdi.c 61 struct resource_surface *rsurf; member in struct:gdi_surface
90 if (resource_surface_set_size(gsurf->rsurf, w, h))
107 return resource_surface_add_resources(gsurf->rsurf, buffer_mask);
132 ret = resource_surface_present(gsurf->rsurf,
150 ret = resource_surface_present(gsurf->rsurf,
154 resource_surface_swap_buffers(gsurf->rsurf,
201 resource_surface_get_resources(gsurf->rsurf, textures, attachment_mask);
203 resource_surface_get_size(gsurf->rsurf, &w, &h);
223 resource_surface_destroy(gsurf->rsurf);
243 gsurf->rsurf = resource_surface_create(gdpy->base.screen
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
native_ximage.c 65 struct resource_surface *rsurf; member in struct:ximage_surface
106 if (ok && resource_surface_set_size(xsurf->rsurf, w, h))
123 return resource_surface_add_resources(xsurf->rsurf, buffer_mask);
146 ret = resource_surface_present(xsurf->rsurf,
160 ret = resource_surface_present(xsurf->rsurf,
163 resource_surface_swap_buffers(xsurf->rsurf,
210 resource_surface_get_resources(xsurf->rsurf, textures, attachment_mask);
212 resource_surface_get_size(xsurf->rsurf, &w, &h);
234 resource_surface_destroy(xsurf->rsurf);
255 xsurf->rsurf = resource_surface_create(xdpy->base.screen
    [all...]

Completed in 5637 milliseconds