Branch
Hash :
c79174fe
Author :
Thomas de Grivel
Date :
2025-09-30T13:59:35
Move all OpenGL code to gl/ and fix build
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
/* kc3
* Copyright from 2022 to 2025 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
/** @file gl.h
* @brief Module KC3.GL
*
* Global include for KC3 graphical library.
*/
#ifndef LIBKC3_GL_GL_H
#define LIBKC3_GL_GL_H
#include "dmat3.h"
#include "dmat4.h"
#include "dvec2.h"
#include "dvec3.h"
#include "gl_box.h"
#include "gl_camera.h"
#include "gl_cylinder.h"
#include "gl_deprecated.h"
#include "gl_font.h"
#include "gl_lines.h"
#include "gl_object.h"
#include "gl_ortho.h"
#include "gl_sphere.h"
#include "gl_sprite.h"
#include "gl_square.h"
#include "gl_text.h"
#include "gl_triangle.h"
#include "gl_vertex.h"
#include "gl_vtext.h"
#include "mat3.h"
#include "mat4.h"
#include "vec2.h"
#include "vec3.h"
#endif /* LIBKC3_GL_GL_H */