Files
test2/source/blender/gpu/intern/gpu_vertex_format_private.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
525 B
C
Raw Normal View History

/* SPDX-FileCopyrightText: 2016 by Mike Erwin. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup gpu
*
* GPU vertex format
*/
#pragma once
2020-07-25 18:10:43 +02:00
#ifdef __cplusplus
extern "C" {
#endif
struct GPUVertFormat;
void VertexFormat_pack(struct GPUVertFormat *format);
void VertexFormat_texture_buffer_pack(struct GPUVertFormat *format);
uint padding(uint offset, uint alignment);
uint vertex_buffer_size(const struct GPUVertFormat *format, uint vertex_len);
2020-07-25 18:10:43 +02:00
#ifdef __cplusplus
}
#endif