2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-05-03 23:53:00 +00: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-08-01 21:57:45 +00:00
|
|
|
u32 texture_scaling_index{};
|
|
|
|
u32 image_scaling_index{};
|
2021-05-03 23:53:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Shader::Backend
|