rename .hpp headers to .h

This commit is contained in:
2017-01-31 22:48:55 +00:00
parent 4b26976d61
commit 39f44eca5e
19 changed files with 49 additions and 41 deletions

View File

@@ -1,5 +1,5 @@
#include "pch.h"
#include "app.hpp"
#include "app.h"
App App::I; // singleton

View File

@@ -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
View File

@@ -0,0 +1,4 @@
#include "font.h"

4
engine/font.h Normal file
View File

@@ -0,0 +1,4 @@
#pragma once

View File

@@ -1,5 +1,5 @@
#include "pch.h"
#include "image.hpp"
#include "image.h"
#define STB_IMAGE_IMPLEMENTATION
#include <stb/stb_image.h>

View File

@@ -1,6 +1,6 @@
#include "pch.h"
#include "layout.h"
#include "util.hpp"
#include "util.h"
Plane WidgetBorder::m_plane;

View File

@@ -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
{

View File

@@ -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>

View File

@@ -1,5 +1,5 @@
#include "pch.h"
#include "shader.hpp"
#include "shader.h"
std::map<kShader, Shader> ShaderManager::m_shaders;
Shader* ShaderManager::m_current;

View File

@@ -1,5 +1,5 @@
#pragma once
#include "util.hpp"
#include "util.h"
enum class kShaderUniform : uint16_t
{

View File

@@ -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)
{

View File

@@ -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)
{