This repository has been archived on 2023-01-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
1weekendraytracer/code/rt_weekend.h
Michael Smith e867778b4c Initial commit
2019-01-14 09:46:47 +01:00

21 lines
316 B
C

#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