summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_shader_gen.cpp
blob: 8f3c988009da77d838d84d2db9b1f7fe29b1e76c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/assert.h"
#include "video_core/renderer_opengl/gl_shader_gen.h"

namespace GLShader {

std::string GenerateVertexShader(const MaxwellVSConfig& config) {
    UNREACHABLE();
    return {};
}

std::string GenerateFragmentShader(const MaxwellFSConfig& config) {
    UNREACHABLE();
    return {};
}

} // namespace GLShader