Add the configuration dialog for post processing configuration options.

Only enables the config button when the shader options available to it
This commit is contained in:
Ryan Houdek
2014-07-29 12:14:25 -05:00
parent 32fe37d834
commit 287758f15d
7 changed files with 454 additions and 3 deletions

View File

@ -1,9 +1,14 @@
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <cstddef>
#include <map>
#include <string>
#include <vector>
#include <wx/button.h>
#include <wx/checkbox.h>
#include <wx/choice.h>
#include <wx/defs.h>
@ -22,7 +27,9 @@
#include "Core/ConfigManager.h"
#include "Core/Core.h"
#include "Core/CoreParameter.h"
#include "DolphinWX/PostProcessingConfigDiag.h"
#include "DolphinWX/WxUtils.h"
#include "VideoCommon/PostProcessing.h"
#include "VideoCommon/VideoBackendBase.h"
#include "VideoCommon/VideoConfig.h"
@ -201,6 +208,8 @@ protected:
wxStaticText* text_aamode;
SettingChoice* choice_aamode;
wxButton* button_config_pp;
SettingCheckBox* borderless_fullscreen;
SettingRadioButton* efbcopy_texture;