Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Bishop <nicholasbishop@gmail.com>2011-11-05 07:29:37 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2011-11-05 07:29:37 +0400
commita71e2c498cbb3c1ec077e38e0fcb8ee1581e4d6b (patch)
tree0142045b5607a9e02bf4f1837e8d459a10c4f231 /source/blender/blenlib/intern/pbvh.c
parentcc7e79f37272c9e9565d6eb456138a6f07fea9fc (diff)
GPU Buffers
Small type cleanup, use `GPU_Buffers *' rather than `void *'. Should be no functional changes.
Diffstat (limited to 'source/blender/blenlib/intern/pbvh.c')
-rw-r--r--source/blender/blenlib/intern/pbvh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/pbvh.c b/source/blender/blenlib/intern/pbvh.c
index 9471f096682..5a8e378e8c4 100644
--- a/source/blender/blenlib/intern/pbvh.c
+++ b/source/blender/blenlib/intern/pbvh.c
@@ -80,7 +80,7 @@ typedef struct {
struct PBVHNode {
/* Opaque handle for drawing code */
- void *draw_buffers;
+ GPU_Buffers *draw_buffers;
/* Voxel bounds */
BB vb;