2022-08-28 14:23:30 -03:00
|
|
|
/*
|
|
|
|
|
* 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
|
2023-01-20 09:45:02 -03:00
|
|
|
m_messages = {};
|
2023-02-10 22:53:39 -03:00
|
|
|
return try_make<ObjectFile>();
|
2022-08-28 14:23:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|