1
0
Fork 0
Univerxel/src/client/render/buffer/Abstract.hpp

15 lines
257 B
C++

#pragma once
#include <GL/gl3w.h>
#include <sys/types.h>
namespace buffer {
/// Draw options
struct params {
/// Bind only vertices positions
bool vertexOnly;
/// Draw instanced model
size_t instances = 1;
};
}