PostGIS  3.4.0dev-r@@SVN_REVISION@@
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages

◆ rtpg_setvaluesgv_arg_init()

static rtpg_setvaluesgv_arg rtpg_setvaluesgv_arg_init ( )
static

Definition at line 1295 of file rtpg_pixel.c.

1295  {
1296  rtpg_setvaluesgv_arg arg = palloc(sizeof(struct rtpg_setvaluesgv_arg_t));
1297  if (arg == NULL) {
1298  elog(ERROR, "rtpg_setvaluesgv_arg_init: Could not allocate memory for function arguments");
1299  return NULL;
1300  }
1301 
1302  arg->ngv = 0;
1303  arg->gv = NULL;
1304  arg->keepnodata = 0;
1305 
1306  return arg;
1307 }
rtpg_setvaluesgv_geomval gv
Definition: rtpg_pixel.c:1280

References rtpg_setvaluesgv_arg_t::gv, rtpg_setvaluesgv_arg_t::keepnodata, and rtpg_setvaluesgv_arg_t::ngv.

Referenced by RASTER_setPixelValuesGeomval().

Here is the caller graph for this function: