X-Git-Url: https://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fsdl2%2Fg_system.pas;h=29a81b01e0a38102289a515cf5500aa2156530ef;hp=e4bd07046a8576bbecdc7763b13cbe282295e062;hb=939a343cdc93545211b37de24e9d406bf54dcaf0;hpb=1c7e7630a308e9c9dc03f1e6f3483f9ce8f52618 diff --git a/src/game/sdl2/g_system.pas b/src/game/sdl2/g_system.pas index e4bd070..29a81b0 100644 --- a/src/game/sdl2/g_system.pas +++ b/src/game/sdl2/g_system.pas @@ -158,9 +158,9 @@ implementation begin {$IFDEF NOGL_INIT} nogl_Init; - if (not nogl_ExtensionSupported('GL_OES_framebuffer_object')) and glRenderToFBO then + if glRenderToFBO and (not nogl_ExtensionSupported('GL_OES_framebuffer_object')) then {$ELSE} - if (not Load_GL_ARB_framebuffer_object()) and glRenderToFBO then + if glRenderToFBO and (not Load_GL_ARB_framebuffer_object()) then {$ENDIF} begin e_LogWriteln('SDL: no framebuffer object support detected');