blob: def3d7fe619ea06cfe611f290765bfe68a4e3a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGLSL/Compiler.h>
namespace GLSL {
ErrorOr<NonnullOwnPtr<ObjectFile>> Compiler::compile(Vector<String> const&)
{
// FIXME: implement this function
m_messages = {};
return try_make<ObjectFile>();
}
}
|