Changeset View
Changeset View
Standalone View
Standalone View
source/blender/gpu/intern/gpu_private.h
- This file was copied to source/blender/windowmanager/intern/wm_platform_support.h.
| Show All 16 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup gpu | * \ingroup gpu | ||||
| */ | */ | ||||
| #ifndef __GPU_PRIVATE_H__ | #ifndef __GPU_PRIVATE_H__ | ||||
| #define __GPU_PRIVATE_H__ | #define __GPU_PRIVATE_H__ | ||||
| /* call this before running any of the functions below */ | /* call this before running any of the functions below */ | ||||
| void gpu_platform_init(void); | |||||
| void gpu_platform_exit(void); | |||||
brecht: Nitpick, add empty line below. | |||||
| /* call this before running any of the functions below */ | |||||
| void gpu_extensions_init(void); | void gpu_extensions_init(void); | ||||
| void gpu_extensions_exit(void); | void gpu_extensions_exit(void); | ||||
| /* gpu_debug.c */ | /* gpu_debug.c */ | ||||
| void gpu_debug_init(void); | void gpu_debug_init(void); | ||||
| void gpu_debug_exit(void); | void gpu_debug_exit(void); | ||||
| /* gpu_framebuffer.c */ | /* gpu_framebuffer.c */ | ||||
| void gpu_framebuffer_module_init(void); | void gpu_framebuffer_module_init(void); | ||||
| void gpu_framebuffer_module_exit(void); | void gpu_framebuffer_module_exit(void); | ||||
| /* gpu_pbvh.c */ | /* gpu_pbvh.c */ | ||||
| void gpu_pbvh_init(void); | void gpu_pbvh_init(void); | ||||
| void gpu_pbvh_exit(void); | void gpu_pbvh_exit(void); | ||||
| #endif /* __GPU_PRIVATE_H__ */ | #endif /* __GPU_PRIVATE_H__ */ | ||||
Nitpick, add empty line below.