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:
authorDaniel Dunbar <daniel@zuster.org>2005-03-29 01:49:49 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-03-29 01:49:49 +0400
commit67eaf69f3f8a44048c698c9e325104e3fc5c99bf (patch)
treee9bf6b590baeb86f40b43e0aa24116e5949d641e /source/blender/blenlib/BLI_memarena.h
parent7dbb253908de5fdd6d5992bdeb38abaaf270808c (diff)
- added mesh_get_derived_render
- cancelled previous commit to add RE_findTFAce, instead just added a MemArena to render struct... free'd at end of render, can be used to store other data as well - switch rendering to using DerivedMesh API... this is slightly more inefficient now because it is doing some unnecessary copying. Can be fixed by defining a DerivedMesh function to convert the object into a render object (on todo list)
Diffstat (limited to 'source/blender/blenlib/BLI_memarena.h')
-rw-r--r--source/blender/blenlib/BLI_memarena.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_memarena.h b/source/blender/blenlib/BLI_memarena.h
index c00d9b9be51..1423cae52af 100644
--- a/source/blender/blenlib/BLI_memarena.h
+++ b/source/blender/blenlib/BLI_memarena.h
@@ -44,7 +44,7 @@
* enough to not cause much internal fragmentation,
* small enough not to waste resources
*/
-#define BLI_MEMARENA_STD_BUFSIZE 4096
+#define BLI_MEMARENA_STD_BUFSIZE (1<<14)
struct MemArena;
typedef struct MemArena MemArena;