Merge pull request #10422 from OatmealDome/opengl-shader-crash

VideoConfig: Add flag for whether the system supports setting object names
This commit is contained in:
JMC47 2022-01-31 01:25:46 -05:00 committed by GitHub
commit 4d1e6ff76a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 28 additions and 9 deletions

View file

@ -86,6 +86,7 @@ void VideoBackend::FillBackendInfo()
g_Config.backend_info.bSupportsCoarseDerivatives = true;
g_Config.backend_info.bSupportsTextureQueryLevels = true;
g_Config.backend_info.bSupportsLodBiasInSampler = true;
g_Config.backend_info.bSupportsSettingObjectNames = true;
// We can only check texture support once we have a device.
if (g_dx_context)