{
inst->Saturate = GL_FALSE;
-
/* The only possible suffix element is the saturation selector from
* ARB_fragment_program.
*/
}
}
-
/* It is an error for all of the suffix string not to be consumed.
*/
return suffix[0] == '\0';
*/
option += 4;
-
if (strncmp(option, "fog_", 4) == 0) {
option += 4;
* program options will fail to load.
*/
- if (strcmp(option, "nicest") == 0 && state->option.PrecisionHint != OPTION_FASTEST) {
+ if (strcmp(option, "nicest") == 0 &&
+ state->option.PrecisionHint != OPTION_FASTEST) {
state->option.PrecisionHint = OPTION_NICEST;
return 1;
- } else if (strcmp(option, "fastest") == 0 && state->option.PrecisionHint != OPTION_NICEST) {
+ } else if (strcmp(option, "fastest") == 0 &&
+ state->option.PrecisionHint != OPTION_NICEST) {
state->option.PrecisionHint = OPTION_FASTEST;
return 1;
}