Lines Matching refs:drawable
49 for a particular drawable. It also allows an application to query
51 interval of a drawable.
72 drawables. BadWindow should be returned if the <drawable> argument
74 the swap interval of a non-window drawable should be undefined.
79 RESOVLED: These are both properties of a GLX drawable, so they are
85 GLXDrawable drawable,
123 periods per buffer swap for a particular GLX drawable (e.g. a value
126 is first called on the drawable subsequent to the glXSwapIntervalEXT
140 interval for a particular drawable can be obtained by calling
143 glXQueryDrawable is undefined if the drawable is not a GLXWindow
147 glXSwapIntervalEXT on the current drawable, if one exists.
159 4 GLX_DRAWABLE drawable
167 glXSwapIntervalEXT generates BadWindow if parameter <drawable> is
172 Example 1: Set swap interval for the current drawable
175 GLXDrawable drawable = glXGetCurrentDrawable();
178 if (drawable) {
179 glXSwapIntervalEXT(dpy, drawable, interval);
182 Example 2: Query current drawable for swap interval and max swap
186 GLXDrawable drawable = glXGetCurrentDrawable();
189 if (drawable) {
190 glXQueryDrawable(dpy, drawable, GLX_SWAP_INTERVAL_EXT, &swap);
191 glXQueryDrawable(dpy, drawable, GLX_MAX_SWAP_INTERVAL_EXT,