mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Render: Get rid of explicit new and delete
This commit is contained in:
parent
14e976a5f1
commit
da0e647346
6 changed files with 19 additions and 24 deletions
|
@ -41,6 +41,7 @@
|
|||
#include "VideoCommon/FramebufferManagerBase.h"
|
||||
#include "VideoCommon/MainBase.h"
|
||||
#include "VideoCommon/OpcodeDecoding.h"
|
||||
#include "VideoCommon/PostProcessing.h"
|
||||
#include "VideoCommon/RenderBase.h"
|
||||
#include "VideoCommon/Statistics.h"
|
||||
#include "VideoCommon/TextureCacheBase.h"
|
||||
|
@ -69,7 +70,7 @@ int Renderer::s_target_height;
|
|||
int Renderer::s_backbuffer_width;
|
||||
int Renderer::s_backbuffer_height;
|
||||
|
||||
PostProcessingShaderImplementation* Renderer::m_post_processor;
|
||||
std::unique_ptr<PostProcessingShaderImplementation> Renderer::m_post_processor;
|
||||
|
||||
TargetRectangle Renderer::target_rc;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue