diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-07 10:10:01 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-07 10:10:01 +0200 |
| commit | 7740c71ecedd90f9b465dc35994e64915dbda826 (patch) | |
| tree | 787b64948b03e64bbb6a655297889e757012354a /src | |
| parent | 853049b279fa5adb3522bba671188247a1bc7141 (diff) | |
a
Diffstat (limited to 'src')
| -rw-r--r-- | src/wall-mesh.hpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/wall-mesh.hpp b/src/wall-mesh.hpp index 8daec2c1..e9678e3e 100644 --- a/src/wall-mesh.hpp +++ b/src/wall-mesh.hpp @@ -21,11 +21,8 @@ struct wall_mesh final private: static constexpr auto COUNT1 = TILE_MAX_DIM*2, COUNT = COUNT1 * COUNT1; - using texcoords_array = std::array<Vector2, 4>; - using position_array = std::array<Vector3, 4>; - struct vertex final { - typename texcoords_array::value_type texcoords; + std::array<Vector2, 4> texcoords; }; using quad = std::array<vertex, 4>; |
