Simplify drawing to screen example

This commit is contained in:
Krzosa Karol
2022-10-01 09:29:09 +02:00
parent 0646ae9279
commit 02addfb389
5 changed files with 51 additions and 65 deletions

View File

@@ -18,6 +18,11 @@ AlignUp :: (size: SizeU, align: SizeU): SizeU
result := size + GetAlignOffset(size, align)
return result
ZeroMemory :: (p: *void, size: SizeU)
pcast := p->*U8
for i := 0->SizeU, i < size, i++
pcast[i] = 0
//
// Unicode
//