diff options
author | Brian Paul <[email protected]> | 2016-02-08 09:29:38 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-02-08 09:29:38 -0700 |
commit | 5fdbfb8d6fa2e1521cf2f60e80ac571a37ab22a2 (patch) | |
tree | 06a73b964b42d5f35b77eb07ab3cf4fcd43636e8 /src/mesa/state_tracker/st_manager.c | |
parent | 6691ba1fe8e54c6ce5c6b4424c8096a351fda932 (diff) |
mesa: move GL_ARB_debug_output code into new debug_output.c file
The errors.c file had grown quite large so split off this extension
code into its own file. This involved making a handful of functions
non-static.
Acked-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_manager.c')
-rw-r--r-- | src/mesa/state_tracker/st_manager.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_manager.c b/src/mesa/state_tracker/st_manager.c index 385e26b946e..c16fa0b0c72 100644 --- a/src/mesa/state_tracker/st_manager.c +++ b/src/mesa/state_tracker/st_manager.c @@ -28,6 +28,7 @@ #include "main/mtypes.h" #include "main/extensions.h" #include "main/context.h" +#include "main/debug_output.h" #include "main/texobj.h" #include "main/teximage.h" #include "main/texstate.h" |