summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_compute_program.h
blob: 64a75d44d266d82b58ea943253da7edc462d67b3 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <array>
#include <type_traits>
#include <utility>

#include "common/common_types.h"
#include "shader_recompiler/shader_info.h"
#include "video_core/renderer_opengl/gl_buffer_cache.h"
#include "video_core/renderer_opengl/gl_resource_manager.h"
#include "video_core/renderer_opengl/gl_texture_cache.h"

namespace Tegra {
class MemoryManager;
}

namespace Tegra::Engines {
class KeplerCompute;
}

namespace Shader {
struct Info;
}

namespace OpenGL {

class ProgramManager;

struct ComputeProgramKey {
    u64 unique_hash;
    u32 shared_memory_size;
    std::array<u32, 3> workgroup_size;

    size_t Hash() const noexcept;

    bool operator==(const ComputeProgramKey&) const noexcept;

    bool operator!=(const ComputeProgramKey& rhs) const noexcept {
        return !operator==(rhs);
    }
};
static_assert(std::has_unique_object_representations_v<ComputeProgramKey>);
static_assert(std::is_trivially_copyable_v<ComputeProgramKey>);
static_assert(std::is_trivially_constructible_v<ComputeProgramKey>);

class ComputeProgram {
public:
    explicit ComputeProgram(TextureCache& texture_cache_, BufferCache& buffer_cache_,
                            Tegra::MemoryManager& gpu_memory_,
                            Tegra::Engines::KeplerCompute& kepler_compute_,
                            ProgramManager& program_manager_, OGLProgram program_,
                            const Shader::Info& info_);

    void Configure();

private:
    TextureCache& texture_cache;
    BufferCache& buffer_cache;
    Tegra::MemoryManager& gpu_memory;
    Tegra::Engines::KeplerCompute& kepler_compute;
    ProgramManager& program_manager;

    OGLProgram program;
    Shader::Info info;

    u32 num_texture_buffers{};
    u32 num_image_buffers{};
};

} // namespace OpenGL

namespace std {
template <>
struct hash<OpenGL::ComputeProgramKey> {
    size_t operator()(const OpenGL::ComputeProgramKey& k) const noexcept {
        return k.Hash();
    }
};
} // namespace std