aboutsummaryrefslogtreecommitdiff
path: root/src/common/color.h
AgeCommit message (Collapse)Author
2021-01-15common/color: RemoveReinUsesLisp
This is a leftover from Citra we no longer use.
2020-08-18common/color: Migrate code over to the Common namespaceLioncash
No external code makes use of this header, so we can freely change the namespace.
2020-08-15common: Make use of [[nodiscard]] where applicableLioncash
Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
2019-02-26common/vector_math: Move Vec[x] types into the Common namespaceLioncash
These types are within the common library, so they should be using the Common namespace.
2018-08-08common/color: Remove unnecessary const qualifiers on return typesLioncash
These are just superfluous and not necessesary
2018-08-08common/color: Get rid of undefined behaviorLioncash
Gets rid of type punning via reinterpret_cast within functions. Instead, we use memcpy to transfer the contents across types.
2018-01-20Format: Run the new clang format on everythingJames Rowe
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot
2016-01-27color: Make trivial helpers constexprLioncash
2015-08-16videocore: Added RG8 texture supportPatrick Martin
2015-07-13Pica: Implement stencil testing.Tony Wasserka
2015-05-30Move video_core/color.h to common/color.harchshift