yuzu/src/shader_recompiler/backend/bindings.h

21 lines
411 B
C
Raw Normal View History

2022-04-23 22:49:07 +04:00
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-07-10 01:54:15 +04: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 08:39:01 +04:00
u32 texture_scaling_index{};
u32 image_scaling_index{};
2021-07-10 01:54:15 +04:00
};
} // namespace Shader::Backend