Skip to content

Commit

Permalink
Revert "Prefer GL3 driver over legacy GL driver"
Browse files Browse the repository at this point in the history
This reverts commit 9f52f84
and ded8c25.
  • Loading branch information
sfan5 committed Feb 3, 2025
1 parent b2a6c3b commit a37a855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/renderingengine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ std::vector<video::E_DRIVER_TYPE> RenderingEngine::getSupportedVideoDrivers()
// Only check these drivers. We do not support software and D3D in any capacity.
// ordered by preference (best first)
static const video::E_DRIVER_TYPE glDrivers[] = {
video::EDT_OPENGL3,
video::EDT_OPENGL,
video::EDT_OPENGL3,
video::EDT_OGLES2,
video::EDT_NULL,
};
Expand Down
2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ void set_default_settings()

// Effects
settings->setDefault("enable_post_processing", "true");
settings->setDefault("post_processing_texture_bits", "10");
settings->setDefault("post_processing_texture_bits", "16");
settings->setDefault("directional_colored_fog", "true");
settings->setDefault("inventory_items_animations", "false");
settings->setDefault("mip_map", "false");
Expand Down

0 comments on commit a37a855

Please sign in to comment.