2018-07-17 14:46:44 +02:00
|
|
|
/*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2016 by Mike Erwin.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file blender/gpu/gwn_element.h
|
|
|
|
* \ingroup gpu
|
|
|
|
*
|
|
|
|
* Gawain element list (AKA index buffer)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GWN_ELEMENT_H__
|
|
|
|
#define __GWN_ELEMENT_H__
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2018-07-17 21:11:23 +02:00
|
|
|
#include "GPU_primitive.h"
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
#define GWN_TRACK_INDEX_RANGE 1
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2018-03-14 22:06:20 +01:00
|
|
|
#define GWN_PRIM_RESTART 0xFFFFFFFF
|
|
|
|
|
2016-11-16 16:03:15 -05:00
|
|
|
typedef enum {
|
2018-07-17 14:46:44 +02:00
|
|
|
GWN_INDEX_U8, /* GL has this, Vulkan does not */
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_INDEX_U16,
|
|
|
|
GWN_INDEX_U32
|
|
|
|
} Gwn_IndexBufType;
|
2016-11-16 16:03:15 -05:00
|
|
|
|
2017-08-17 20:37:37 +10:00
|
|
|
typedef struct Gwn_IndexBuf {
|
2018-07-17 14:46:44 +02:00
|
|
|
uint index_len;
|
2017-06-19 20:18:04 +10:00
|
|
|
#if GWN_TRACK_INDEX_RANGE
|
|
|
|
Gwn_IndexBufType index_type;
|
2018-06-16 12:44:20 -06:00
|
|
|
uint32_t gl_index_type;
|
2018-07-17 14:46:44 +02:00
|
|
|
uint min_index;
|
|
|
|
uint max_index;
|
|
|
|
uint base_index;
|
2016-09-13 02:41:43 -04:00
|
|
|
#endif
|
2018-07-17 14:46:44 +02:00
|
|
|
uint32_t vbo_id; /* 0 indicates not yet sent to VRAM */
|
2018-03-14 22:06:20 +01:00
|
|
|
bool use_prim_restart;
|
2017-06-19 20:18:04 +10:00
|
|
|
} Gwn_IndexBuf;
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
void GWN_indexbuf_use(Gwn_IndexBuf*);
|
2018-07-17 14:46:44 +02:00
|
|
|
uint GWN_indexbuf_size_get(const Gwn_IndexBuf*);
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2017-08-17 20:37:37 +10:00
|
|
|
typedef struct Gwn_IndexBufBuilder {
|
2018-07-17 14:46:44 +02:00
|
|
|
uint max_allowed_index;
|
|
|
|
uint max_index_len;
|
|
|
|
uint index_len;
|
2017-06-19 20:18:04 +10:00
|
|
|
Gwn_PrimType prim_type;
|
2018-07-17 14:46:44 +02:00
|
|
|
uint* data;
|
2018-03-14 22:06:20 +01:00
|
|
|
bool use_prim_restart;
|
2017-06-19 20:18:04 +10:00
|
|
|
} Gwn_IndexBufBuilder;
|
2016-09-13 02:41:43 -04:00
|
|
|
|
|
|
|
|
2018-07-17 14:46:44 +02:00
|
|
|
/* supports all primitive types. */
|
|
|
|
void GWN_indexbuf_init_ex(Gwn_IndexBufBuilder*, Gwn_PrimType, uint index_len, uint vertex_len, bool use_prim_restart);
|
2018-03-14 22:06:20 +01:00
|
|
|
|
2018-07-17 14:46:44 +02:00
|
|
|
/* supports only GWN_PRIM_POINTS, GWN_PRIM_LINES and GWN_PRIM_TRIS. */
|
|
|
|
void GWN_indexbuf_init(Gwn_IndexBufBuilder*, Gwn_PrimType, uint prim_len, uint vertex_len);
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2018-07-17 14:46:44 +02:00
|
|
|
void GWN_indexbuf_add_generic_vert(Gwn_IndexBufBuilder*, uint v);
|
2018-03-14 22:06:20 +01:00
|
|
|
void GWN_indexbuf_add_primitive_restart(Gwn_IndexBufBuilder*);
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2018-07-17 14:46:44 +02:00
|
|
|
void GWN_indexbuf_add_point_vert(Gwn_IndexBufBuilder*, uint v);
|
|
|
|
void GWN_indexbuf_add_line_verts(Gwn_IndexBufBuilder*, uint v1, uint v2);
|
|
|
|
void GWN_indexbuf_add_tri_verts(Gwn_IndexBufBuilder*, uint v1, uint v2, uint v3);
|
|
|
|
void GWN_indexbuf_add_line_adj_verts(Gwn_IndexBufBuilder*, uint v1, uint v2, uint v3, uint v4);
|
2016-09-13 02:41:43 -04:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
Gwn_IndexBuf* GWN_indexbuf_build(Gwn_IndexBufBuilder*);
|
|
|
|
void GWN_indexbuf_build_in_place(Gwn_IndexBufBuilder*, Gwn_IndexBuf*);
|
2016-10-23 23:16:54 -04:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
void GWN_indexbuf_discard(Gwn_IndexBuf*);
|
2017-04-13 13:30:53 +10:00
|
|
|
|
|
|
|
|
|
|
|
/* Macros */
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
#define GWN_INDEXBUF_DISCARD_SAFE(elem) do { \
|
2017-04-13 13:30:53 +10:00
|
|
|
if (elem != NULL) { \
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_indexbuf_discard(elem); \
|
2017-04-13 13:30:53 +10:00
|
|
|
elem = NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2018-07-17 14:46:44 +02:00
|
|
|
|
|
|
|
#endif /* __GWN_ELEMENT_H__ */
|