blob: 3a709dd654f25fb501cd8f7a0a5093c78cb4a76f [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "lib/escher/escher_process_init.h"
#include "glslang/Public/ShaderLang.h"
namespace escher {
void GlslangInitializeProcess() {
glslang::InitializeProcess();
}
void GlslangFinalizeProcess() {
glslang::FinalizeProcess();
}
} // namespace escher