Initial source commit

This commit is contained in:
Tony Bark 2025-10-03 02:19:59 -04:00
commit f1384c11ee
335 changed files with 52715 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#include "drawIntoScreen.h"
#include <stdlib.h>
void drawIntoScreen( Uint32 *inScreenBuffer, int inWidth, int inHeight ) {
// add dot at random spot
int x = rand() % inWidth;
int y = rand() % inHeight;
int i = y * inWidth + x;
inScreenBuffer[ i ] = 0xFFFFFFFF;
}
void initScreenDrawer( Uint32 *inScreenBuffer, int inWidth, int inHeight ) {
}
void freeScreenDrawer() {
}