HomeSort by relevance Sort by last modified time
    Searched refs:scrn (Results 1 - 9 of 9) sorted by null

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_dri.c 81 vl_dri2_handle_stamps(struct vl_dri_screen *scrn,
88 if (scrn->last_ust && (ust > scrn->last_ust) &&
89 scrn->last_msc && (msc > scrn->last_msc))
90 scrn->ns_frame = (ust - scrn->last_ust) / (msc - scrn->last_msc);
92 scrn->last_ust = ust;
93 scrn->last_msc = msc
126 struct vl_dri_screen *scrn = (struct vl_dri_screen *)context_private; local
181 struct vl_dri_screen *scrn = (struct vl_dri_screen *)vscreen; local
261 struct vl_dri_screen *scrn = (struct vl_dri_screen *)vscreen; local
269 struct vl_dri_screen *scrn = (struct vl_dri_screen *)vscreen; local
292 struct vl_dri_screen *scrn = (struct vl_dri_screen *)vscreen; local
320 struct vl_dri_screen *scrn; local
455 struct vl_dri_screen *scrn = (struct vl_dri_screen *)vscreen; local
    [all...]
vl_winsys_dri3.c 96 dri3_free_front_buffer(struct vl_dri3_screen *scrn,
99 xcb_sync_destroy_fence(scrn->conn, buffer->sync_fence);
106 dri3_free_back_buffer(struct vl_dri3_screen *scrn,
109 xcb_free_pixmap(scrn->conn, buffer->pixmap);
110 xcb_sync_destroy_fence(scrn->conn, buffer->sync_fence);
112 if (!scrn->output_texture)
120 dri3_handle_stamps(struct vl_dri3_screen *scrn, uint64_t ust, uint64_t msc)
124 if (scrn->last_ust && (ust_ns > scrn->last_ust) &&
125 scrn->last_msc && (msc > scrn->last_msc)
548 struct vl_dri3_screen *scrn = (struct vl_dri3_screen *)context_private; local
607 struct vl_dri3_screen *scrn = (struct vl_dri3_screen *)vscreen; local
634 struct vl_dri3_screen *scrn = (struct vl_dri3_screen *)vscreen; local
644 struct vl_dri3_screen *scrn = (struct vl_dri3_screen *)vscreen; local
671 struct vl_dri3_screen *scrn = (struct vl_dri3_screen *)vscreen; local
693 struct vl_dri3_screen *scrn = (struct vl_dri3_screen *)vscreen; local
705 struct vl_dri3_screen *scrn = (struct vl_dri3_screen *)vscreen; local
745 struct vl_dri3_screen *scrn; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.c 112 driCreateNewScreen2(int scrn, int fd,
145 psp->myNum = scrn;
188 dri2CreateNewScreen(int scrn, int fd,
192 return driCreateNewScreen2(scrn, fd, extensions, NULL,
198 driSWRastCreateNewScreen(int scrn, const __DRIextension **extensions,
201 return driCreateNewScreen2(scrn, -1, extensions, NULL,
206 driSWRastCreateNewScreen2(int scrn, const __DRIextension **extensions,
210 return driCreateNewScreen2(scrn, -1, extensions, driver_extensions,
589 * \param scrn the screen.
  /external/mesa3d/src/gallium/state_trackers/xvmc/
context.c 185 int scrn = 0; local
206 &found_port, &scrn, &chroma_format, &mc_type, &surface_flags,
232 vscreen = vl_dri3_screen_create(dpy, scrn);
234 vscreen = vl_dri2_screen_create(dpy, scrn);
  /external/mesa3d/src/glx/
dri_glx.c 401 * \param scrn Screen number on the display.
410 CallCreateNewScreen(Display *dpy, int scrn, struct dri_screen *psc,
442 if (!XF86DRIOpenConnection(dpy, scrn, &hSAREA, &BusID)) {
474 if (newlyopened && !XF86DRIAuthConnection(dpy, scrn, magic)) {
482 if (!XF86DRIGetClientDriverName(dpy, scrn,
498 if (!XF86DRIGetDeviceInfo(dpy, scrn, &hFB, &junk,
506 framebuffer.width = DisplayWidth(dpy, scrn);
507 framebuffer.height = DisplayHeight(dpy, scrn);
526 psp = (*psc->legacy->createNewScreen) (scrn,
571 if (num_visuals > 0 && visuals->depth != DefaultDepth(dpy, scrn))
    [all...]
glxcmds.c 142 * \param scrn Screen on \c dpy for which the GLX per-screen information is
144 * \returns A pointer to the GLX per-screen data if \c dpy and \c scrn
147 * \todo Should this function validate that \c scrn is within the screen
152 GetGLXScreenConfigs(Display * dpy, int scrn)
158 NULL) ? priv->screens[scrn] : NULL;
163 GetGLXPrivScreenConfig(Display * dpy, int scrn, struct glx_display ** ppriv,
180 if ((scrn < 0) || (scrn >= ScreenCount(dpy))) {
185 *ppsc = (*ppriv)->screens[scrn];
    [all...]
glxclient.h 804 extern struct glx_screen *GetGLXScreenConfigs(Display * dpy, int scrn);
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 58 GetGLXScreenConfigs(Display * dpy, int scrn)
61 (void) scrn;
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
action.c 578 const ExprDef *scrn; local
587 scrn = value->unary.child;
591 scrn = value;
594 if (!ExprResolveInteger(ctx, scrn, &val))

Completed in 1635 milliseconds