Skip to content

Commit 09f630a

Browse files
committed
Rename headers
1 parent e4ea02f commit 09f630a

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed
File renamed without changes.

WebAssemblyDemo/Sources/OpenGL.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "OpenGL.h"
1+
#include "OpenGL.hpp"
22

33
EMSCRIPTEN_KEEPALIVE
44
OpenGL::OpenGL() {

WebAssemblyDemo/Sources/OpenGL.h renamed to WebAssemblyDemo/Sources/OpenGL.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef WEBASSEMBLYDEMO_OPENGL_H
22
#define WEBASSEMBLYDEMO_OPENGL_H
33

4-
#include "Linmath.h"
4+
#include "Linmath.hpp"
55

66
#include <emscripten.h>
77

@@ -11,7 +11,7 @@
1111
#include <GLES3/gl3.h>
1212
#include <stdio.h>
1313
#include <stdlib.h>
14-
#include "Vertex.h"
14+
#include "Vertex.hpp"
1515

1616

1717
class OpenGL {
File renamed without changes.

WebAssemblyDemo/Sources/Vertex.h renamed to WebAssemblyDemo/Sources/Vertex.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
#define WEBASSEMBLYDEMO_VERTEX_H
33

44
#include <GLES3/gl3.h>
5-
#include "Position.h"
6-
#include "Color.h"
7-
#include "UV.h"
5+
#include "Position.hpp"
6+
#include "Color.hpp"
7+
#include "UV.hpp"
88

99
struct Vertex {
1010

WebAssemblyDemo/Sources/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "OpenGL.h"
1+
#include "OpenGL.hpp"
22

33
#include <emscripten.h>
44

0 commit comments

Comments
 (0)