EmbreeSharp 0.2.0
See the version list below for details.
dotnet add package EmbreeSharp --version 0.2.0
NuGet\Install-Package EmbreeSharp -Version 0.2.0
<PackageReference Include="EmbreeSharp" Version="0.2.0" />
<PackageVersion Include="EmbreeSharp" Version="0.2.0" />
<PackageReference Include="EmbreeSharp" />
paket add EmbreeSharp --version 0.2.0
#r "nuget: EmbreeSharp, 0.2.0"
#:package EmbreeSharp@0.2.0
#addin nuget:?package=EmbreeSharp&version=0.2.0
#tool nuget:?package=EmbreeSharp&version=0.2.0
EmbreeSharp
EmbreeSharp is a C# Low-level binding for embree
Target framework is .NET 7
Build
Clone this project.
Put the native libraries into the folder. For example, your OS is win11 x64. You should put embree4.dll, tbb12.dll and tbbmalloc.dll into EmbreeSharp\runtimes\win-x64\native
Now you can build the project by anyway. For example using the cmd dotnet build --configuration Release
This project use Github Action to build automatically. You can check out the build script in .github\workflows\publish.yml for more help
Details
This project use ClangSharp to generate binding code. Generated code with some tweaks.
Currently clangsharp cannot generate bindings for opaque struct. Like RTCDevice, it's actually struct RTCDeviceTy*. We can use System.IntPtr to interop. But for type safety, I think create a C# struct contains a System.IntPtr is the best way.
Unfortunately, I don't know how to autoload the embree which is built by official project. Because it depends on tbb. And tbb is not included in the search path. I use System.Runtime.InteropServices.NativeLibrary.SetDllImportResolver to set custom load logic to support load embree on win, linux and osx.
In the future, I may create some wrapper classes to avoid unsafe API. If you have great idea, welcome PRs!
License
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fix duplication libraries in the nuget package