diff options
author | chai <chaifix@163.com> | 2021-11-04 12:55:25 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-11-04 12:55:25 +0800 |
commit | d24f17b88d901b779c81c7434995675eb2a17429 (patch) | |
tree | d8f4cfee93d70598ef4b1419316b30acfff0eb04 /Runtime/Graphics/PolyLine.cpp | |
parent | 94a9a28de16badb75e66a60efca3b01d31cc0fc6 (diff) |
- Internal::
Diffstat (limited to 'Runtime/Graphics/PolyLine.cpp')
-rw-r--r-- | Runtime/Graphics/PolyLine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Runtime/Graphics/PolyLine.cpp b/Runtime/Graphics/PolyLine.cpp index 24686f9..279a493 100644 --- a/Runtime/Graphics/PolyLine.cpp +++ b/Runtime/Graphics/PolyLine.cpp @@ -1,9 +1,9 @@ #include "PolyLine.h" -#include "../Math/Vector3.h" #include "Color.h" +#include "Runtime/Math/Math.h" struct PolyLineVBOLayout { - Internal::Vector3 position; - Internal::Color32 color; + Vector3 position; + Color32 color; }; |