summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2015-02-28 22:52:47 +0100
committerarchshift <admin@archshift.com>2015-02-28 22:52:47 +0100
commitc1d29ac20240ad92a49b84409b92ed1d326720a9 (patch)
tree845c227f487e380b0adaaf5966b643cfd1b13407 /src/core
parentMerge pull request #620 from lioncash/bkpt (diff)
parentAdded RGBA5551 compatibility in the rasterizer (diff)
downloadyuzu-c1d29ac20240ad92a49b84409b92ed1d326720a9.tar
yuzu-c1d29ac20240ad92a49b84409b92ed1d326720a9.tar.gz
yuzu-c1d29ac20240ad92a49b84409b92ed1d326720a9.tar.bz2
yuzu-c1d29ac20240ad92a49b84409b92ed1d326720a9.tar.lz
yuzu-c1d29ac20240ad92a49b84409b92ed1d326720a9.tar.xz
yuzu-c1d29ac20240ad92a49b84409b92ed1d326720a9.tar.zst
yuzu-c1d29ac20240ad92a49b84409b92ed1d326720a9.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hw/gpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h
index ab1dcf91d..737b1e968 100644
--- a/src/core/hw/gpu.h
+++ b/src/core/hw/gpu.h
@@ -46,7 +46,7 @@ struct Regs {
"Structure size and register block length don't match")
#endif
- // All of those formats are described in reverse byte order, since the 3DS is little-endian.
+ // Components are laid out in reverse byte order, most significant bits first.
enum class PixelFormat : u32 {
RGBA8 = 0,
RGB8 = 1,