Skip to content

Commit

Permalink
renderer: Raise default thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
VelocityRa committed Jan 4, 2021
1 parent d3dcaa4 commit b0ed014
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ class Renderer {

std::array<ColoredFloatRange, 3> float_ranges = {
ColoredFloatRange{ -1.0, 1.0, COLOR_RGBI_TO_U32(0x00, 0xFF, 0x00), true },
ColoredFloatRange{ 1.001, 10000.0, COLOR_RGBI_TO_U32(0xFF, 0x00, 0x00), true },
ColoredFloatRange{ -10000.0, -1.001, COLOR_RGBI_TO_U32(0x00, 0x00, 0xFF), true },
ColoredFloatRange{ 1.001, 50000.0, COLOR_RGBI_TO_U32(0xFF, 0x00, 0x00), true },
ColoredFloatRange{ -50000.0, -1.001, COLOR_RGBI_TO_U32(0x00, 0x00, 0xFF), true },
};

// Shaders
Expand Down

0 comments on commit b0ed014

Please sign in to comment.