summaryrefslogtreecommitdiff
path: root/tests/projects/other/hlsl2spv/src/main.c
blob: 29a65edb1ebed607018faad14926ab0be07ab713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

static unsigned char g_test_vert_spv_data[] = {
    #include "test.vs.spv.h"
};

static unsigned char g_test_frag_spv_data[] = {
    #include "test.ps.spv.h"
};

int main(int argc, char** argv)
{
    printf("test.vert.spv: %s, size: %d\n", g_test_vert_spv_data, (int)sizeof(g_test_vert_spv_data));
    printf("test.frag.spv: %s, size: %d\n", g_test_frag_spv_data, (int)sizeof(g_test_frag_spv_data));
    return 0;
}