File size: 403 Bytes
c75b162
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CUDA_RASTERIZER_UTILS_H_INCLUDED
#define CUDA_RASTERIZER_UTILS_H_INCLUDED

#include <cuda.h>
#include "cuda_runtime.h"
#include "device_launch_parameters.h"

namespace UTILS
{
    void ComputeRelocation(
        int P,
        float* opacity_old,
        float* scale_old,
        int* N,
        float* binoms,
        int n_max,
        float* opacity_new,
        float* scale_new);
}

#endif