Lines Matching refs:printf

45     printf("\n");  in Help()
46 printf("gshCompile\n"); in Help()
47 printf("\n"); in Help()
48printf("Usage: gshCompile -v vs_file -p ps_file -g gs_file -o output_file -force_uniformblock\n"); in Help()
49 printf(" gshCompile -c cs_file -o output_file -force_uniformblock\n"); in Help()
50 printf(" gshCompile -version\n\n"); in Help()
51 printf("-v : Vertex Shader file\n"); in Help()
52 printf("-p : Pixel Shader file\n"); in Help()
53 printf("-g : Geometry Shader file\n"); in Help()
54 printf("-c : Compute Shader file\n"); in Help()
55 printf("-so : Stream Out Varings file\n"); in Help()
56 printf("-o : Output file name\n"); in Help()
57 printf("-oa : Existing output file name to append shaders.\n"); in Help()
58 printf("-oh : Output header file name to write shaders as code.\n"); in Help()
59 printf("-force_uniformblock : Force uniform block usage\n"); in Help()
60printf("-no_limit_array_syms : Create symbols all elements of uniform arrays (not just the firs… in Help()
61 printf("-endianbugfix : Performs 8-in-32 byte swap on the output texture\n"); in Help()
62 printf(" data. This is a bug workaround for the prototype\n"); in Help()
63 printf(" hardware.\n"); in Help()
64 printf("-align : Adds alignment padding blocks between the header\n"); in Help()
65 printf(" and the image. The amount of padding depends \n"); in Help()
66 printf(" upon hardware requirements.\n"); in Help()
67 printf("-h : Show this help message\n"); in Help()
68 printf("-d : Dump Debug Information to a file\n"); in Help()
69 printf(" Dump files:\n"); in Help()
70 printf(" <output_file>_vs.dmp\n"); in Help()
71 printf(" <output_file>_gs.dmp\n"); in Help()
72 printf(" <output_file>_ps.dmp\n"); in Help()
73 printf("-istats : Dump shader instruction statistics to a file\n"); in Help()
74printf(" File names: <output_file>_vs.stat, <output_file>_ps.stat, etc.\n… in Help()
75 printf("-btstats : Dump build time statistics to a file\n"); in Help()
76 printf("-btstats+ : Append build time statistics to a file\n"); in Help()
77 printf(" File name: <output_file>.bt\n"); in Help()
78 printf("-nospark : Omit Spark debug information. Without this option a\n"); in Help()
79 printf(" 16 byte hash is appended to each shader, and a debug\n"); in Help()
80 printf(" information file is written to directory\n"); in Help()
81 printf(" $(LOCALAPPDATA)\\Temp\\Nintendo\\Cafe\\ShaderSymbols\n"); in Help()
82 printf(" or the directory specified via -sparkdir option.\n"); in Help()
83 printf("-sparkdir path : Override the default Spark debug information\n"); in Help()
84 printf(" directory.\n"); in Help()
85 printf("-t essl : Select experimental OpenGL ES mode.\n"); in Help()
86 printf("-O<options> : Perform additional optimizations:\n"); in Help()
87 printf(" <options> is a comma separated list of optimizations to enable:\n"); in Help()
90 printf(" %-12s : %s\n", oflagdef[i].name, oflagdef[i].help); in Help()
93 printf(" Any of the optimizations may be disabled by prefixing them with ! or no-\n"); in Help()
94 printf(" For example:\n"); in Help()
95 printf(" -Oall,no-fastmath\n"); in Help()
96 printf(" will enable all optimizations except fastmath.\n"); in Help()
97 printf(" Just plain -O is equivalent to -Oall.\n"); in Help()
98 printf("\n"); in Help()
106 printf("Failed to load DLL %ws. Exiting.", LIB_DLL_SHADERUTILS); in LoadDLLs()
114 printf("Failed to load DLL %ws. Exiting.", LIB_DLL_GFD); in LoadDLLs()
648 printf("gshCompile compiled on %s\n", __DATE__); in PrintVersion()
650 printf("shaderUtils version: 0x%08lX\n", (unsigned long)abiVersion); in PrintVersion()
652 printf("shaderUtils version unknown\n"); in PrintVersion()
694 printf("Error: Unsupported GPU version\n"); in Initialize()
702 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
713 printf("Problem opening file \"%s\".\n", argv[count + 1]); in Initialize()
723 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
734 printf("Problem opening file \"%s\".\n", argv[count + 1]); in Initialize()
744 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
755 printf("Problem opening file \"%s\".\n", argv[count + 1]); in Initialize()
765 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
776 printf("Problem opening file \"%s\".\n", argv[count + 1]); in Initialize()
786 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
798 printf("Problem opening file \"%s\".\n", argv[count + 1]); in Initialize()
805 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
877 printf("Unsupported shader language type specified\n"); in Initialize()
884 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
931 printf("Missing parameter argument %s <arg>\n", argv[count]); in Initialize()
965 printf("Unrecognized command line parameter \"%s\". Exiting.", argv[count]); in Initialize()