rename .hpp headers to .h
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#include "pch.h"
|
||||
#include "app.hpp"
|
||||
#include "app.h"
|
||||
|
||||
App App::I; // singleton
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "shader.hpp"
|
||||
#include "shape.hpp"
|
||||
#include "texture.hpp"
|
||||
#include "shader.h"
|
||||
#include "shape.h"
|
||||
#include "texture.h"
|
||||
#include "layout.h"
|
||||
|
||||
class App
|
||||
4
engine/font.cpp
Normal file
4
engine/font.cpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#include "font.h"
|
||||
|
||||
|
||||
|
||||
4
engine/font.h
Normal file
4
engine/font.h
Normal file
@@ -0,0 +1,4 @@
|
||||
#pragma once
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "pch.h"
|
||||
#include "image.hpp"
|
||||
#include "image.h"
|
||||
|
||||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#include <stb/stb_image.h>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include "pch.h"
|
||||
#include "layout.h"
|
||||
#include "util.hpp"
|
||||
#include "util.h"
|
||||
|
||||
Plane WidgetBorder::m_plane;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
#include "shape.hpp"
|
||||
#include "util.hpp"
|
||||
#include "shader.hpp"
|
||||
#include "shape.h"
|
||||
#include "util.h"
|
||||
#include "shader.h"
|
||||
|
||||
enum class kAttribute : uint16_t
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#include "pch.h"
|
||||
#include "shader.hpp"
|
||||
#include "shape.hpp"
|
||||
#include "texture.hpp"
|
||||
#include "image.hpp"
|
||||
#include "app.hpp"
|
||||
#include "shader.h"
|
||||
#include "shape.h"
|
||||
#include "texture.h"
|
||||
#include "image.h"
|
||||
#include "app.h"
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <CoreFoundation/CoreFoundation.h>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "pch.h"
|
||||
#include "shader.hpp"
|
||||
#include "shader.h"
|
||||
|
||||
std::map<kShader, Shader> ShaderManager::m_shaders;
|
||||
Shader* ShaderManager::m_current;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
#include "util.hpp"
|
||||
#include "util.h"
|
||||
|
||||
enum class kShaderUniform : uint16_t
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "pch.h"
|
||||
#include "shape.hpp"
|
||||
#include "shape.h"
|
||||
|
||||
bool Shape::create_buffers(GLvoid* idx, GLvoid* vertices, int isize, int vsize)
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include "pch.h"
|
||||
#include "texture.hpp"
|
||||
#include "image.hpp"
|
||||
#include "texture.h"
|
||||
#include "image.h"
|
||||
|
||||
bool Texture2D::create(int width, int height, GLint format, const uint8_t* data)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user