r300g/swtcl: update PSC only once when a shader is changed
[mesa.git] / src / gallium / drivers / r300 / r300_debug.c
1 /*
2 * Copyright 2009 Nicolai Haehnle <nhaehnle@gmail.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #include "r300_context.h"
24
25 #include <stdio.h>
26
27 struct debug_option {
28 const char * name;
29 unsigned flag;
30 const char * description;
31 };
32
33 static struct debug_option debug_options[] = {
34 { "help", DBG_HELP, "Helpful meta-information about the driver" },
35 { "fp", DBG_FP, "Fragment program handling (for debugging)" },
36 { "vp", DBG_VP, "Vertex program handling (for debugging)" },
37 { "cs", DBG_CS, "Command submissions (for debugging)" },
38 { "draw", DBG_DRAW, "Draw and emit (for debugging)" },
39 { "tex", DBG_TEX, "Textures (for debugging)" },
40 { "texalloc", DBG_TEXALLOC, "Texture allocation (for debugging)" },
41 { "fall", DBG_FALL, "Fallbacks (for debugging)" },
42 { "rs", DBG_RS, "Rasterizer (for debugging)" },
43 { "fb", DBG_FB, "Framebuffer (for debugging)" },
44 { "anisohq", DBG_ANISOHQ, "High quality anisotropic filtering (for benchmarking)" },
45 { "notiling", DBG_NO_TILING, "Disable tiling (for benchmarking)" },
46 { "noimmd", DBG_NO_IMMD, "Disable immediate mode (for benchmarking)" },
47 { "stats", DBG_STATS, "Gather statistics (for lulz)" },
48
49 { "all", ~0, "Convenience option that enables all debug flags" },
50
51 /* must be last */
52 { 0, 0, 0 }
53 };
54
55 void r300_init_debug(struct r300_screen * screen)
56 {
57 const char * options = debug_get_option("RADEON_DEBUG", 0);
58 boolean printhint = FALSE;
59 size_t length;
60 struct debug_option * opt;
61
62 if (options) {
63 while(*options) {
64 if (*options == ' ' || *options == ',') {
65 options++;
66 continue;
67 }
68
69 length = strcspn(options, " ,");
70
71 for(opt = debug_options; opt->name; ++opt) {
72 if (!strncmp(options, opt->name, length)) {
73 screen->debug |= opt->flag;
74 break;
75 }
76 }
77
78 if (!opt->name) {
79 fprintf(stderr, "Unknown debug option: %s\n", options);
80 printhint = TRUE;
81 }
82
83 options += length;
84 }
85
86 if (!screen->debug)
87 printhint = TRUE;
88 }
89
90 if (printhint || screen->debug & DBG_HELP) {
91 fprintf(stderr, "You can enable debug output by setting "
92 "the RADEON_DEBUG environment variable\n"
93 "to a comma-separated list of debug options. "
94 "Available options are:\n");
95
96 for(opt = debug_options; opt->name; ++opt) {
97 fprintf(stderr, " %s: %s\n", opt->name, opt->description);
98 }
99 }
100 }