summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/astc.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-10video_core/textures/astc: Remove unused variablesLioncash1-6/+2
Silences a few compilation warnings.
2019-05-01Fix Layered ASTC TexturesFernando Sahmkow1-1/+3
By adding the missing layer offset in ASTC compression.
2019-02-27gl_rasterizer_cache: Move format conversion to its own fileReinUsesLisp1-32/+48
2018-11-02Fix ASTC Decompressor to support depth parameterFernandoS271-15/+17
2018-07-18astc: Initialize vector size directly in DecompressLioncash1-2/+1
There's no need to perform a separate resize.
2018-07-18astc: Mark functions as internally linked where applicableLioncash1-17/+20
2018-07-18astc: const-correctness changes where applicableLioncash1-14/+13
A few member functions didn't actually modify class state, so these can be amended as necessary.
2018-07-18astc: Delete Bits' copy contstructor and assignment operatorLioncash1-8/+6
This also potentially avoids warnings, considering the copy assignment operator is supposed to have a return value.
2018-07-18astc: In-class initialize member variables where appropriateLioncash1-39/+22
2018-06-18gl_rasterizer: Implement texture format ASTC_2D_4X4.bunnei1-0/+1646