aboutsummaryrefslogtreecommitdiff
path: root/samples/OpenGL/compute_shader/positiongen.h
blob: d1a30cde18bf592445f7a1a929853c2fa1904f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#ifndef POSITIONGEN_H
#define POSITIONGEN_H

#include <GL/gl.h>

int positiongen_load(void);

int positiongen_launch(
	float t,
	GLuint vbo,
	int width,
	int height );

#endif/*POSITIONGEN_H*/