mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Kill off some usages of c_str.
Also changes some function params, but this is ok. Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
This commit is contained in:
parent
dccc6d8b47
commit
a82675b7d5
170 changed files with 812 additions and 704 deletions
|
@ -4,6 +4,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
class GFXDebuggerBase
|
||||
{
|
||||
public:
|
||||
|
@ -13,19 +15,20 @@ public:
|
|||
virtual void OnPause() {};
|
||||
virtual void OnContinue() {};
|
||||
|
||||
void DumpPixelShader(const char* path);
|
||||
void DumpVertexShader(const char* path);
|
||||
void DumpPixelShaderConstants(const char* path);
|
||||
void DumpVertexShaderConstants(const char* path);
|
||||
void DumpTextures(const char* path);
|
||||
void DumpFrameBuffer(const char* path);
|
||||
void DumpGeometry(const char* path);
|
||||
void DumpVertexDecl(const char* path);
|
||||
void DumpMatrices(const char* path);
|
||||
void DumpStats(const char* path);
|
||||
void DumpPixelShader(const std::string& path);
|
||||
void DumpVertexShader(const std::string& path);
|
||||
void DumpPixelShaderConstants(const std::string& path);
|
||||
void DumpVertexShaderConstants(const std::string& path);
|
||||
void DumpTextures(const std::string& path);
|
||||
void DumpFrameBuffer(const std::string& path);
|
||||
void DumpGeometry(const std::string& path);
|
||||
void DumpVertexDecl(const std::string& path);
|
||||
void DumpMatrices(const std::string& path);
|
||||
void DumpStats(const std::string& path);
|
||||
};
|
||||
|
||||
enum PauseEvent {
|
||||
enum PauseEvent
|
||||
{
|
||||
NOT_PAUSE = 0,
|
||||
NEXT_FRAME = 1<<0,
|
||||
NEXT_FLUSH = 1<<1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue