mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 03:46:42 +01:00
Check for sampler object support, just to be nice.
This commit is contained in:
parent
f2647a1216
commit
55c2a01744
@ -248,6 +248,12 @@ Renderer::Renderer()
|
|||||||
bSuccess = false;
|
bSuccess = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!GLEW_ARB_sampler_objects)
|
||||||
|
{
|
||||||
|
ERROR_LOG(VIDEO, "GPU: OGL ERROR: Need GL_ARB_sampler_objects.");
|
||||||
|
bSuccess = false;
|
||||||
|
}
|
||||||
|
|
||||||
s_bHaveCoverageMSAA = GLEW_NV_framebuffer_multisample_coverage;
|
s_bHaveCoverageMSAA = GLEW_NV_framebuffer_multisample_coverage;
|
||||||
|
|
||||||
g_Config.backend_info.bSupportsDualSourceBlend = GLEW_ARB_blend_func_extended;
|
g_Config.backend_info.bSupportsDualSourceBlend = GLEW_ARB_blend_func_extended;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user