Blitting to a low resolution bitmap, Main application bitmap is now in ABGR format, macro toggles for bilinear blend etc.

This commit is contained in:
Krzosa Karol
2022-02-17 21:00:58 +01:00
parent 0404615190
commit 84c6191df6
6 changed files with 184 additions and 58 deletions

View File

@@ -1,9 +1,9 @@
#include "main.h"
#include <stdint.h>
struct Image {
uint32_t* pixels;
int x;
int y;
U32* pixels;
I64 x;
I64 y;
};
struct OSInitArgs {