Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions code/graphics/opengl/gropenglpostprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1111,9 +1111,11 @@ static bool opengl_post_init_framebuffer()

opengl_setup_bloom_textures();

if (Gr_aa_mode != AntiAliasMode::None) {
// Always set up SMAA resources so the user can switch to an SMAA preset
// at runtime even when starting with a non-SMAA AA mode, such as None.
//if (Gr_aa_mode != AntiAliasMode::None) {
setup_smaa_resources();
}
//}

GL_state.BindFrameBuffer(0);

Expand Down
Loading