Crates.io | clay |
lib.rs | clay |
version | 0.1.2 |
source | src |
created_at | 2019-07-05 02:58:55.643207 |
updated_at | 2019-09-24 09:22:46.898011 |
description | Fast, modular and extendable ray tracer powered by OpenCL |
homepage | https://clay-rs.github.io/ |
repository | https://github.com/clay-rs/clay |
max_upload_size | |
id | 146040 |
size | 157,206 |
Flexible ray tracing engine written in Rust and OpenCL.
Clay ray tracing engine is:
Fast - because of the OpenCL, Clay is able to run its kernel code in massively parallel computing systems (e.g. GPUs), that makes it much faster than CPU-only analogs, and allows it to render images of sufficient quality even in real-time.
Modular - Clay is based on strict but flexible Rust trait system and type parametrization, that means you can assemble desired ray tracing pipeline from primitive building blocks.
Extendable - if desired functionality doesn't exist in Clay yet, you always can write it by yourself by implementing corresponding traits. Moreover, you can even write your own modules of OpenCL code to run on a GPU. (And make a pull request after that, if you want to.)
This project is primarily aimed to be a convenient framework for experimenting with ray tracing, testing new techniques, making proof of concepts and other research activity in this field.
The key principles of the project is modularity and extendability. The performance is also one of the primary goals, as long as it doesn't significantly reduce flexibility.
You can find more information at the Clay project website.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.