1 // 2 // Copyright 2015 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 7 // CompilerGL.h: Defines the class interface for CompilerGL. 8 9 #ifndef LIBANGLE_RENDERER_GL_COMPILERGL_H_ 10 #define LIBANGLE_RENDERER_GL_COMPILERGL_H_ 11 12 #include "libANGLE/renderer/CompilerImpl.h" 13 14 namespace rx 15 { 16 class FunctionsGL; 17 18 class CompilerGL : public CompilerImpl 19 { 20 public: 21 CompilerGL(const FunctionsGL *functions); ~CompilerGL()22 ~CompilerGL() override {} 23 24 ShShaderOutput getTranslatorOutputType() const override; 25 26 private: 27 ShShaderOutput mTranslatorOutputType; 28 }; 29 30 } // namespace rx 31 32 #endif // LIBANGLE_RENDERER_GL_COMPILERGL_H_ 33