Reader small image

You're reading from  Become a Unity Shaders Guru

Product typeBook
Published inJul 2023
Reading LevelN/a
PublisherPackt
ISBN-139781837636747
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
Mina Pêcheux
Mina Pêcheux
author image
Mina Pêcheux

Mina Pêcheux is a freelance content creator who has been passionate about game development since an early age. She is a graduate of the French Polytech School of Engineering in applied mathematics and computer science. After a couple of years of working as a data scientist and web developer in startups, she turned to freelancing and online instructional content creation to reconnect with what brightens her days: learning new things everyday, sharing with others and creating multi-field projects mixing science, technology, and art.
Read more about Mina Pêcheux

Right arrow

Generating a grid of randomized cubes

Alright – we now know what compute shaders and compute buffers are. To truly understand how they can be used in a real-life scenario, however, let’s discuss a basic example where compute shaders can greatly improve performance: the generation of a grid of randomly positioned and colored cubes.

We will first see how this simple process can be performed with a naive approach that runs on the CPU to get familiar with the problem, and then explore the limitations of this implementation. Finally, we will transfer our logic over to the GPU by using a compute shader and see how it boosts our performance.

Writing a naive C# implementation

Before diving into GPU offloading and performance enhancement, it stands to reason that we must first establish a baseline – or, in other words, a reference to compare our “improved” version against. So, first, let’s create a simple implementation of our random color...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Become a Unity Shaders Guru
Published in: Jul 2023Publisher: PacktISBN-13: 9781837636747

Author (1)

author image
Mina Pêcheux

Mina Pêcheux is a freelance content creator who has been passionate about game development since an early age. She is a graduate of the French Polytech School of Engineering in applied mathematics and computer science. After a couple of years of working as a data scientist and web developer in startups, she turned to freelancing and online instructional content creation to reconnect with what brightens her days: learning new things everyday, sharing with others and creating multi-field projects mixing science, technology, and art.
Read more about Mina Pêcheux