summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-02-18 23:36:34 +0100
committerbunnei <bunneidev@gmail.com>2015-02-18 23:36:34 +0100
commitec8f2210e3d437b93313f2565170fde393fcaae5 (patch)
tree26ac08576ebd4b00e9ed8224fada208288c555de /src
parentMerge pull request #562 from neobrain/pica_progress3 (diff)
parentcore/video_core: Use in-place construction where possible (diff)
downloadyuzu-ec8f2210e3d437b93313f2565170fde393fcaae5.tar
yuzu-ec8f2210e3d437b93313f2565170fde393fcaae5.tar.gz
yuzu-ec8f2210e3d437b93313f2565170fde393fcaae5.tar.bz2
yuzu-ec8f2210e3d437b93313f2565170fde393fcaae5.tar.lz
yuzu-ec8f2210e3d437b93313f2565170fde393fcaae5.tar.xz
yuzu-ec8f2210e3d437b93313f2565170fde393fcaae5.tar.zst
yuzu-ec8f2210e3d437b93313f2565170fde393fcaae5.zip
Diffstat (limited to '')
-rw-r--r--src/core/core_timing.cpp2
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp4
-rw-r--r--src/video_core/gpu_debugger.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 604875160..cabe2a074 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -129,7 +129,7 @@ static void FreeTsEvent(Event* event) {
}
int RegisterEvent(const char* name, TimedCallback callback) {
- event_types.push_back(EventType(callback, name));
+ event_types.emplace_back(callback, name);
return (int)event_types.size() - 1;
}
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp
index 8c4ec1044..0beb72e6b 100644
--- a/src/video_core/debug_utils/debug_utils.cpp
+++ b/src/video_core/debug_utils/debug_utils.cpp
@@ -189,7 +189,7 @@ void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data
);
if (it == output_info_table.end()) {
- output_info_table.push_back({});
+ output_info_table.emplace_back();
output_info_table.back().type = type;
output_info_table.back().component_mask = component_mask;
output_info_table.back().id = i;
@@ -285,7 +285,7 @@ void OnPicaRegWrite(u32 id, u32 value)
if (!is_pica_tracing)
return;
- pica_trace->writes.push_back({id, value});
+ pica_trace->writes.emplace_back(id, value);
}
std::unique_ptr<PicaTrace> FinishPicaTracing()
diff --git a/src/video_core/gpu_debugger.h b/src/video_core/gpu_debugger.h
index 03641d93b..48ac269e3 100644
--- a/src/video_core/gpu_debugger.h
+++ b/src/video_core/gpu_debugger.h
@@ -58,8 +58,8 @@ public:
if (observers.empty())
return;
- gx_command_history.push_back(GSP_GPU::Command());
- GSP_GPU::Command& cmd = gx_command_history[gx_command_history.size()-1];
+ gx_command_history.emplace_back();
+ GSP_GPU::Command& cmd = gx_command_history.back();
memcpy(&cmd, command_data, sizeof(GSP_GPU::Command));