mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-29 23:03:18 +00:00
fix typo in LOG_INFO (#559)
fix: file name typo constant_propogation_pass.cpp fix typo from 'symbol_vitrual_addr' variable fix typo in emit_spirv_context_get_set.cpp fix typo from constant_propagation_pass.cpp in CMakeLists fix typo in these some config.cpp functions - setSliderPosition - setSliderPositionGrid - getSliderPosition - getSliderPositionGrid fix typo inside src\core\aerolib\stubs.cpp fix typo in a comment from src\core\file_format\pkg.cpp fix typo inside src\core\file_sys\fs.cpp + fs.h - NeedsCaseInsensiveSearch -> NeedsCaseInsensitiveSearch fix 2 function typos: sceAppContentAddcontEnqueueDownloadByEntitlemetId and sceAppContentAddcontMountByEntitlemetId fix typo on comment inside src\core\libraries\kernel\file_system.cpp fix typo on src\core\libraries\videoout\driver.cpp fix typo in src\core\memory.cpp fix typo from comment in src\qt_gui\game_list_utils.h fix typo in src\video_core\amdgpu\liverpool.h - window_offset_disble to window_offset_disable fix typo from comments in src\video_core\host_shaders\detile_m32x1.comp + detile_m32x2.comp - subotimal -> suboptimal fix typo from comment in src\video_core\renderer_vulkan\renderer_vulkan.cpp - dimentions -> dimensions fix typo from enum in src\common\debug.h and other files - MarkersPallete -> MarkersPalette fix last typo in src\video_core\amdgpu\pm4_opcodes.h - PremableCntl -> PreambleCntl
This commit is contained in:
parent
aae6e5be73
commit
ad8373095a
27 changed files with 61 additions and 61 deletions
|
@ -556,7 +556,7 @@ struct Liverpool {
|
|||
union {
|
||||
BitField<0, 15, s32> top_left_x;
|
||||
BitField<15, 15, s32> top_left_y;
|
||||
BitField<30, 1, s32> window_offset_disble;
|
||||
BitField<30, 1, s32> window_offset_disable;
|
||||
};
|
||||
union {
|
||||
BitField<0, 15, s32> bottom_right_x;
|
||||
|
|
|
@ -48,7 +48,7 @@ enum class PM4ItOpcode : u32 {
|
|||
EventWriteEop = 0x47,
|
||||
EventWriteEos = 0x48,
|
||||
ReleaseMem = 0x49,
|
||||
PremableCntl = 0x4A,
|
||||
PreambleCntl = 0x4A,
|
||||
DmaData = 0x50,
|
||||
ContextRegRmw = 0x51,
|
||||
AcquireMem = 0x58,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#version 450
|
||||
#extension GL_KHR_shader_subgroup_shuffle : require
|
||||
|
||||
// NOTE: Current subgroup utilization is subotimal on most GPUs, so
|
||||
// NOTE: Current subgroup utilization is suboptimal on most GPUs, so
|
||||
// it will be nice to process two tiles at once here.
|
||||
layout (local_size_x = 16, local_size_y = 1, local_size_z = 1) in;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#version 450
|
||||
|
||||
// NOTE: Current subgroup utilization is subotimal on most GPUs, so
|
||||
// NOTE: Current subgroup utilization is suboptimal on most GPUs, so
|
||||
// it will be nice to process two tiles at once here.
|
||||
layout (local_size_x = 32, local_size_y = 1, local_size_z = 1) in;
|
||||
|
||||
|
|
|
@ -258,7 +258,7 @@ void RendererVulkan::Present(Frame* frame) {
|
|||
{
|
||||
auto* profiler_ctx = instance.GetProfilerContext();
|
||||
TracyVkNamedZoneC(profiler_ctx, renderer_gpu_zone, cmdbuf, "Host frame",
|
||||
MarkersPallete::GpuMarkerColor, profiler_ctx != nullptr);
|
||||
MarkersPalette::GpuMarkerColor, profiler_ctx != nullptr);
|
||||
|
||||
const vk::Extent2D extent = swapchain.GetExtent();
|
||||
const std::array pre_barriers{
|
||||
|
@ -380,7 +380,7 @@ Frame* RendererVulkan::GetRenderFrame() {
|
|||
// Reset fence for next queue submission.
|
||||
device.resetFences(frame->present_done);
|
||||
|
||||
// If the window dimentions changed, recreate this frame
|
||||
// If the window dimensions changed, recreate this frame
|
||||
if (frame->width != window.getWidth() || frame->height != window.getHeight()) {
|
||||
RecreateFrame(frame, window.getWidth(), window.getHeight());
|
||||
}
|
||||
|
|
|
@ -145,7 +145,7 @@ void Scheduler::AllocateWorkerCommandBuffers() {
|
|||
auto* profiler_ctx = instance.GetProfilerContext();
|
||||
if (profiler_ctx) {
|
||||
static const auto scope_loc =
|
||||
GPU_SCOPE_LOCATION("Guest Frame", MarkersPallete::GpuMarkerColor);
|
||||
GPU_SCOPE_LOCATION("Guest Frame", MarkersPalette::GpuMarkerColor);
|
||||
new (profiler_scope) tracy::VkCtxScope{profiler_ctx, &scope_loc, current_cmdbuf, true};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue