Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2021-11-01 12:18:30 +0300
committerThomas Dinges <blender@dingto.org>2021-11-01 12:18:30 +0300
commit5327413b37760db2fd1b4457c4dd2db7eee50a8b (patch)
treee0e71f5ac6395a6fa5e48789fa2f90eef452a1e7 /intern/cycles/device/device.h
parent289f013e644ad231b32bbc3144d0458b66a96841 (diff)
Cleanup: Remove Cycles device checks for half float.
All supported devices support half float now, so we can remove the check. Differential Revision: https://developer.blender.org/D13021
Diffstat (limited to 'intern/cycles/device/device.h')
-rw-r--r--intern/cycles/device/device.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/intern/cycles/device/device.h b/intern/cycles/device/device.h
index 3cb177adde7..fdd78b3aa4c 100644
--- a/intern/cycles/device/device.h
+++ b/intern/cycles/device/device.h
@@ -73,7 +73,6 @@ class DeviceInfo {
int num;
bool display_device; /* GPU is used as a display device. */
bool has_nanovdb; /* Support NanoVDB volumes. */
- bool has_half_images; /* Support half-float textures. */
bool has_osl; /* Support Open Shading Language. */
bool has_profiling; /* Supports runtime collection of profiling info. */
bool has_peer_memory; /* GPU has P2P access to memory of another GPU. */
@@ -90,7 +89,6 @@ class DeviceInfo {
num = 0;
cpu_threads = 0;
display_device = false;
- has_half_images = false;
has_nanovdb = false;
has_osl = false;
has_profiling = false;