freedreno/ir3: dump nocp option
No longer used, or even possible, with NIR frontend. Signed-off-by: Rob Clark <robclark@freedesktop.org>
This commit is contained in:
@@ -69,7 +69,6 @@ static const struct debug_named_value debug_options[] = {
|
||||
{"nobin", FD_DBG_NOBIN, "Disable hw binning"},
|
||||
{"optmsgs", FD_DBG_OPTMSGS,"Enable optimizer debug messages"},
|
||||
{"glsl120", FD_DBG_GLSL120,"Temporary flag to force GLSL 120 (rather than 130) on a3xx+"},
|
||||
{"nocp", FD_DBG_NOCP, "Disable copy-propagation"},
|
||||
DEBUG_NAMED_VALUE_END
|
||||
};
|
||||
|
||||
|
||||
@@ -64,7 +64,6 @@ enum adreno_stencil_op fd_stencil_op(unsigned op);
|
||||
#define FD_DBG_NOBIN 0x0100
|
||||
#define FD_DBG_OPTMSGS 0x0400
|
||||
#define FD_DBG_GLSL120 0x1000
|
||||
#define FD_DBG_NOCP 0x2000
|
||||
|
||||
extern int fd_mesa_debug;
|
||||
extern bool fd_binning_enabled;
|
||||
|
||||
@@ -280,12 +280,6 @@ int main(int argc, char **argv)
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!strcmp(argv[n], "--nocp")) {
|
||||
fd_mesa_debug |= FD_DBG_NOCP;
|
||||
n++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!strcmp(argv[n], "--help")) {
|
||||
print_usage();
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user