aboutsummaryrefslogtreecommitdiff
path: root/src/buffer/vertex/material_buffer.h
blob: 4c61c5569b20df0b9ca48fdcd71fb84462822690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <GL/glew.h>

#include <functional>

class MaterialBuffer {
private:
	const GLuint _nX;
	const GLuint _nY;

	GLuint _array;
	GLuint _buffer;

public:
	MaterialBuffer(GLuint nX, GLuint nY, std::function<int(int,int)>&& geometry);
	~MaterialBuffer();

	GLuint getBuffer() const;
};