mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
added option to use XFB in GL, but XFB support still needs work. modified viewport to include scissor offset.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@879 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
70eebcb3a3
commit
bbbe898839
17 changed files with 416 additions and 100 deletions
|
@ -65,6 +65,7 @@ class ConfigDialog : public wxDialog
|
|||
void OverlayCheck(wxCommandEvent& event);
|
||||
void ShowShaderErrorsCheck(wxCommandEvent& event);
|
||||
void TexFmtOverlayChange(wxCommandEvent& event);
|
||||
void UseXFBChange(wxCommandEvent& event);
|
||||
void DumpTexturesChange(wxCommandEvent& event);
|
||||
void TexturePathChange(wxFileDirPickerEvent& event);
|
||||
void DllAbout(wxCommandEvent& event);
|
||||
|
@ -76,6 +77,7 @@ class ConfigDialog : public wxDialog
|
|||
wxButton *m_OK;
|
||||
wxDirPickerCtrl *m_TexturePath;
|
||||
wxCheckBox *m_DumpTextures;
|
||||
wxCheckBox *m_UseXFB;
|
||||
wxCheckBox *m_TexFmtCenter;
|
||||
wxCheckBox *m_TexFmtOverlay;
|
||||
wxCheckBox *m_Statistics;
|
||||
|
@ -105,6 +107,7 @@ class ConfigDialog : public wxDialog
|
|||
ID_OK,
|
||||
ID_TEXTUREPATH,
|
||||
ID_SHADERERRORS,
|
||||
ID_USEXFB,
|
||||
ID_TEXFMTCENTER,
|
||||
ID_TEXFMTOVERLAY,
|
||||
ID_SHOWFPS,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue