Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #819 from lioncash/preproc
OGL: Removed some unnecessary preprocessor directives from Render.cpp.
  • Loading branch information
lioncash committed Aug 17, 2014
2 parents ac0ac18 + f0743e2 commit 6bfe371
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions Source/Core/VideoBackends/OGL/Render.cpp
Expand Up @@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.

#include <algorithm>
#include <cinttypes>
#include <cmath>
#include <cstdio>
Expand Down Expand Up @@ -48,16 +49,6 @@
#include "VideoCommon/VertexShaderManager.h"
#include "VideoCommon/VideoConfig.h"

#if defined(HAVE_WX) && HAVE_WX
#include "DolphinWX/WxUtils.h"
#endif

#ifdef _WIN32
#include <mmsystem.h>
#endif

#ifdef _WIN32
#endif
#if defined _WIN32 || defined HAVE_LIBAV
#include "VideoCommon/AVIDump.h"
#endif
Expand Down Expand Up @@ -100,10 +91,6 @@ static u32 s_blendMode;

static bool s_vsync;

#if defined(HAVE_WX) && HAVE_WX
static std::thread scrshotThread;
#endif

// EFB cache related
static const u32 EFB_CACHE_RECT_SIZE = 64; // Cache 64x64 blocks.
static const u32 EFB_CACHE_WIDTH = (EFB_WIDTH + EFB_CACHE_RECT_SIZE - 1) / EFB_CACHE_RECT_SIZE; // round up
Expand Down Expand Up @@ -620,11 +607,6 @@ Renderer::Renderer()

Renderer::~Renderer()
{

#if defined(HAVE_WX) && HAVE_WX
if (scrshotThread.joinable())
scrshotThread.join();
#endif
}

void Renderer::Shutdown()
Expand Down

0 comments on commit 6bfe371

Please sign in to comment.