From 086f73721d4458c25e60d224c1293e5a4e1361a6 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sun, 24 Jan 2021 19:19:43 +1100 Subject: [PATCH] [client] egl: remove accidental commit --- client/renderers/EGL/egl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/renderers/EGL/egl.c b/client/renderers/EGL/egl.c index 4fc28904..8aa41a9f 100644 --- a/client/renderers/EGL/egl.c +++ b/client/renderers/EGL/egl.c @@ -651,9 +651,9 @@ bool egl_render_startup(void * opaque, SDL_Window * window) * * ref: https://forums.developer.nvidia.com/t/egl-ext-image-dma-buf-import-broken-egl-bad-alloc-with-tons-of-free-ram/165552 */ -// if (strstr(vendor, "NVIDIA") != NULL) -// DEBUG_WARN("NVIDIA driver detected, ignoring broken DMA support"); - // else + if (strstr(vendor, "NVIDIA") != NULL) + DEBUG_WARN("NVIDIA driver detected, ignoring broken DMA support"); + else this->dmaSupport = true; } }