Removes some other things like: - `TRUST_NO_ONE` which was the same as `#ifndef NDEBUG`. - Replace `reinterpret_cast` by `unwrap` Pull Request: https://projects.blender.org/blender/blender/pulls/129631
18 lines
319 B
C
18 lines
319 B
C
/* SPDX-FileCopyrightText: 2024 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup gpu
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
enum eGPUBackendType {
|
|
GPU_BACKEND_NONE = 0,
|
|
GPU_BACKEND_OPENGL = 1 << 0,
|
|
GPU_BACKEND_METAL = 1 << 1,
|
|
GPU_BACKEND_VULKAN = 1 << 3,
|
|
GPU_BACKEND_ANY = 0xFFFFFFFFu
|
|
};
|