]> git.sesse.net Git - movit/blob - util.h
Use VAOs to bind the VBOs.
[movit] / util.h
1 #ifndef _MOVIT_UTIL_H
2 #define _MOVIT_UTIL_H 1
3
4 // Various utilities.
5
6 #include <GL/glew.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <Eigen/Core>
10 #include <string>
11
12 #define BUFFER_OFFSET(i) ((char *)NULL + (i))
13
14 namespace movit {
15
16 // Converts a HSV color to RGB. Assumes h in [0, 2pi> or [-pi, pi>
17 void hsv2rgb(float h, float s, float v, float *r, float *g, float *b);
18
19 // Converts a HSV color to RGB, but keeps luminance constant
20 // (ie. color luminance is as if S=0).
21 void hsv2rgb_normalized(float h, float s, float v, float *r, float *g, float *b);
22
23 // Read a file from disk and return its contents.
24 // Dies if the file does not exist.
25 std::string read_file(const std::string &filename);
26
27 // Compile the given GLSL shader (typically a vertex or fragment shader)
28 // and return the object number.
29 GLuint compile_shader(const std::string &shader_src, GLenum type);
30
31 // Print a 3x3 matrix to standard output. Useful for debugging.
32 void print_3x3_matrix(const Eigen::Matrix3d &m);
33
34 // Output a GLSL 3x3 matrix declaration.
35 std::string output_glsl_mat3(const std::string &name, const Eigen::Matrix3d &m);
36
37 // Calculate where to sample, and with what weight, if one wants to use
38 // the GPU's bilinear hardware to sample w1 * x[0] + w2 * x[1].
39 //
40 // Note that since the GPU might have limited precision in its linear
41 // interpolation, the effective weights might be different from the ones you
42 // asked for. sum_sq_error, if not NULL, will contain the sum of the
43 // (estimated) squared errors of the two weights.
44 void combine_two_samples(float w1, float w2, float *offset, float *total_weight, float *sum_sq_error);
45
46 // Create a VBO with the given data, and bind it to the vertex attribute
47 // with name <attribute_name>. Returns the VBO number.
48 GLuint fill_vertex_attribute(GLuint glsl_program_num, const std::string &attribute_name, GLint size, GLenum type, GLsizeiptr data_size, const GLvoid *data);
49
50 // Clean up after fill_vertex_attribute().
51 void cleanup_vertex_attribute(GLuint glsl_program_num, const std::string &attribute_name, GLuint vbo);
52
53 }  // namespace movit
54
55 #ifdef NDEBUG
56 #define check_error()
57 #else
58 #define check_error() { int err = glGetError(); if (err != GL_NO_ERROR) { printf("GL error 0x%x at %s:%d\n", err, __FILE__, __LINE__); abort(); } }
59 #endif
60
61 // CHECK() is like assert(), but retains any side effects no matter the compilation mode.
62 #ifdef NDEBUG
63 #define CHECK(x) (void)(x)
64 #else
65 #define CHECK(x) do { bool ok = x; if (!ok) { fprintf(stderr, "%s:%d: %s: Assertion `%s' failed.\n", __FILE__, __LINE__, __PRETTY_FUNCTION__, #x); abort(); } } while (false)
66 #endif
67
68 #endif // !defined(_MOVIT_UTIL_H)