Home | History | Annotate | Download | only in main

Lines Matching full:env_const

718    const char *env_const = _mesa_getenv("MESA_EXTENSION_OVERRIDE");
724 if (env_const == NULL) {
731 extra_exts = calloc(ALIGN(strlen(env_const) + 2, 4), sizeof(char));
733 /* Copy env_const because strtok() is destructive. */
734 env = strdup(env_const);