mirror of https://github.com/PCSX2/pcsx2.git
GS-ogl: Remove extra DSA log.
There is already a log that checks the extension itself.
This commit is contained in:
parent
07c09f255d
commit
e233f1dded
|
@ -95,7 +95,6 @@ namespace Emulate_DSA
|
||||||
// Replace function pointer to emulate DSA behavior
|
// Replace function pointer to emulate DSA behavior
|
||||||
void Init()
|
void Init()
|
||||||
{
|
{
|
||||||
Console.Warning("DSA is not supported. Expect slower performance");
|
|
||||||
glBindTextureUnit = BindTextureUnit;
|
glBindTextureUnit = BindTextureUnit;
|
||||||
glCreateTextures = CreateTexture;
|
glCreateTextures = CreateTexture;
|
||||||
glTextureStorage2D = TextureStorage;
|
glTextureStorage2D = TextureStorage;
|
||||||
|
@ -193,7 +192,7 @@ namespace GLLoader
|
||||||
{
|
{
|
||||||
glScissorIndexed = ReplaceGL::ScissorIndexed;
|
glScissorIndexed = ReplaceGL::ScissorIndexed;
|
||||||
glViewportIndexedf = ReplaceGL::ViewportIndexedf;
|
glViewportIndexedf = ReplaceGL::ViewportIndexedf;
|
||||||
Console.Warning("GL_ARB_viewport_array is not supported! Function pointer will be replaced");
|
Console.Warning("GL_ARB_viewport_array is not supported! Function pointer will be replaced.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!GLAD_GL_ARB_texture_barrier)
|
if (!GLAD_GL_ARB_texture_barrier)
|
||||||
|
|
Loading…
Reference in New Issue