1bea8e1eac
-Added LocalVector (needed it) -Added stb_rect_pack (It's pretty cool, we could probably use it for other stuff too) -Fixes and changes all around the place -Added library for 128 bits fixed point (required for Delaunay3D)
9 lines
228 B
C++
9 lines
228 B
C++
#ifndef DENOISE_WRAPPER_H
|
|
#define DENOISE_WRAPPER_H
|
|
|
|
void *oidn_denoiser_init();
|
|
bool oidn_denoise(void *device, float *p_floats, int p_width, int p_height);
|
|
void oidn_denoiser_finish(void *device);
|
|
|
|
#endif // DENOISE_WRAPPER_H
|