Lines Matching refs:whandle
339 struct winsys_handle *whandle) in surface_create() argument
374 if (whandle) in surface_create()
375 srf->tex = xa->screen->resource_from_handle(xa->screen, template, whandle, in surface_create()
430 struct winsys_handle whandle; in xa_surface_from_handle2() local
431 memset(&whandle, 0, sizeof(whandle)); in xa_surface_from_handle2()
432 whandle.type = handle_type(type); in xa_surface_from_handle2()
433 whandle.handle = handle; in xa_surface_from_handle2()
434 whandle.stride = stride; in xa_surface_from_handle2()
435 return surface_create(xa, width, height, depth, stype, xa_format, flags, &whandle); in xa_surface_from_handle2()
555 struct winsys_handle whandle; in xa_surface_handle() local
560 memset(&whandle, 0, sizeof(whandle)); in xa_surface_handle()
561 whandle.type = handle_type(type); in xa_surface_handle()
563 srf->tex, &whandle, in xa_surface_handle()
568 *handle = whandle.handle; in xa_surface_handle()
569 *stride = whandle.stride; in xa_surface_handle()