Lines Matching defs:input
30 * glsl_test app. It accepts either GLSL or high-level IR as input,
151 { "input-ir", no_argument, &input_format_ir, 1 },
152 { "input-glsl", no_argument, &input_format_ir, 0 },
167 printf(" --input-ir: input format is IR\n");
168 printf(" --input-glsl: input format is GLSL (the default)\n");
186 string input = read_stdin_to_eof();
194 _mesa_glsl_read_ir(state, shader->ir, input.c_str(), true);
196 shader->Source = input.c_str();