PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ mvt_ctx_combine()

mvt_agg_context* mvt_ctx_combine ( mvt_agg_context ctx1,
mvt_agg_context ctx2 
)

Definition at line 1265 of file mvt.c.

1266 {
1267  if (ctx1 || ctx2)
1268  {
1269  if (ctx1 && ! ctx2) return ctx1;
1270  if (ctx2 && ! ctx1) return ctx2;
1271  if (ctx1 && ctx2 && ctx1->tile && ctx2->tile)
1272  {
1273  mvt_agg_context *ctxnew = palloc(sizeof(mvt_agg_context));
1274  memset(ctxnew, 0, sizeof(mvt_agg_context));
1275  ctxnew->tile = vectortile_tile_combine(ctx1->tile, ctx2->tile);
1276  return ctxnew;
1277  }
1278  else
1279  {
1280  elog(DEBUG2, "ctx1->tile = %p", ctx1->tile);
1281  elog(DEBUG2, "ctx2->tile = %p", ctx2->tile);
1282  elog(ERROR, "%s: unable to combine contexts where tile attribute is null", __func__);
1283  return NULL;
1284  }
1285  }
1286  else
1287  {
1288  return NULL;
1289  }
1290 }
static VectorTile__Tile * vectortile_tile_combine(VectorTile__Tile *tile1, VectorTile__Tile *tile2)
Definition: mvt.c:1226
VectorTile__Tile * tile
Definition: mvt.h:80

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: