diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-12 23:11:25 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-12 23:11:25 +0200 |
commit | 0a08ae14f69f5179c5d8990c41d1d8dbb63be346 (patch) | |
tree | 52a80f3a7b77f1bb0fdf6bcd225c9d1e68270383 /source/LinearUpscale.h | |
parent | Temporarily set all pickups to spawn in the middle of the block from which they fall. (diff) | |
download | cuberite-0a08ae14f69f5179c5d8990c41d1d8dbb63be346.tar cuberite-0a08ae14f69f5179c5d8990c41d1d8dbb63be346.tar.gz cuberite-0a08ae14f69f5179c5d8990c41d1d8dbb63be346.tar.bz2 cuberite-0a08ae14f69f5179c5d8990c41d1d8dbb63be346.tar.lz cuberite-0a08ae14f69f5179c5d8990c41d1d8dbb63be346.tar.xz cuberite-0a08ae14f69f5179c5d8990c41d1d8dbb63be346.tar.zst cuberite-0a08ae14f69f5179c5d8990c41d1d8dbb63be346.zip |
Diffstat (limited to 'source/LinearUpscale.h')
-rw-r--r-- | source/LinearUpscale.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source/LinearUpscale.h b/source/LinearUpscale.h index c20e3d3bb..f8ba45350 100644 --- a/source/LinearUpscale.h +++ b/source/LinearUpscale.h @@ -15,13 +15,19 @@ However, upscaling usually requires generating the "1 +" in each direction. Upscaling is implemented in templates, so that it's compatible with multiple datatypes.
Therefore, there is no cpp file.
+
+InPlace upscaling works on a single array and assumes that the values to work on have already
+been interspersed into the array to the cell boundaries.
+Specifically, a_Array[x * a_AnchorStepX + y * a_AnchorStepY] contains the anchor value.
+
+Regular upscaling takes two arrays and "moves" the input from src to dst; src is expected packed.
*/
/// Linearly interpolates values in the array between the equidistant anchor points; universal data type
-template<typename TYPE> void ArrayLinearUpscale2D(
+template<typename TYPE> void ArrayLinearUpscale2DInPlace(
TYPE * a_Array,
int a_SizeX, int a_SizeY, // Dimensions of the array
int a_AnchorStepX, int a_AnchorStepY // Distances between the anchor points in each direction
|