示例#1
0
文件: vxo_box.c 项目: DH-std/A3
// will run when the program vx_global_destroy() is called by user at end of program
static void vxo_box_destroy(void * ignored)
{
    vx_resc_dec_destroy(vertex_points);
    vx_resc_dec_destroy(line_indices);
    vx_resc_dec_destroy(tri_points);
    vx_resc_dec_destroy(tri_normals);
}
示例#2
0
文件: vxo_grid.c 项目: DH-std/A3
// will run when the program vx_global_destroy() is called by user at end of program
static void vxo_grid_destroy(void * ignored)
{
    vx_resc_dec_destroy(grid_vertices);
}
示例#3
0
// will run when the program vx_global_destroy() is called by user at end of program
static void vxo_rect_destroy(void * ignored)
{
    vx_resc_dec_destroy(points);
    vx_resc_dec_destroy(indices);
    vx_resc_dec_destroy(normals);
}
示例#4
0
文件: vxo_robot.c 项目: DH-std/A3
// will run when the program vx_global_destroy() is called by user at
// the end of program
static void vxo_robot_destroy(void * ignored)
{
    vx_resc_dec_destroy(points);
}