mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-03 01:38:36 +00:00
More debug text fixes
Also a few small non-debug text changes.
This commit is contained in:
parent
5102e76a7f
commit
3c6742f66f
14 changed files with 43 additions and 7 deletions
|
@ -116,15 +116,17 @@ void GFXDebuggerPanel::CreateGUIControls()
|
|||
m_pButtonClearTextureCache->Bind(wxEVT_BUTTON, &GFXDebuggerPanel::OnClearTextureCacheButton,
|
||||
this);
|
||||
|
||||
const wxString clear_vertex_shaders = _("Clear Vertex Shaders");
|
||||
m_pButtonClearVertexShaderCache =
|
||||
new wxButton(this, wxID_ANY, _("Clear V Shaders"), wxDefaultPosition, wxDefaultSize, 0,
|
||||
wxDefaultValidator, _("Clear V Shaders"));
|
||||
new wxButton(this, wxID_ANY, clear_vertex_shaders, wxDefaultPosition, wxDefaultSize, 0,
|
||||
wxDefaultValidator, clear_vertex_shaders);
|
||||
m_pButtonClearVertexShaderCache->Bind(wxEVT_BUTTON,
|
||||
&GFXDebuggerPanel::OnClearVertexShaderCacheButton, this);
|
||||
|
||||
const wxString clear_pixel_shaders = _("Clear Pixel Shaders");
|
||||
m_pButtonClearPixelShaderCache =
|
||||
new wxButton(this, wxID_ANY, _("Clear P Shaders"), wxDefaultPosition, wxDefaultSize, 0,
|
||||
wxDefaultValidator, _("Clear P Shaders"));
|
||||
new wxButton(this, wxID_ANY, clear_pixel_shaders, wxDefaultPosition, wxDefaultSize, 0,
|
||||
wxDefaultValidator, clear_pixel_shaders);
|
||||
m_pButtonClearPixelShaderCache->Bind(wxEVT_BUTTON,
|
||||
&GFXDebuggerPanel::OnClearPixelShaderCacheButton, this);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue