We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f844a97 commit c8841dcCopy full SHA for c8841dc
cuda_rasterizer/forward.h
@@ -55,11 +55,13 @@ namespace FORWARD
55
int W, int H,
56
const float2* points_xy_image,
57
const float* features,
58
+ const float* depths,
59
const float4* conic_opacity,
60
float* final_T,
61
uint32_t* n_contrib,
62
const float* bg_color,
- float* out_color);
63
+ float* out_color,
64
+ float* out_depth);
65
}
66
67
cuda_rasterizer/rasterizer.h
@@ -49,6 +49,7 @@ namespace CudaRasterizer
49
const float tan_fovx, float tan_fovy,
50
const bool prefiltered,
51
float* out_color,
52
+ float* out_depth,
53
int* radii = nullptr);
54
static void backward(
0 commit comments