Disable steam deck support at the moment because the driver is broken (ignores qp, capture tearing)

This commit is contained in:
dec05eba
2024-08-20 15:28:37 +02:00
parent faf6ba69a0
commit 45a10baf5f
3 changed files with 15 additions and 0 deletions

View File

@@ -377,6 +377,7 @@ bool gl_get_gpu_info(gsr_egl *egl, gsr_gpu_info *info) {
const unsigned char *gl_renderer = egl->glGetString(GL_RENDERER);
info->gpu_version = 0;
info->is_known_broken_driver = false;
if(!gl_vendor) {
fprintf(stderr, "gsr error: failed to get gpu vendor\n");
@@ -409,6 +410,7 @@ bool gl_get_gpu_info(gsr_egl *egl, gsr_gpu_info *info) {
if(gl_renderer) {
if(info->vendor == GSR_GPU_VENDOR_NVIDIA)
sscanf((const char*)gl_renderer, "%*s %*s %*s %d", &info->gpu_version);
info->is_known_broken_driver = strstr((const char*)gl_renderer, "vangogh") != NULL;
}
end: