Fix wasm3 alignment errors and silence some warnings #135

Merged
MartinFouilleul merged 5 commits from fix_wasm3_align_and_warnings into main 2023-09-21 06:52:03 +00:00
1 changed files with 6 additions and 3 deletions
Showing only changes of commit 715ab0f6e3 - Show all commits

View File

@ -15,9 +15,12 @@
#include "mtl_renderer.h"
const int OC_MTL_INPUT_BUFFERS_COUNT = 3,
OC_MTL_TILE_SIZE = 16,
OC_MTL_MSAA_COUNT = 8;
enum
{
OC_MTL_INPUT_BUFFERS_COUNT = 3,
OC_MTL_TILE_SIZE = 16,
OC_MTL_MSAA_COUNT = 8
};
typedef struct oc_mtl_canvas_backend
{