PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ mvt_ctx_combine()

mvt_agg_context* mvt_ctx_combine ( mvt_agg_context ctx1,
mvt_agg_context ctx2 
)

Definition at line 1239 of file mvt.c.

1240 {
1241  if (ctx1 || ctx2)
1242  {
1243  if (ctx1 && ! ctx2) return ctx1;
1244  if (ctx2 && ! ctx1) return ctx2;
1245  if (ctx1 && ctx2 && ctx1->tile && ctx2->tile)
1246  {
1247  mvt_agg_context *ctxnew = palloc(sizeof(mvt_agg_context));
1248  memset(ctxnew, 0, sizeof(mvt_agg_context));
1249  ctxnew->tile = vectortile_tile_combine(ctx1->tile, ctx2->tile);
1250  return ctxnew;
1251  }
1252  else
1253  {
1254  elog(DEBUG2, "ctx1->tile = %p", ctx1->tile);
1255  elog(DEBUG2, "ctx2->tile = %p", ctx2->tile);
1256  elog(ERROR, "%s: unable to combine contexts where tile attribute is null", __func__);
1257  return NULL;
1258  }
1259  }
1260  else
1261  {
1262  return NULL;
1263  }
1264 }
static VectorTile__Tile * vectortile_tile_combine(VectorTile__Tile *tile1, VectorTile__Tile *tile2)
Definition: mvt.c:1200
VectorTile__Tile * tile
Definition: mvt.h:77

References mvt_agg_context::tile, and vectortile_tile_combine().

Referenced by pgis_asmvt_combinefn().

Here is the call graph for this function:
Here is the caller graph for this function: