[Quake2world-dev] r634 - quake2world/trunk/src/client/renderer
jayschwa at jdolan.dyndns.org
jayschwa at jdolan.dyndns.org
Sat Oct 3 02:14:25 UTC 2009
Author: jayschwa
Date: 2009-10-03 02:14:25 +0000 (Sat, 03 Oct 2009)
New Revision: 634
Modified:
quake2world/trunk/src/client/renderer/r_context.c
Log:
Removed cap on number of multisamples. Most modern video cards can comfortably go higher than 4.
Modified: quake2world/trunk/src/client/renderer/r_context.c
===================================================================
--- quake2world/trunk/src/client/renderer/r_context.c 2009-10-03 01:49:16 UTC (rev 633)
+++ quake2world/trunk/src/client/renderer/r_context.c 2009-10-03 02:14:25 UTC (rev 634)
@@ -75,8 +75,6 @@
if(i < 0)
i = 0;
- if(i > 4)
- i = 4;
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, i ? 1 : 0);
SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, i);
More information about the Quake2World-dev
mailing list