21 lines
411 B
C
Raw Normal View History

2022-04-23 20:49:07 +02:00
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-07-09 23:54:15 +02:00
#pragma once
#include "common/common_types.h"
namespace Shader::Backend {
struct Bindings {
u32 unified{};
u32 uniform_buffer{};
u32 storage_buffer{};
u32 texture{};
u32 image{};
2021-10-24 06:39:01 +02:00
u32 texture_scaling_index{};
u32 image_scaling_index{};
2021-07-09 23:54:15 +02:00
};
} // namespace Shader::Backend