summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_shader_manager.h
blob: 70781d6f5f9930dafb18b6707ff8c0d97afb09f1 (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
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <glad/glad.h>

namespace OpenGL {

class ProgramManager {
public:
    void BindProgram(GLuint program) {
        if (bound_program == program) {
            return;
        }
        bound_program = program;
        glUseProgram(program);
    }

    void RestoreGuestCompute() {}

private:
    GLuint bound_program = 0;
};

} // namespace OpenGL