Edit

kc3-lang/kc3/gl/gl.h

Branch :

  • gl/gl.h
  • /* 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 "freetype2.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 "gles2.h"
    #include "mat3.h"
    #include "mat4.h"
    #include "vec2.h"
    #include "vec3.h"
    
    #endif /* LIBKC3_GL_GL_H */