kml_interp_accel_reset
Reset accelerator object a. This function needs to be used when the information is no longer applicable, for example, when a new data array is used.
Interface Definition
int kml_interp_accel_reset(kml_interp_accel *a)
Parameters
Parameter |
Type |
Description |
Input/Output |
|---|---|---|---|
a |
kml_interp_accel * |
Accelerator pointer. |
Output |
Dependencies
#include "kml_interp.h"
Examples
1 2 | kml_interp_accel *acc = kml_interp_accel_alloc(); kml_interp_accel_reset(acc); |
Parent topic: Acceleration Functions