suyu/src/video_core/renderer_opengl/gl_shader_gen.cpp
2018-03-26 21:16:59 -04:00

20 lines
465 B
C++

// 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