summaryrefslogblamecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_shader_gen.cpp
blob: f242bce1da8b6891abc084bbf7176aa91ec28be5 (plain) (tree)



















                                                                   
// 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) {
    UNIMPLEMENTED();
    return {};
}

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

} // namespace GLShader