Lines Matching defs:next
12 * The above copyright notice and this permission notice (including the next
228 struct glx_config **next;
231 next = &base;
233 *next = (struct glx_config *) malloc(size);
234 if (*next == NULL) {
240 (void) memset(*next, 0, size);
241 (*next)->visualID = GLX_DONT_CARE;
242 (*next)->visualType = GLX_DONT_CARE;
243 (*next)->visualRating = GLX_NONE;
244 (*next)->transparentPixel = GLX_NONE;
245 (*next)->transparentRed = GLX_DONT_CARE;
246 (*next)->transparentGreen = GLX_DONT_CARE;
247 (*next)->transparentBlue = GLX_DONT_CARE;
248 (*next)->transparentAlpha = GLX_DONT_CARE;
249 (*next)->transparentIndex = GLX_DONT_CARE;
250 (*next)->xRenderable = GLX_DONT_CARE;
251 (*next)->fbconfigID = GLX_DONT_CARE;
252 (*next)->swapMethod = GLX_SWAP_UNDEFINED_OML;
253 (*next)->bindToTextureRgb = GLX_DONT_CARE;
254 (*next)->bindToTextureRgba = GLX_DONT_CARE;
255 (*next)->bindToMipmapTexture = GLX_DONT_CARE;
256 (*next)->bindToTextureTargets = GLX_DONT_CARE;
257 (*next)->yInverted = GLX_DONT_CARE;
258 (*next)->sRGBCapable = GLX_DONT_CARE;
260 next = &((*next)->next);
270 struct glx_config *const next = configs->next;
273 configs = next;
292 for (c = configs; c != NULL; c = c->next)
304 for (c = configs; c != NULL; c = c->next)