-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdraw_cube.h
41 lines (34 loc) · 922 Bytes
/
draw_cube.h
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
31
32
33
34
35
36
37
38
39
40
41
/*
* Copyright 2020-2021, 2023 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef _DRAW_CUBE_H_
#define _DRAW_CUBE_H_
/***********************************************************************************************************************
* API
**********************************************************************************************************************/
#if defined(__cplusplus)
extern "C" {
#endif
/*!
* @brief Load Texture images.
*
*/
bool load_texture_images(void);
/*!
* @brief Draw cube.
*
*/
void draw_cube(vg_lite_buffer_t *rt);
#if defined(__cplusplus)
}
#endif
/*!
* @}
*/
#endif /* _DRAW_CUBE_H_ */
/***********************************************************************************************************************
* EOF
**********************************************************************************************************************/