Skip to content

Add rendering category and subcategories #525

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion src/categories.toml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Crates that record, output, or process video.
[multimedia.categories.images]
name = "Images"
description = """
Crates that process or render images.
Crates that process or build images.
"""

[multimedia.categories.encoding]
Expand Down Expand Up @@ -297,6 +297,33 @@ formats. Format-specific parsers belong in other, more specific \
categories.\
"""

[rendering]
name = "Rendering"
description = """
Real-time or offline rendering of 2D or 3D graphics, \
usually with the help of a graphics card.\
"""

[rendering.categories.engine]
name = "Rendering engine"
description = """
High-level solutions for rendering on the screen.\
"""

[rendering.categories.graphics-api]
name = "Graphics APIs"
description = """
Crates that provide direct access to the hardware's or the operating \
system's rendering capabilities.\
"""

[rendering.categories.data-formats]
name = "Data formats"
description = """
Loading and parsing of data formats related to 2D or 3D rendering, like \
3D models or animation sheets.\
"""

[rust-patterns]
name = "Rust patterns"
description = """
Expand Down