aboutsummaryrefslogtreecommitdiff
path: root/src/shaders/simple_shaders.hpp
Commit message (Collapse)AuthorAgeFilesLines
* added mipmaps for the hw renderer, improvementsHEADmainvimene15 hours1-22/+7
| | | | | | | | | | | | | This commit add mipmaps, but for now, mipmaps are generated on the gpu at runtime. We should generate them in advance. - added mipmaps for the hardware renderer - renamed stb_image.c to stb_image.cpp - add compiler flag to stb_image.cpp to prevent warning - added pipe notation for various objects to have all clipping functions be left to right. We need this for the time being because dot notation would considerably complicate the current implementation - small improvements
* improved software shadersvimene2026-01-171-0/+83
- unified terminal and graphical software renderer shaders - added vertex shaders for software renderers - removed VertexData - moved shaders from frame buffers to their own class - added FrameBufferConcept and ShadersConcept