diff options
Diffstat (limited to 'src/libjin/Graphics')
-rw-r--r-- | src/libjin/Graphics/Font/je_decoder.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/Font/je_font.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/Font/je_page.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/Font/je_text.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/Font/je_texture_font.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/Font/je_ttf.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/Shader/je_base.shader.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/Shader/je_shader.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/je_bitmap.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/je_canvas.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/je_color.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/je_drawable.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/je_gl.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/je_graphics.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/je_image.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/je_mesh.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/je_shapes.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/je_sprite.h | 4 | ||||
-rw-r--r-- | src/libjin/Graphics/je_texture.h | 6 | ||||
-rw-r--r-- | src/libjin/Graphics/je_window.h | 6 |
20 files changed, 49 insertions, 49 deletions
diff --git a/src/libjin/Graphics/Font/je_decoder.h b/src/libjin/Graphics/Font/je_decoder.h index e95f7c3..6a69c21 100644 --- a/src/libjin/Graphics/Font/je_decoder.h +++ b/src/libjin/Graphics/Font/je_decoder.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_UTF8_H -#define __LIBJIN_UTF8_H +#ifndef __JE_UTF8_H +#define __JE_UTF8_H #include <vector> diff --git a/src/libjin/Graphics/Font/je_font.h b/src/libjin/Graphics/Font/je_font.h index 9fde723..0601713 100644 --- a/src/libjin/Graphics/Font/je_font.h +++ b/src/libjin/Graphics/Font/je_font.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_FONT_H -#define __LIBJIN_FONT_H +#ifndef __JE_FONT_H +#define __JE_FONT_H #include <vector> #include "je_text.h" diff --git a/src/libjin/Graphics/Font/je_page.h b/src/libjin/Graphics/Font/je_page.h index d887c9b..569780e 100644 --- a/src/libjin/Graphics/Font/je_page.h +++ b/src/libjin/Graphics/Font/je_page.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_PAGE_H -#define __LIBJIN_PAGE_H +#ifndef __JE_PAGE_H +#define __JE_PAGE_H #include "../../math/je_vector2.hpp" diff --git a/src/libjin/Graphics/Font/je_text.h b/src/libjin/Graphics/Font/je_text.h index 38e60ca..9d2dd95 100644 --- a/src/libjin/Graphics/Font/je_text.h +++ b/src/libjin/Graphics/Font/je_text.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_TEXT_H -#define __LIBJIN_TEXT_H +#ifndef __JE_TEXT_H +#define __JE_TEXT_H #include <vector> diff --git a/src/libjin/Graphics/Font/je_texture_font.h b/src/libjin/Graphics/Font/je_texture_font.h index fa3f72e..bfa4815 100644 --- a/src/libjin/Graphics/Font/je_texture_font.h +++ b/src/libjin/Graphics/Font/je_texture_font.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_TEXTURE_FONT_H -#define __LIBJIN_TEXTURE_FONT_H +#ifndef __JE_TEXTURE_FONT_H +#define __JE_TEXTURE_FONT_H #include <map> #include <vector> diff --git a/src/libjin/Graphics/Font/je_ttf.h b/src/libjin/Graphics/Font/je_ttf.h index f3761ac..5c44d26 100644 --- a/src/libjin/Graphics/Font/je_ttf.h +++ b/src/libjin/Graphics/Font/je_ttf.h @@ -1,5 +1,5 @@ -#ifndef __LIBJINTTF_H -#define __LIBJIN_TTF_H +#ifndef __JETTF_H +#define __JE_TTF_H #include "../../core/je_configuration.h" #if LIBJIN_MODULES_RENDER @@ -131,4 +131,4 @@ namespace jin #endif // LIBJIN_MODULES_RENDER -#endif // __LIBJIN_FONT_H
\ No newline at end of file +#endif // __JE_FONT_H
\ No newline at end of file diff --git a/src/libjin/Graphics/Shader/je_base.shader.h b/src/libjin/Graphics/Shader/je_base.shader.h index 45b63cd..0616751 100644 --- a/src/libjin/Graphics/Shader/je_base.shader.h +++ b/src/libjin/Graphics/Shader/je_base.shader.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_BASE_SHADER_H -#define __LIBJIN_BASE_SHADER_H +#ifndef __JE_BASE_SHADER_H +#define __JE_BASE_SHADER_H static const char* base_shared = R"( #define Number float diff --git a/src/libjin/Graphics/Shader/je_shader.h b/src/libjin/Graphics/Shader/je_shader.h index bcee584..5145f85 100644 --- a/src/libjin/Graphics/Shader/je_shader.h +++ b/src/libjin/Graphics/Shader/je_shader.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_SHADER_H -#define __LIBJIN_SHADER_H +#ifndef __JE_SHADER_H +#define __JE_SHADER_H #include "../../core/je_configuration.h" #if defined(jin_graphics) && defined(jin_graphics_shader) @@ -197,4 +197,4 @@ namespace jin #endif // jin_graphics && jin_graphics_shader -#endif // __LIBJIN_SHADER_H
\ No newline at end of file +#endif // __JE_SHADER_H
\ No newline at end of file diff --git a/src/libjin/Graphics/je_bitmap.h b/src/libjin/Graphics/je_bitmap.h index b9747f2..92ab836 100644 --- a/src/libjin/Graphics/je_bitmap.h +++ b/src/libjin/Graphics/je_bitmap.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_BITMAP_H -#define __LIBJIN_BITMAP_H +#ifndef __JE_BITMAP_H +#define __JE_BITMAP_H #include "../core/je_configuration.h" #if LIBJIN_MODULES_RENDER diff --git a/src/libjin/Graphics/je_canvas.h b/src/libjin/Graphics/je_canvas.h index 12611d9..5a44e87 100644 --- a/src/libjin/Graphics/je_canvas.h +++ b/src/libjin/Graphics/je_canvas.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_CANVAS_H -#define __LIBJIN_CANVAS_H +#ifndef __JE_CANVAS_H +#define __JE_CANVAS_H #include "../core/je_configuration.h" #if LIBJIN_MODULES_RENDER @@ -63,4 +63,4 @@ namespace jin } // namespace jin #endif // LIBJIN_MODULES_RENDER -#endif // __LIBJIN_CANVAS_H
\ No newline at end of file +#endif // __JE_CANVAS_H
\ No newline at end of file diff --git a/src/libjin/Graphics/je_color.h b/src/libjin/Graphics/je_color.h index b13d882..675d25e 100644 --- a/src/libjin/Graphics/je_color.h +++ b/src/libjin/Graphics/je_color.h @@ -1,8 +1,8 @@ /** * Some color operating here. */ -#ifndef __LIBJIN_COLOR_H -#define __LIBJIN_COLOR_H +#ifndef __JE_COLOR_H +#define __JE_COLOR_H #include "../core/je_configuration.h" #if LIBJIN_MODULES_RENDER @@ -82,4 +82,4 @@ namespace jin } // namespace jin #endif // LIBJIN_MODULES_RENDER -#endif // __LIBJIN_COLOR_H
\ No newline at end of file +#endif // __JE_COLOR_H
\ No newline at end of file diff --git a/src/libjin/Graphics/je_drawable.h b/src/libjin/Graphics/je_drawable.h index 13464f0..f31f3d7 100644 --- a/src/libjin/Graphics/je_drawable.h +++ b/src/libjin/Graphics/je_drawable.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_DRAWABLE -#define __LIBJIN_DRAWABLE +#ifndef __JE_DRAWABLE +#define __JE_DRAWABLE #include "../core/je_configuration.h" #if LIBJIN_MODULES_RENDER @@ -87,4 +87,4 @@ namespace jin } // namespace jin #endif // LIBJIN_MODULES_RENDER -#endif // __LIBJIN_DRAWABLE
\ No newline at end of file +#endif // __JE_DRAWABLE
\ No newline at end of file diff --git a/src/libjin/Graphics/je_gl.h b/src/libjin/Graphics/je_gl.h index 296b8aa..2b76162 100644 --- a/src/libjin/Graphics/je_gl.h +++ b/src/libjin/Graphics/je_gl.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_OPENGL_H -#define __LIBJIN_OPENGL_H +#ifndef __JE_OPENGL_H +#define __JE_OPENGL_H #include "../3rdparty/GLee/GLee.h" #include "../3rdparty/ogl/OpenGL.h" diff --git a/src/libjin/Graphics/je_graphics.h b/src/libjin/Graphics/je_graphics.h index 6f099cd..8c964c3 100644 --- a/src/libjin/Graphics/je_graphics.h +++ b/src/libjin/Graphics/je_graphics.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_GRAPHICS_H -#define __LIBJIN_GRAPHICS_H +#ifndef __JE_GRAPHICS_H +#define __JE_GRAPHICS_H #include "../core/je_configuration.h" #if LIBJIN_MODULES_RENDER @@ -18,4 +18,4 @@ #include "font/je_texture_font.h" #endif // LIBJIN_MODULES_RENDER -#endif // __LIBJIN_GRAPHICS_H
\ No newline at end of file +#endif // __JE_GRAPHICS_H
\ No newline at end of file diff --git a/src/libjin/Graphics/je_image.h b/src/libjin/Graphics/je_image.h index 5c06258..adb9cde 100644 --- a/src/libjin/Graphics/je_image.h +++ b/src/libjin/Graphics/je_image.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_IMAGE_H -#define __LIBJIN_IMAGE_H +#ifndef __JE_IMAGE_H +#define __JE_IMAGE_H #include "je_bitmap.h" diff --git a/src/libjin/Graphics/je_mesh.h b/src/libjin/Graphics/je_mesh.h index 66727e4..e85344c 100644 --- a/src/libjin/Graphics/je_mesh.h +++ b/src/libjin/Graphics/je_mesh.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_MESH_H -#define __LIBJIN_MESH_H +#ifndef __JE_MESH_H +#define __JE_MESH_H namespace jin { diff --git a/src/libjin/Graphics/je_shapes.h b/src/libjin/Graphics/je_shapes.h index 32b5284..bb2da25 100644 --- a/src/libjin/Graphics/je_shapes.h +++ b/src/libjin/Graphics/je_shapes.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_GEOMETRY_H -#define __LIBJIN_GEOMETRY_H +#ifndef __JE_GEOMETRY_H +#define __JE_GEOMETRY_H #include "../core/je_configuration.h" #if LIBJIN_MODULES_RENDER @@ -34,4 +34,4 @@ namespace jin } // namespace jin #endif // LIBJIN_MODULES_RENDER -#endif // __LIBJIN_GEOMETRY_H
\ No newline at end of file +#endif // __JE_GEOMETRY_H
\ No newline at end of file diff --git a/src/libjin/Graphics/je_sprite.h b/src/libjin/Graphics/je_sprite.h index 7a4e53a..e0bf6fa 100644 --- a/src/libjin/Graphics/je_sprite.h +++ b/src/libjin/Graphics/je_sprite.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_SPRITE_H -#define __LIBJIN_SPRITE_H +#ifndef __JE_SPRITE_H +#define __JE_SPRITE_H namespace jin { diff --git a/src/libjin/Graphics/je_texture.h b/src/libjin/Graphics/je_texture.h index 30c5063..a58f1db 100644 --- a/src/libjin/Graphics/je_texture.h +++ b/src/libjin/Graphics/je_texture.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_TEXTURE_H -#define __LIBJIN_TEXTURE_H +#ifndef __JE_TEXTURE_H +#define __JE_TEXTURE_H #include "../core/je_configuration.h" #if defined(jin_graphics) @@ -42,4 +42,4 @@ namespace jin #endif // jin_graphics -#endif // __LIBJIN_TEXTURE_H
\ No newline at end of file +#endif // __JE_TEXTURE_H
\ No newline at end of file diff --git a/src/libjin/Graphics/je_window.h b/src/libjin/Graphics/je_window.h index 995d8b0..08a9c59 100644 --- a/src/libjin/Graphics/je_window.h +++ b/src/libjin/Graphics/je_window.h @@ -1,5 +1,5 @@ -#ifndef __LIBJIN_RENDER_WINDOW -#define __LIBJIN_RENDER_WINDOW +#ifndef __JE_RENDER_WINDOW +#define __JE_RENDER_WINDOW #include "../core/je_configuration.h" #if defined(jin_graphics) @@ -93,4 +93,4 @@ namespace jin #endif // jin_graphics -#endif // __LIBJIN_RENDER_WINDOW
\ No newline at end of file +#endif // __JE_RENDER_WINDOW
\ No newline at end of file |