summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/shader_info.h
blob: 8766bf13e992c03d9171bb6ddc3275e69470372f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <array>

#include "common/common_types.h"

#include <boost/container/static_vector.hpp>

namespace Shader {

struct Info {
    static constexpr size_t MAX_CBUFS{18};
    static constexpr size_t MAX_SSBOS{16};

    struct ConstantBufferDescriptor {
        u32 index;
        u32 count;
    };

    struct StorageBufferDescriptor {
        u32 cbuf_index;
        u32 cbuf_offset;
        u32 count;
    };

    bool uses_workgroup_id{};
    bool uses_local_invocation_id{};
    bool uses_fp16{};
    bool uses_fp64{};
    bool uses_fp16_denorms_flush{};
    bool uses_fp16_denorms_preserve{};
    bool uses_fp32_denorms_flush{};
    bool uses_fp32_denorms_preserve{};

    u32 constant_buffer_mask{};

    boost::container::static_vector<ConstantBufferDescriptor, MAX_CBUFS>
        constant_buffer_descriptors;
    boost::container::static_vector<StorageBufferDescriptor, MAX_SSBOS> storage_buffers_descriptors;
};

} // namespace Shader