aboutsummaryrefslogtreecommitdiff
path: root/src/fb/chfb.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fb/chfb.hpp')
-rw-r--r--src/fb/chfb.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/fb/chfb.hpp b/src/fb/chfb.hpp
index 7f6857b..1748abf 100644
--- a/src/fb/chfb.hpp
+++ b/src/fb/chfb.hpp
@@ -7,14 +7,13 @@
namespace engine::fb {
-using engine::math::Vector3, engine::o3d::VertexData;
-
class CharacterFrameBuffer {
public:
CharacterFrameBuffer(unsigned int w, unsigned int h);
void resize(unsigned int w, unsigned int h);
void clear();
- void draw_point(int x, int y, const Vector3& loc, const VertexData& vd, const Vector3& normal);
+ void draw_point(int x, int y, const engine::math::Vector3& loc,
+ const engine::math::Vector3& normal, const engine::math::Vector2& uv, const engine::o3d::VertexData& vd);
constexpr unsigned int width() const & {
return w;