projects
/
vkrt
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
many changes: Makefile, util, fixed indent, fixes in swapchain
[vkrt]
/
src
/
util.h
1
#ifndef UTIL_H
2
#define UTIL_H
3
4
#include <stdbool.h>
5
6
char *
7
sdr_load(const char *fname, int *sz);
8
9
bool
10
img_dump_rgba(const char *fname,
11
int w, int h,
12
unsigned char *data);
13
14
#endif /* UTIL_H */