mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
mesa/main: remove unused verbose-flags
Most of these flags are no longer used, so let's remove them.
This commit is contained in:
parent
61b5986c58
commit
7e06dc274f
2 changed files with 5 additions and 19 deletions
|
|
@ -101,17 +101,11 @@ set_verbose_flags(const char *str)
|
|||
GLbitfield flag;
|
||||
};
|
||||
static const struct option opts[] = {
|
||||
{ "varray", VERBOSE_VARRAY },
|
||||
{ "tex", VERBOSE_TEXTURE },
|
||||
{ "mat", VERBOSE_MATERIAL },
|
||||
{ "pipe", VERBOSE_PIPELINE },
|
||||
{ "driver", VERBOSE_DRIVER },
|
||||
{ "state", VERBOSE_STATE },
|
||||
{ "api", VERBOSE_API },
|
||||
{ "list", VERBOSE_DISPLAY_LIST },
|
||||
{ "lighting", VERBOSE_LIGHTING },
|
||||
{ "disassem", VERBOSE_DISASSEM },
|
||||
{ "swap", VERBOSE_SWAPBUFFERS }
|
||||
};
|
||||
GLuint i;
|
||||
|
||||
|
|
|
|||
|
|
@ -3670,19 +3670,11 @@ extern int MESA_DEBUG_FLAGS;
|
|||
/** The MESA_VERBOSE var is a bitmask of these flags */
|
||||
enum _verbose
|
||||
{
|
||||
VERBOSE_VARRAY = 0x0001,
|
||||
VERBOSE_TEXTURE = 0x0002,
|
||||
VERBOSE_MATERIAL = 0x0004,
|
||||
VERBOSE_PIPELINE = 0x0008,
|
||||
VERBOSE_DRIVER = 0x0010,
|
||||
VERBOSE_STATE = 0x0020,
|
||||
VERBOSE_API = 0x0040,
|
||||
VERBOSE_DISPLAY_LIST = 0x0100,
|
||||
VERBOSE_LIGHTING = 0x0200,
|
||||
VERBOSE_PRIMS = 0x0400,
|
||||
VERBOSE_VERTS = 0x0800,
|
||||
VERBOSE_DISASSEM = 0x1000,
|
||||
VERBOSE_SWAPBUFFERS = 0x4000
|
||||
VERBOSE_TEXTURE = 0x0001,
|
||||
VERBOSE_MATERIAL = 0x0002,
|
||||
VERBOSE_STATE = 0x0004,
|
||||
VERBOSE_API = 0x0008,
|
||||
VERBOSE_DISPLAY_LIST = 0x0010,
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue