Skip to content

Commit

Permalink
remove metal binary
Browse files Browse the repository at this point in the history
  • Loading branch information
ColleagueRiley committed Oct 20, 2024
1 parent f00d54a commit 4832e9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file removed examples/metal/metal
Binary file not shown.
4 changes: 3 additions & 1 deletion examples/microui_demo/renderer.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ static RGFW_window* window;

void r_init(void) {
/* init RGFW window */
window = RGFW_createWindow("", RGFW_RECT(0, 0, width, height), RGFW_CENTER);
window = RGFW_createWindow("", RGFW_RECT(0, 0, width, height), RGFW_CENTER | RGFW_SCALE_TO_MONITOR);
width = window->r.w;
height = window->r.h;

/* init gl */
glEnable(GL_BLEND);
Expand Down

2 comments on commit 4832e9d

@meshula
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, my apologies, I didn't notice the binary was in there.

@ColleagueRiley
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's all good. There were also some issues with the Makefile. But it should all be fixed now 👍
Thanks for your contribution!

Please sign in to comment.