X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FViewport.hpp;fp=src%2Fgraphics%2FViewport.hpp;h=a8cb69f0947f70cee14b6fc20df6f544b5114b1b;hb=75172fd735e34082c34b47ae7c194445b53038d9;hp=03e0e0d05c247420387bdc5fc1c851a71b3f992b;hpb=57d3e33b47c92d56de4007e23800d9bcdb353463;p=blank.git diff --git a/src/graphics/Viewport.hpp b/src/graphics/Viewport.hpp index 03e0e0d..a8cb69f 100644 --- a/src/graphics/Viewport.hpp +++ b/src/graphics/Viewport.hpp @@ -52,8 +52,8 @@ public: BlockLighting &ChunkProgram() noexcept; DirectionalLighting &EntityProgram() noexcept; DirectionalLighting &HUDProgram() noexcept; - PlainColor &WorldOutlineProgram() noexcept; - PlainColor &HUDOutlineProgram() noexcept; + PlainColor &WorldColorProgram() noexcept; + PlainColor &HUDColorProgram() noexcept; SkyBoxShader &SkyBoxProgram() noexcept; BlendedSprite &SpriteProgram() noexcept; @@ -70,7 +70,7 @@ private: BlockLighting chunk_prog; DirectionalLighting entity_prog; - PlainColor outline_prog; + PlainColor color_prog; SkyBoxShader sky_prog; BlendedSprite sprite_prog; @@ -79,8 +79,8 @@ private: CHUNK, ENTITY, HUD, - OUTLINE_WORLD, - OUTLINE_HUD, + COLOR_WORLD, + COLOR_HUD, SKY_BOX, SPRITE, } active_prog;