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

Optimizing your runtime performance

There are various interesting low-level optimizations you can do to improve your shaders and keep your code fast.

In the following sections, we will see why the precision of your computations matters, which mathematical operations are considered “complex” and can slow down your shaders, and how some particular cases such as alpha testing may benefit from platform-specific implementations. Finally, we’ll discuss how picking the right esthetics for your project can sometimes help with technical limitations.

Float, half, or fixed?

If you’re a bit familiar with Unity shaders, then you’ve probably already seen that, depending on the tutorial you look at, fragment shader functions may return either float4 or half4. This might be surprising at first: how come the same function can use different types like this, and why choose one over the other?

Well, a key idea to keep in mind when doing intensive calculations...

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