util: rm vec_uint;

This commit is contained in:
bjorn 2018-09-26 10:49:33 -07:00
parent 148a2bdb45
commit 05802f3e90
4 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
#include "util.h"
#include <stdlib.h>
#pragma once

View File

@ -24,6 +24,8 @@ typedef struct {
int boneCount;
} ModelPrimitive;
typedef vec_t(unsigned int) vec_uint_t;
typedef struct ModelNode {
const char* name;
float transform[16];

View File

@ -1,5 +1,6 @@
#include "data/blob.h"
#include "util.h"
#include "lib/vec/vec.h"
#include <stdint.h>
#include <stdbool.h>

View File

@ -1,4 +1,3 @@
#include "lib/vec/vec.h"
#include "lib/tinycthread/tinycthread.h"
#include <stdint.h>
#include <stddef.h>
@ -9,8 +8,6 @@
#define lovrAssert(c, ...) if (!(c)) { lovrThrow(__VA_ARGS__); }
#define lovrAlloc(T, destructor) (T*) _lovrAlloc(#T, sizeof(T), destructor)
typedef vec_t(unsigned int) vec_uint_t;
typedef struct ref {
int count;
const char* type;