aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/textures/astc.cpp
AgeCommit message (Collapse)Author
2018-07-17astc: const-correctness changes where applicableLioncash
A few member functions didn't actually modify class state, so these can be amended as necessary.
2018-07-17astc: Delete Bits' copy contstructor and assignment operatorLioncash
This also potentially avoids warnings, considering the copy assignment operator is supposed to have a return value.
2018-07-17astc: In-class initialize member variables where appropriateLioncash
2018-06-18gl_rasterizer: Implement texture format ASTC_2D_4X4.bunnei