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 <stdio.h> 13 14#include "common/debug.h" 15 16namespace rx 17{ 18 19CompilerMtl::CompilerMtl(ShShaderOutput translatorOutputType) 20 : CompilerImpl(), mTranslatorOutputType(translatorOutputType) 21{} 22 23CompilerMtl::~CompilerMtl() {} 24 25ShShaderOutput CompilerMtl::getTranslatorOutputType() const 26{ 27 return mTranslatorOutputType; 28} 29 30} // namespace rx 31