aboutsummaryrefslogtreecommitdiff
path: root/tests/compile/sokol_color.c
blob: ea3a354a82c0317da580cafa749c0894fcae61d9 (plain)
1
2
3
4
5
6
7
8
#include "sokol_gfx.h"
#define SOKOL_IMPL
#include "sokol_color.h"

void use_color_impl(void) {
    sg_color c = sg_make_color_4b(255, 0, 0, 255);
    (void)c;
}