mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
GL plugin now dumps textures in correct format, you can enable texture dumping in the settings but you have to set the directory in the ini file
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@130 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -27,6 +27,9 @@
|
||||
#include <wx/checkbox.h>
|
||||
#include <wx/notebook.h>
|
||||
#include <wx/panel.h>
|
||||
#include <wx/dirctrl.h>
|
||||
#include <wx/filepicker.h>
|
||||
#include <wx/gdicmn.h>
|
||||
|
||||
|
||||
#undef ConfigDialog_STYLE
|
||||
@ -42,7 +45,7 @@ class ConfigDialog : public wxDialog
|
||||
ConfigDialog(wxWindow *parent, wxWindowID id = 1, const wxString &title = wxT("Opengl Plugin Configuration"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = ConfigDialog_STYLE);
|
||||
virtual ~ConfigDialog();
|
||||
void ConfigDialogActivate(wxActivateEvent& event);
|
||||
void BrowseClick(wxCommandEvent& event);
|
||||
void BrowseChange( wxFileDirPickerEvent& event );
|
||||
void OKClick(wxCommandEvent& event);
|
||||
void AddFSReso(char *reso);
|
||||
void AddWindowReso(char *reso);
|
||||
@ -58,7 +61,7 @@ class ConfigDialog : public wxDialog
|
||||
wxButton *m_Apply;
|
||||
wxButton *m_OK;
|
||||
wxTextCtrl *m_TexturePath;
|
||||
wxButton *m_Browse;
|
||||
wxDirPickerCtrl *m_Browse;
|
||||
wxCheckBox *m_ShaderErrors;
|
||||
wxCheckBox *m_Statistics;
|
||||
wxCheckBox *m_DumpTextures;
|
||||
|
Reference in New Issue
Block a user