From 6b765a85cf81bf4b7162e4c9280dd4054581c611 Mon Sep 17 00:00:00 2001 From: vimene Date: Mon, 11 Dec 2023 12:42:46 +0100 Subject: improved mesh definition - In the context of mesh definition, splited indices into vertex index, normal index and vertex data index to be able to specify different normals and vertex data for different faces using the same vertex --- src/fb/chfb.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/fb') diff --git a/src/fb/chfb.cpp b/src/fb/chfb.cpp index e3c0cf1..029d619 100644 --- a/src/fb/chfb.cpp +++ b/src/fb/chfb.cpp @@ -33,6 +33,7 @@ void CharacterFrameBuffer::clear() { } void CharacterFrameBuffer::draw_point(int x, int y, engine::math::Vector3 loc, const engine::o3d::VertexData& vd) { + (void) loc; (void) vd; chars_vector[x + y * w] = face_char(0); } -- cgit v1.2.3