1// 2// Copyright 2019 The ANGLE Project Authors. All rights reserved. 3// Use of this source code is governed by a BSD-style license that can be 4// found in the LICENSE file. 5// 6// CompilerMtl.mm: 7// Implements the class methods for CompilerMtl. 8// 9 10#include "libANGLE/renderer/metal/CompilerMtl.h" 11 12#include "common/debug.h" 13 14namespace rx 15{ 16 17CompilerMtl::CompilerMtl() : CompilerImpl() {} 18 19CompilerMtl::~CompilerMtl() {} 20 21ShShaderOutput CompilerMtl::getTranslatorOutputType() const 22{ 23 return SH_GLSL_METAL_OUTPUT; 24} 25 26} // namespace rx