From 8cd7828792419fb4eac9a2a477968535b4c71535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Wed, 18 Jul 2018 00:12:21 +0200 Subject: GWN: Port to GPU module: Replace GWN prefix by GPU --- source/blender/gpu/intern/gpu_batch_private.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source/blender/gpu/intern/gpu_batch_private.h') diff --git a/source/blender/gpu/intern/gpu_batch_private.h b/source/blender/gpu/intern/gpu_batch_private.h index 1e72bae503f..0b25c0aef05 100644 --- a/source/blender/gpu/intern/gpu_batch_private.h +++ b/source/blender/gpu/intern/gpu_batch_private.h @@ -23,15 +23,15 @@ * ***** END GPL LICENSE BLOCK ***** */ -/** \file blender/gpu/gwn_batch_private.h +/** \file blender/gpu/intern/gpu_batch_private.h * \ingroup gpu * - * Gawain geometry batch + * GPU geometry batch * Contains VAOs + VBOs + Shader representing a drawable entity. */ -#ifndef __GWN_BATCH_PRIVATE_H__ -#define __GWN_BATCH_PRIVATE_H__ +#ifndef __GPU_BATCH_PRIVATE_H__ +#define __GPU_BATCH_PRIVATE_H__ #ifdef __cplusplus extern "C" { @@ -41,13 +41,13 @@ extern "C" { #include "GPU_context.h" #include "GPU_shader_interface.h" -void gwn_batch_remove_interface_ref(Gwn_Batch*, const Gwn_ShaderInterface*); +void gpu_batch_remove_interface_ref(GPUBatch*, const GPUShaderInterface*); -void gwn_context_add_batch(Gwn_Context*, Gwn_Batch*); -void gwn_context_remove_batch(Gwn_Context*, Gwn_Batch*); +void gpu_context_add_batch(GPUContext*, GPUBatch*); +void gpu_context_remove_batch(GPUContext*, GPUBatch*); #ifdef __cplusplus } #endif -#endif /* __GWN_BATCH_PRIVATE_H__ */ +#endif /* __GPU_BATCH_PRIVATE_H__ */ -- cgit v1.2.3