sculpto
render_primitive.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file render_primitive.h
3 * \brief Render primitive abstract class definition module.
4 *
5 * \author Sabitov Kirill
6 * \date 06 July 2022
7 *********************************************************************/
8
9#pragma once
10
11#include "base.h"
12
13namespace scl
14{
16 class render_primitive abstract
17 {
18 public:
19 using handle = u32;
20
22 virtual handle GetHandle() const = 0;
23 };
24}
Topology object basis class for mesh creating implementation module.
virtual handle GetHandle() const =0
Definition: base.h:33
uint32_t u32
Definition: math_common.h:21