• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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() : CompilerImpl() {}
20
21CompilerMtl::~CompilerMtl() {}
22
23ShShaderOutput CompilerMtl::getTranslatorOutputType() const
24{
25    return SH_MSL_METAL_OUTPUT;
26}
27
28}  // namespace rx
29