summaryrefslogtreecommitdiff
path: root/Userland/Demos/GLTeapot/Mesh.h
blob: 7f979cff0ac6c0f700135e226d5c1b2a25756fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
 * Copyright (c) 2021, Mathieu Gaillard <gaillard.mathieu.39@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/RefCounted.h>
#include <AK/Vector.h>

#include "Common.h"

class Mesh : public RefCounted<Mesh> {
public:
    Mesh() = delete;

    Mesh(Vector<Vertex> vertices, Vector<Triangle> triangles);

    size_t vertex_count() const { return m_vertex_list.size(); }

    size_t triangle_count() const { return m_triangle_list.size(); }

    void draw();

private:
    Vector<Vertex> m_vertex_list;
    Vector<Triangle> m_triangle_list;
};