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

  /external/mesa3d/src/gallium/state_trackers/gbm/
gbm_drm.c 112 struct winsys_handle whandle; local
161 memset(&whandle, 0, sizeof(whandle));
162 whandle.type = DRM_API_HANDLE_TYPE_KMS;
163 gdrm->screen->resource_get_handle(gdrm->screen, bo->resource, &whandle);
165 bo->base.base.handle.u32 = whandle.handle;
166 bo->base.base.stride = whandle.stride;
179 struct winsys_handle whandle; local
211 memset(&whandle, 0, sizeof(whandle));
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_crtc.c 220 struct winsys_handle whandle; local
234 memset(&whandle, 0, sizeof(whandle));
235 whandle.type = DRM_API_HANDLE_TYPE_KMS;
238 screen->resource_get_handle(screen, crtcp->cursor_tex, &whandle);
240 crtcp->cursor_handle = whandle.handle;
xorg_dri2.c 72 struct winsys_handle whandle; local
160 memset(&whandle, 0, sizeof(whandle));
161 whandle.type = DRM_API_HANDLE_TYPE_SHARED;
163 ms->screen->resource_get_handle(ms->screen, tex, &whandle);
165 buffer->name = whandle.handle;
166 buffer->pitch = whandle.stride;
xorg_driver.c 1082 struct winsys_handle whandle; local
1094 memset(&whandle, 0, sizeof(whandle));
1095 whandle.type = DRM_API_HANDLE_TYPE_KMS;
1097 if (!ms->screen->resource_get_handle(ms->screen, tex, &whandle))
1105 whandle.stride,
1106 whandle.handle,
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/drm/
dri2.c 212 struct winsys_handle whandle; local
233 memset(&whandle, 0, sizeof(whandle));
276 whandle.handle = buf->name;
277 whandle.stride = buf->pitch;
281 &templ, &whandle);
300 struct winsys_handle whandle; local
355 memset(&whandle, 0, sizeof(whandle));
356 whandle.type = DRM_API_HANDLE_TYPE_SHARED
440 struct winsys_handle whandle; local
586 struct winsys_handle whandle; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/drm/
modeset.c 73 struct winsys_handle whandle; local
101 memset(&whandle, 0, sizeof(whandle));
102 whandle.type = DRM_API_HANDLE_TYPE_KMS;
105 fb->texture, &whandle))
110 block_bits, block_bits, whandle.stride, whandle.handle,
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.c 440 struct winsys_handle whandle; local
445 memset(&whandle, 0, sizeof(whandle));
446 whandle.type = DRM_API_HANDLE_TYPE_SHARED;
447 res = screen->resource_get_handle(screen, srf->tex, &whandle);
451 *handle = whandle.handle;
452 *stride = whandle.stride;
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
native_dri2.c 120 struct winsys_handle whandle; local
179 memset(&whandle, 0, sizeof(whandle));
180 whandle.stride = xbuf->pitch;
181 whandle.handle = xbuf->name;
183 dri2dpy->base.screen, &templ, &whandle);

Completed in 91 milliseconds