aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/surface.h
AgeCommit message (Collapse)Author
2018-12-04Improve msvc codegen for hot-path array LUTsheapo
In some constexpr functions, msvc is building the LUT at runtime (pushing each element onto the stack) out of an abundance of caution. Moving the arrays into be file-scoped constexpr's avoids this and turns the functions into simple look-ups as intended.
2018-11-12Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB (#1666)greggameplayer
* Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB ( needed by Mario+Rabbids Kingdom Battle ) * Small placement correction
2018-11-05Merge pull request #1616 from FernandoS27/cube-arraybunnei
Implement Cube Arrays
2018-11-01Fix ASTC Decompressor to support depth parameterFernandoS27
2018-11-01Implement Cube ArraysFernandoS27
2018-10-30video_core: Move surface declarations out of gl_rasterizer_cacheReinUsesLisp