HomeSort by relevance Sort by last modified time
    Searched defs:winsys (Results 1 - 25 of 28) sorted by null

1 2

  /external/mesa3d/src/gallium/targets/osmesa/
target.c 37 struct sw_winsys *winsys; local
40 /* We use a null software winsys since we always just render to ordinary
43 winsys = null_sw_create();
44 if (!winsys)
48 screen = sw_screen_create(winsys);
50 winsys->destroy(winsys);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_screen.h 43 struct sw_winsys *winsys; member in struct:softpipe_screen
sp_screen.c 364 struct sw_winsys *winsys = softpipe_screen(screen)->winsys; local
387 if(!winsys->is_displaytarget_format_supported(winsys, bind, format))
457 struct sw_winsys *winsys = sp_screen->winsys; local
459 if(winsys->destroy)
460 winsys->destroy(winsys);
476 struct sw_winsys *winsys = screen->winsys local
    [all...]
sp_state_sampler.c 254 struct sw_winsys *winsys = screen->winsys; local
255 addr = winsys->displaytarget_map(winsys, sp_tex->dt,
sp_texture.c 133 struct sw_winsys *winsys = softpipe_screen(screen)->winsys; local
137 spr->dt = winsys->displaytarget_create(winsys,
206 struct sw_winsys *winsys = screen->winsys; local
207 winsys->displaytarget_destroy(winsys, spr->dt);
224 struct sw_winsys *winsys = softpipe_screen(screen)->winsys; local
259 struct sw_winsys *winsys = softpipe_screen(screen)->winsys; local
361 struct sw_winsys *winsys = softpipe_screen(pipe->screen)->winsys; local
466 struct sw_winsys *winsys = softpipe_screen(pipe->screen)->winsys; local
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_screen.h 39 struct sw_winsys *winsys; member in struct:swr_screen
swr_screen.cpp 87 struct sw_winsys *winsys = swr_screen(screen)->winsys; local
108 if (!winsys->is_displaytarget_format_supported(winsys, bind, format))
604 struct sw_winsys *winsys = screen->winsys; local
611 dt = winsys->displaytarget_create(winsys,
621 void *map = winsys->displaytarget_map(winsys, dt, 0)
880 struct sw_winsys *winsys = screen->winsys; local
904 struct sw_winsys *winsys = screen->winsys; local
925 struct sw_winsys *winsys = screen->winsys; local
    [all...]
  /external/mesa3d/src/gallium/include/state_tracker/
sw_driver.h 16 } winsys[]; member in struct:sw_driver_descriptor
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_screen.h 50 struct sw_winsys *winsys; member in struct:llvmpipe_screen
lp_screen.c 428 struct sw_winsys *winsys = screen->winsys; local
488 if(!winsys->is_displaytarget_format_supported(winsys, bind, format))
538 struct sw_winsys *winsys = screen->winsys; local
543 winsys->displaytarget_display(winsys, texture->dt, context_private, sub_box);
550 struct sw_winsys *winsys = screen->winsys; local
    [all...]
lp_state_sampler.c 322 struct sw_winsys *winsys = screen->winsys; local
323 addr = winsys->displaytarget_map(winsys, lp_tex->dt,
lp_texture.c 206 struct sw_winsys *winsys = screen->winsys; local
214 lpr->dt = winsys->displaytarget_create(winsys,
226 void *map = winsys->displaytarget_map(winsys, lpr->dt,
232 winsys->displaytarget_unmap(winsys, lpr->dt);
322 struct sw_winsys *winsys = screen->winsys; local
368 struct sw_winsys *winsys = screen->winsys; local
413 struct sw_winsys *winsys = lp_screen->winsys; local
440 struct sw_winsys *winsys = llvmpipe_screen(screen)->winsys; local
493 struct sw_winsys *winsys = llvmpipe_screen(screen)->winsys; local
    [all...]
  /external/mesa3d/src/gallium/targets/graw-gdi/
graw_gdi.c 67 struct sw_winsys *winsys = NULL; local
78 winsys = gdi_create_sw_winsys();
79 if (winsys == NULL)
82 screen = sw_screen_create(winsys);
  /external/mesa3d/src/gallium/targets/libgl-gdi/
libgl_gdi.c 67 struct sw_winsys *winsys; local
69 winsys = gdi_create_sw_winsys();
70 if(!winsys)
85 screen = llvmpipe_create_screen( winsys );
92 screen = swr_create_screen( winsys );
100 screen = softpipe_create_screen( winsys );
109 winsys->destroy(winsys);
130 struct sw_winsys *winsys = NULL; local
135 winsys = llvmpipe_screen(screen)->winsys
    [all...]
  /external/mesa3d/src/gallium/targets/libgl-xlib/
xlib.c 46 * xlib winsys.
51 struct sw_winsys *winsys; local
54 /* Create the underlying winsys, which performs presents to Xlib
57 winsys = xlib_create_sw_winsys( display );
58 if (winsys == NULL)
61 /* Create a software rasterizer on top of that winsys:
63 screen = sw_screen_create( winsys );
72 if (winsys)
73 winsys->destroy( winsys );
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/null/
null_sw_winsys.c 30 * Null software rasterizer winsys.
74 null_sw_displaytarget_destroy(struct sw_winsys *winsys,
82 null_sw_displaytarget_create(struct sw_winsys *winsys,
96 null_sw_displaytarget_from_handle(struct sw_winsys *winsys,
106 null_sw_displaytarget_get_handle(struct sw_winsys *winsys,
116 null_sw_displaytarget_display(struct sw_winsys *winsys,
126 null_sw_destroy(struct sw_winsys *winsys)
128 FREE(winsys);
135 static struct sw_winsys *winsys; local
137 winsys = CALLOC_STRUCT(sw_winsys)
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_context.h 50 struct intel_winsys *winsys; member in struct:ilo_context
ilo_cp.h 61 struct intel_winsys *winsys; member in struct:ilo_cp
82 struct intel_winsys *winsys,
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_dev.h 41 struct intel_winsys *winsys; member in struct:ilo_dev
64 ilo_dev_init(struct ilo_dev *dev, struct intel_winsys *winsys);
  /external/mesa3d/src/gallium/targets/graw-xlib/
graw_xlib.c 27 struct sw_winsys *winsys = NULL; local
29 /* Create the underlying winsys, which performs presents to Xlib
32 winsys = xlib_create_sw_winsys( graw.display );
33 if (winsys == NULL)
36 screen = sw_screen_create( winsys );
  /external/mesa3d/src/gallium/targets/haiku-softpipe/
GalliumContext.cpp 83 // Allocate winsys and attach callback hooks
84 struct sw_winsys* winsys = hgl_create_sw_winsys(); local
86 if (!winsys) {
91 fScreen = sw_screen_create(winsys);
95 FREE(winsys);
354 // to the private winsys display call.
  /external/mesa3d/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 111 gdi_sw_displaytarget_destroy(struct sw_winsys *winsys,
122 gdi_sw_displaytarget_create(struct sw_winsys *winsys,
175 gdi_sw_displaytarget_from_handle(struct sw_winsys *winsys,
186 gdi_sw_displaytarget_get_handle(struct sw_winsys *winsys,
196 gdi_sw_display( struct sw_winsys *winsys,
209 gdi_sw_displaytarget_display(struct sw_winsys *winsys,
218 gdi_sw_display(winsys, dt, hDC);
223 gdi_sw_destroy(struct sw_winsys *winsys)
225 FREE(winsys);
231 static struct sw_winsys *winsys; local
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/hgl/
hgl_sw_winsys.c 45 # define TRACE(x...) printf("hgl:winsys: " x)
51 #define ERROR(x...) printf("hgl:winsys: " x)
78 hgl_winsys_destroy(struct sw_winsys* winsys)
80 FREE(winsys);
85 hgl_winsys_is_displaytarget_format_supported(struct sw_winsys* winsys,
107 hgl_winsys_displaytarget_create(struct sw_winsys* winsys,
142 hgl_winsys_displaytarget_destroy(struct sw_winsys* winsys,
159 hgl_winsys_displaytarget_from_handle(struct sw_winsys* winsys,
168 hgl_winsys_displaytarget_get_handle(struct sw_winsys* winsys,
176 hgl_winsys_displaytarget_map(struct sw_winsys* winsys,
220 struct sw_winsys* winsys = CALLOC_STRUCT(sw_winsys); local
    [all...]
  /external/drm_gralloc/
gralloc_drm_pipe.c 52 struct winsys_handle winsys; member in struct:pipe_buffer
140 buf->winsys.type = DRM_API_HANDLE_TYPE_SHARED;
141 buf->winsys.handle = handle->name;
142 buf->winsys.stride = handle->stride;
145 &templ, &buf->winsys);
155 buf->winsys.type = DRM_API_HANDLE_TYPE_SHARED;
157 buf->resource, &buf->winsys))
196 handle->name = (int) buf->winsys.handle;
197 handle->stride = (int) buf->winsys.stride;
  /external/mesa3d/src/gallium/winsys/sw/wrapper/
wrapper_sw_winsys.c 39 * with software resterizers. This code is used by the DRM based winsys to
60 struct wrapper_sw_winsys *winsys; member in struct:wrapper_sw_displaytarget
103 struct pipe_context *pipe = wdt->winsys->pipe;
131 wdt->winsys = wsw;
215 struct pipe_context *pipe = wdt->winsys->pipe;
251 struct pipe_context *pipe = wdt->winsys->pipe;

Completed in 264 milliseconds

1 2