Initial commit

This commit is contained in:
Michael Smith
2019-01-14 09:42:23 +01:00
committed by Michael Smith
commit e867778b4c
11 changed files with 1263 additions and 0 deletions

20
code/rt_weekend.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef RT_WEEKEND_H
#define RT_WEEKEND_H
#include <stdint.h>
#define internal static
#define local_persist static
#define global_variable static
// Services that are being provided to the platform layer
struct plugin_offscreen_buffer
{
void *Memory;
int Width;
int Height;
int Pitch;
};
#endif