Draw Manager: stop using stack memory!

We still do it a few times, but that helps already. Related to T51718.

Note that it also reinforces the idea that any geometry datablock will
have a generated copy-on-write Mesh provided by Depsgraph.
This commit is contained in:
Dalai Felinto 2017-06-09 15:19:48 +02:00
parent 35f8a02496
commit f35df9a25a
2 changed files with 8 additions and 6 deletions

View File

@ -790,7 +790,7 @@ static void CLAY_cache_populate(void *vedata, Object *ob)
DRW_shgroup_call_sculpt_add(depth_shgrp, ob, ob->obmat);
}
else {
DRW_shgroup_call_add(depth_shgrp, geom, ob->obmat);
DRW_shgroup_call_object_add(depth_shgrp, geom, ob);
}
}

View File

@ -33,6 +33,7 @@
#include "BIF_glutil.h"
#include "BKE_global.h"
#include "BKE_mesh.h"
#include "BKE_object.h"
#include "BKE_pbvh.h"
#include "BKE_paint.h"
@ -210,6 +211,7 @@ typedef struct DRWCall {
float obmat[4][4];
Batch *geometry;
Mesh *mesh; /* Optional. */
Object *ob; /* Optionnal */
} DRWCall;
@ -876,7 +878,7 @@ void DRW_shgroup_call_object_add(DRWShadingGroup *shgroup, Batch *geom, Object *
copy_m4_m4(call->obmat, ob->obmat);
call->geometry = geom;
call->ob = ob;
call->mesh = ob->data;
BLI_addtail(&shgroup->calls, call);
}
@ -1647,13 +1649,13 @@ static void draw_geometry_execute(DRWShadingGroup *shgroup, Batch *geom)
}
}
static void draw_geometry(DRWShadingGroup *shgroup, Batch *geom, const float (*obmat)[4], Object *ob)
static void draw_geometry(DRWShadingGroup *shgroup, Batch *geom, const float (*obmat)[4], Mesh *me)
{
float *texcoloc = NULL;
float *texcosize = NULL;
if (ob != NULL) {
BKE_object_obdata_texspace_get(ob, NULL, &texcoloc, &texcosize, NULL);
if (me != NULL) {
BKE_mesh_texspace_get_reference(me, NULL, &texcoloc, NULL, &texcosize);
}
draw_geometry_prepare(shgroup, obmat, texcoloc, texcosize);
@ -1790,7 +1792,7 @@ static void draw_shgroup(DRWShadingGroup *shgroup, DRWState pass_state)
GPU_SELECT_LOAD_IF_PICKSEL(call);
if (call->head.type == DRW_CALL_SINGLE) {
draw_geometry(shgroup, call->geometry, call->obmat, call->ob);
draw_geometry(shgroup, call->geometry, call->obmat, call->mesh);
}
else {
BLI_assert(call->head.type == DRW_CALL_GENERATE);