Fix problems not caught by MSVC;

This commit is contained in:
bjorn 2018-11-16 07:19:29 -08:00
parent 9bc4ee7c94
commit 217a2f6354
3 changed files with 565 additions and 585 deletions

View File

@ -157,7 +157,7 @@ typedef struct {
void lovrGraphicsInit(bool gammaCorrect);
void lovrGraphicsDestroy();
void lovrGraphicsPresent();
void lovrGraphicsCreateWindow(int w, int h, bool fullscreen, int msaa, const char* title, const char* icon);
void lovrGraphicsSetWindow(WindowFlags* flags);
int lovrGraphicsGetWidth();
int lovrGraphicsGetHeight();
void lovrGraphicsSetCamera(Camera* camera, bool clear);

View File

@ -61,7 +61,7 @@ typedef enum {
} ButtonAction;
typedef void (*windowCloseCallback)();
typedef void (*windowResizeCallback)(uint32_t width, uint32_t height);
typedef void (*windowResizeCallback)(int width, int height);
typedef void (*mouseButtonCallback)(MouseButton button, ButtonAction action, int x, int y);
typedef void (*gpuProc)(void);

File diff suppressed because it is too large Load Diff