/* * Copyright (c) 2022, Stephan Unverwerth * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace GLSL { ErrorOr> Compiler::compile(Vector const&) { // FIXME: implement this function m_messages = {}; return try_make(); } }