gitworld / phase2-unreal /Compute /GitWorldBuildPass.h
SNAPKITTYWEST's picture
push from SNAPKITTYWEST/gitworld
6281708 verified
Raw
History Blame Contribute Delete
294 Bytes
#pragma once
#if defined(_WIN32)
#define GITWORLD_CUDA_API __declspec(dllexport)
#else
#define GITWORLD_CUDA_API
#endif
extern "C"
{
GITWORLD_CUDA_API int GW_CudaBuildPass(
const float* Input,
float* Output,
int Count,
int* DeviceIndex);
}