summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
diff options
context:
space:
mode:
authorMathew Maidment <mathew1800@gmail.com>2015-12-21 01:57:37 -0500
committerMathew Maidment <mathew1800@gmail.com>2015-12-21 01:57:37 -0500
commit365a326798853676bad3c83274744000a47cfa41 (patch)
treeacf56e852bc06711f07382821f9d115fea060b00 /Source/Core/VideoBackends/Software/SWOGLWindow.cpp
parent1fbab188adafaf46e252837153cbfa3242a8d3c7 (diff)
parentf2951828335654d0993ead998b3c547f903501dd (diff)
Merge pull request #3369 from lioncash/unique
VideoBackends: Simplify initialization and deinitialization of resources
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWOGLWindow.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWOGLWindow.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/Software/SWOGLWindow.cpp b/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
index be4ee68e32..cd411610ed 100644
--- a/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
+++ b/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include <memory>
+
#include "Common/GL/GLInterfaceBase.h"
#include "Common/GL/GLUtil.h"
#include "Common/Logging/Log.h"
@@ -25,10 +27,9 @@ void SWOGLWindow::Init(void *window_handle)
void SWOGLWindow::Shutdown()
{
GLInterface->Shutdown();
- delete GLInterface;
- GLInterface = nullptr;
+ GLInterface.reset();
- SWOGLWindow::s_instance.release();
+ s_instance.reset();
}
void SWOGLWindow::Prepare()