mirror of
https://github.com/Kugelschieber/vk-experiments.git
synced 2026-01-18 06:40:27 +00:00
Added swap chain.
This commit is contained in:
9
src/util.c
Normal file
9
src/util.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "util.h"
|
||||
|
||||
int min(int a, int b) {
|
||||
return a > b ? b : a;
|
||||
}
|
||||
|
||||
int max(int a, int b) {
|
||||
return a > b ? a : b;
|
||||
}
|
||||
Reference in New Issue
Block a user