Skip to content

Commit

Permalink
Set vk_sampleshading to 0 also during global initialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
kondrak committed Mar 30, 2021
1 parent 40cf113 commit 42f551f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ref_vk/vk_rmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ void R_Register( void )
vk_lmaptexturemode = ri.Cvar_Get("vk_lmaptexturemode", "VK_MIPMAP_LINEAR", CVAR_ARCHIVE);
vk_aniso = ri.Cvar_Get("vk_aniso", "1", CVAR_ARCHIVE);
vk_mip_nearfilter = ri.Cvar_Get("vk_mip_nearfilter", "0", CVAR_ARCHIVE);
vk_sampleshading = ri.Cvar_Get("vk_sampleshading", "1", CVAR_ARCHIVE);
vk_sampleshading = ri.Cvar_Get("vk_sampleshading", "0", CVAR_ARCHIVE);
vk_vsync = ri.Cvar_Get("vk_vsync", "0", CVAR_ARCHIVE);
vk_device_idx = ri.Cvar_Get("vk_device", "-1", CVAR_ARCHIVE);
vk_fullscreen_exclusive = ri.Cvar_Get("vk_fullscreen_exclusive", "1", CVAR_ARCHIVE);
Expand Down

0 comments on commit 42f551f

Please sign in to comment.