Skip to content

Commit

Permalink
Remove not needed cerr
Browse files Browse the repository at this point in the history
  • Loading branch information
gort818 committed Apr 7, 2023
1 parent 4b2e78a commit 328df38
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/vulkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1953,21 +1953,18 @@ parse_overlay_config(&params, getenv("MANGOHUD_CONFIG"));
sampler.anisotropyEnable = VK_FALSE;

if (params.enabled[OVERLAY_PARAM_ENABLED_trilinear]){
std::cerr << "USING trillear\n";
sampler.magFilter = VK_FILTER_LINEAR;
sampler.minFilter = VK_FILTER_LINEAR;
sampler.mipmapMode = VK_SAMPLER_MIPMAP_MODE_LINEAR;
}

if (params.enabled[OVERLAY_PARAM_ENABLED_bicubic]){
std::cerr << "USING bicubic\n";
sampler.magFilter = VK_FILTER_CUBIC_IMG;
sampler.minFilter = VK_FILTER_CUBIC_IMG;
sampler.mipmapMode = VK_SAMPLER_MIPMAP_MODE_LINEAR;
}

if (params.enabled[OVERLAY_PARAM_ENABLED_retro]){
std::cerr << "USING retro\n";
sampler.magFilter = VK_FILTER_NEAREST;
sampler.minFilter = VK_FILTER_NEAREST;
sampler.mipmapMode = VK_SAMPLER_MIPMAP_MODE_NEAREST;
Expand Down

0 comments on commit 328df38

Please sign in to comment.