summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libANGLE/Debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/libANGLE/Debug.h')
-rw-r--r--src/3rdparty/angle/src/libANGLE/Debug.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/3rdparty/angle/src/libANGLE/Debug.h b/src/3rdparty/angle/src/libANGLE/Debug.h
index f545b815e4..2c15c25e9a 100644
--- a/src/3rdparty/angle/src/libANGLE/Debug.h
+++ b/src/3rdparty/angle/src/libANGLE/Debug.h
@@ -31,6 +31,7 @@ class Debug : angle::NonCopyable
{
public:
Debug();
+ ~Debug();
void setMaxLoggedMessages(GLuint maxLoggedMessages);
@@ -91,6 +92,10 @@ class Debug : angle::NonCopyable
struct Control
{
+ Control();
+ ~Control();
+ Control(const Control &other);
+
GLenum source;
GLenum type;
GLenum severity;
@@ -100,6 +105,10 @@ class Debug : angle::NonCopyable
struct Group
{
+ Group();
+ ~Group();
+ Group(const Group &other);
+
GLenum source;
GLuint id;
std::string message;