mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-22 12:59:07 -06:00
Feature/mipmapping (#454)
* Enable mipmapping for textures where it was previously disabled * Fix mipmapping for renderable projections
This commit is contained in:
@@ -394,7 +394,7 @@ void RenderableSphere::loadTexture() {
|
||||
// linear
|
||||
// TODO: AnisotropicMipMap crashes on ATI cards ---abock
|
||||
//texture->setFilter(ghoul::opengl::Texture::FilterMode::AnisotropicMipMap);
|
||||
texture->setFilter(ghoul::opengl::Texture::FilterMode::Linear);
|
||||
texture->setFilter(ghoul::opengl::Texture::FilterMode::LinearMipMap);
|
||||
|
||||
_texture = std::move(texture);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user