Change project structure;

Added new c# binding;
This commit is contained in:
2025-12-30 20:54:05 +09:00
parent 5f5404268c
commit f1d3dddb9a
392 changed files with 2694 additions and 360462 deletions

View File

@@ -0,0 +1,15 @@
#ifndef ATROUS_H
#define ATROUS_H
// TODO: Since a trous requires albedo and normal buffer, we may need to implement aov first.
const float kernel[5][5] =
{
{1.0f/256, 4.0f/256, 6.0f/256, 4.0f/256, 1.0f/256},
{4.0f/256,16.0f/256,24.0f/256,16.0f/256, 4.0f/256},
{6.0f/256,24.0f/256,36.0f/256,24.0f/256, 6.0f/256},
{4.0f/256,16.0f/256,24.0f/256,16.0f/256, 4.0f/256},
{1.0f/256, 4.0f/256, 6.0f/256, 4.0f/256, 1.0f/256}
};
#endif // ATROUS_H