Skip to content

Commit

Permalink
mesh test: - float d[16]; + data::array<float, 16> d;
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Jan 9, 2020
1 parent 797b4c4 commit 2855eee
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions test/mesh_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct vec3 {
};

struct mat4 {
float d[16];
data::array<float, 16> d;
};

struct Vertex {
Expand All @@ -42,12 +42,6 @@ struct Group {
Stagings stagings;
};

template <typename Ctx>
void serialize(Ctx&, mat4 const*, offset_t const) {}

template <typename Ctx>
void deserialize(Ctx const&, mat4*) {}

TEST_CASE("mesh test") {
constexpr auto const FILENAME = "group.bin";

Expand Down

0 comments on commit 2855eee

Please sign in to comment.