Skip to content

Commit

Permalink
Revert GPU hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
DiscoStarslayer committed Nov 13, 2023
1 parent ed5899f commit 689542f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pcsx2/GS/Renderers/OpenGL/GSDeviceOGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -678,12 +678,12 @@ bool GSDeviceOGL::CheckFeatures(bool& buggy_pbo)
return false;
}

// if (!GLAD_GL_VERSION_4_3 && !GLAD_GL_ARB_copy_image && !GLAD_GL_EXT_copy_image)
// {
// Host::ReportFormattedErrorAsync(
// "GS", "GL_ARB_copy_image is not supported, this is required for the OpenGL renderer.");
// return false;
// }
if (!GLAD_GL_VERSION_4_3 && !GLAD_GL_ARB_copy_image && !GLAD_GL_EXT_copy_image)
{
Host::ReportFormattedErrorAsync(
"GS", "GL_ARB_copy_image is not supported, this is required for the OpenGL renderer.");
return false;
}

if (!GLAD_GL_ARB_viewport_array)
{
Expand Down
2 changes: 1 addition & 1 deletion pcsx2/MTGS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ void MTGS::PostVsyncStart(bool registers_written)
s_VsyncSignalListener.store(true, std::memory_order_release);
//Console.WriteLn( Color_Blue, "(EEcore Sleep) Vsync\t\tringpos=0x%06x, writepos=0x%06x", m_ReadPos.load(), m_WritePos.load() );

// s_sem_Vsync.Wait();
s_sem_Vsync.Wait();
}

void MTGS::InitAndReadFIFO(u8* mem, u32 qwc)
Expand Down

0 comments on commit 689542f

Please sign in to comment.