-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidated types and OpenGL interop
Added all types into a shared crate called cuda-types-sys. Both cuda-driver-sys and cuda-runtime-sys depends on this crate and blacklists all types themselves. Added cuda-gl-interop-sys that contains all GL functions from cuda_gl_interop.h. It depends on cuda-types-sys as well as the external gl crate for OpenGL types like GLuint.
- Loading branch information
Raniz
committed
Sep 24, 2020
1 parent
3a97378
commit 90a551a
Showing
20 changed files
with
10,909 additions
and
10,070 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cuda-driver-sys" | ||
version = "0.3.0" | ||
version = "0.4.0-alpha.1" | ||
authors = ["Toshiki Teramura <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -15,6 +15,12 @@ license = "MIT/Apache-2.0" | |
readme = "../README.md" | ||
categories = [] | ||
|
||
[build-dependencies.bindgen] | ||
version = "~0.55" | ||
|
||
[build-dependencies.cuda-config] | ||
path = "../cuda-config" | ||
version = "0.1.0" | ||
|
||
[dependencies.cuda-types-sys] | ||
path = "../cuda-types-sys" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.