Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit a953e05

Browse files
committed
RGBM ordering
1 parent 1d63314 commit a953e05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

App/Src/Main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ namespace
6060

6161
auto colourBitmap = kvf::ColorBitmap{glm::ivec2{2, 2}};
6262
colourBitmap[0, 0] = kvf::red_v;
63-
colourBitmap[0, 1] = kvf::green_v;
64-
colourBitmap[1, 0] = kvf::blue_v;
63+
colourBitmap[1, 0] = kvf::green_v;
64+
colourBitmap[0, 1] = kvf::blue_v;
6565
colourBitmap[1, 1] = kvf::magenta_v;
6666
auto texture = Tkge::Graphics::Texture{&engine.RenderDevice()};
6767
texture.Create(colourBitmap.bitmap());

0 commit comments

Comments
 (0)