Skip to content

Commit

Permalink
Merge pull request #138 from Calinou/multisample-allow-8x
Browse files Browse the repository at this point in the history
Allow 8× multisampling in traditional (non-framebuffer) MSAA
  • Loading branch information
ec- authored Jan 21, 2022
2 parents 0051710 + e03ebfc commit 10bae2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/renderer2/tr_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ void R_Register( void )
r_texturebits = ri.Cvar_Get( "r_texturebits", "0", CVAR_ARCHIVE | CVAR_LATCH );
r_stencilbits = ri.Cvar_Get( "r_stencilbits", "8", CVAR_ARCHIVE | CVAR_LATCH );
r_ext_multisample = ri.Cvar_Get( "r_ext_multisample", "0", CVAR_ARCHIVE | CVAR_LATCH );
ri.Cvar_CheckRange( r_ext_multisample, "0", "4", CV_INTEGER );
ri.Cvar_CheckRange( r_ext_multisample, "0", "8", CV_INTEGER );
r_overBrightBits = ri.Cvar_Get ("r_overBrightBits", "1", CVAR_ARCHIVE | CVAR_LATCH );
r_ignorehwgamma = ri.Cvar_Get( "r_ignorehwgamma", "0", CVAR_ARCHIVE | CVAR_LATCH);
r_simpleMipMaps = ri.Cvar_Get( "r_simpleMipMaps", "1", CVAR_ARCHIVE | CVAR_LATCH );
Expand Down

0 comments on commit 10bae2b

Please sign in to comment.