Lines Matching defs:next
12 * The above copyright notice and this permission notice (including the next
225 struct glx_config **next;
228 next = &base;
230 *next = calloc(1, size);
231 if (*next == NULL) {
237 (*next)->visualID = GLX_DONT_CARE;
238 (*next)->visualType = GLX_DONT_CARE;
239 (*next)->visualRating = GLX_NONE;
240 (*next)->transparentPixel = GLX_NONE;
241 (*next)->transparentRed = GLX_DONT_CARE;
242 (*next)->transparentGreen = GLX_DONT_CARE;
243 (*next)->transparentBlue = GLX_DONT_CARE;
244 (*next)->transparentAlpha = GLX_DONT_CARE;
245 (*next)->transparentIndex = GLX_DONT_CARE;
246 (*next)->xRenderable = GLX_DONT_CARE;
247 (*next)->fbconfigID = GLX_DONT_CARE;
248 (*next)->swapMethod = GLX_SWAP_UNDEFINED_OML;
249 (*next)->bindToTextureRgb = GLX_DONT_CARE;
250 (*next)->bindToTextureRgba = GLX_DONT_CARE;
251 (*next)->bindToMipmapTexture = GLX_DONT_CARE;
252 (*next)->bindToTextureTargets = GLX_DONT_CARE;
253 (*next)->yInverted = GLX_DONT_CARE;
254 (*next)->sRGBCapable = GL_FALSE;
256 next = &((*next)->next);
266 struct glx_config *const next = configs->next;
269 configs = next;
288 for (c = configs; c != NULL; c = c->next)
300 for (c = configs; c != NULL; c = c->next)