Skip to content

Commit 41fa642

Browse files
authored
Merge pull request #5 from masonlet/refactor/normalize-naming
Refactor/normalize file names and consolidate test helpers
2 parents 059edc4 + 9c76678 commit 41fa642

42 files changed

Lines changed: 151 additions & 249 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

3-
#include "colourData.hpp"
4-
#include "transformData.hpp"
3+
#include "colour_data.hpp"
4+
#include "transform_data.hpp"
55

66
namespace Starlet::Serializer {
77

inc/starlet-serializer/data/cameraData.hpp renamed to inc/starlet-serializer/data/camera_data.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "data.hpp"
3+
#include "base_data.hpp"
44

55
namespace Starlet::Serializer {
66

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "data.hpp"
3+
#include "base_data.hpp"
44

55
namespace Starlet::Serializer {
66

File renamed without changes.

inc/starlet-serializer/data/lightData.hpp renamed to inc/starlet-serializer/data/light_data.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "data.hpp"
3+
#include "base_data.hpp"
44

55
#include "starlet-math/vec2.hpp"
66
#include "starlet-math/vec4.hpp"

inc/starlet-serializer/data/modelData.hpp renamed to inc/starlet-serializer/data/model_data.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "data.hpp"
3+
#include "base_data.hpp"
44

55
#include "starlet-math/vec2.hpp"
66

inc/starlet-serializer/data/primitiveData.hpp renamed to inc/starlet-serializer/data/primitive_data.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "data.hpp"
3+
#include "base_data.hpp"
44

55
namespace Starlet::Serializer {
66

inc/starlet-serializer/data/sceneData.hpp renamed to inc/starlet-serializer/data/scene_data.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
#include <vector>
44

5-
#include "modelData.hpp"
6-
#include "lightData.hpp"
7-
#include "cameraData.hpp"
8-
#include "primitiveData.hpp"
9-
#include "gridData.hpp"
10-
#include "textureData.hpp"
11-
#include "velocityData.hpp"
5+
#include "model_data.hpp"
6+
#include "light_data.hpp"
7+
#include "camera_data.hpp"
8+
#include "primitive_data.hpp"
9+
#include "grid_data.hpp"
10+
#include "texture_data.hpp"
11+
#include "velocity_data.hpp"
1212

1313
#include "starlet-math/vec3.hpp"
1414

0 commit comments

Comments
 (0)