#opengl #opencl #opengl-context #gpu #gpgpu #gl

sys ocl-interop

创建一个启用了OpenGL互操作的OpenCL上下文

3个版本

使用旧的Rust 2015

0.1.6 2023年10月10日
0.1.5 2019年1月18日
0.1.4 2018年1月11日

#549并发

Download history • Rust 包仓库 115/week @ 2024-04-08 • Rust 包仓库 97/week @ 2024-04-15 • Rust 包仓库 88/week @ 2024-04-22 • Rust 包仓库 105/week @ 2024-04-29 • Rust 包仓库 136/week @ 2024-05-06 • Rust 包仓库 113/week @ 2024-05-13 • Rust 包仓库 164/week @ 2024-05-20 • Rust 包仓库 128/week @ 2024-05-27 • Rust 包仓库 114/week @ 2024-06-03 • Rust 包仓库 117/week @ 2024-06-10 • Rust 包仓库 135/week @ 2024-06-17 • Rust 包仓库 155/week @ 2024-06-24 • Rust 包仓库 57/week @ 2024-07-01 • Rust 包仓库 72/week @ 2024-07-08 • Rust 包仓库 136/week @ 2024-07-15 • Rust 包仓库 117/week @ 2024-07-22 • Rust 包仓库

每月395次下载

MIT/Apache

660KB
12K SLoC

Rust的OpenCL + OpenGL互操作性

创建一个启用了OpenGL互操作的上下文。DirectX互操作理论上可行,但尚未实现。MacOS & OpenGL ES支持尚未测试,但应该可以工作。

用法

您首选的OpenGL库应已设置并正常运行。

在您的 Cargo.toml 中添加以下内容

ocl-interop = "0.1"

在您的crate根目录(lib.rs或main.rs)中添加以下内容

extern crate ocl_interop;

当您需要上下文时

// First, create an OpenGL context and make sure it is active...

// Next, Create an OpenCL context with the interop enabled: (NOTE:
// `::get_context` will return the first available GPU device on your that
// supports OpenGL interop on your system -- you may need to choose a device
// and create the context manually instead if this does not work):
let context = ocl_interop::get_context()?;

// Later, after creating an OpenGL buffer...

// Create an OpenCL buffer from an OpenGL buffer:
let cl_buffer = ocl::Buffer::<f32>::from_gl_buffer(&queue, None, gl_buffer)?;

// Acquire the buffer, making it usable:
cl_buffer.cmd().gl_acquire().enq()?;

// Use the buffer...

// Release the acquisition:
cl_buffer.cmd().gl_release().enq()?;

依赖项

~2–2.6MB
~46K SLoC