Edit

kc3-lang/angle/src/compiler/translator/TranslatorESSL.h

Branch :

  • Show log

    Commit

  • Author : Olli Etuaho
    Date : 2015-03-03 17:21:10
    Hash : 8efc5ad5
    Message : Initialize BuiltInFunctionEmulator outside Compiler This moves GLSL output specific code from the Compiler class to the GLSL/ESSL translators. BUG=angleproject:865 Change-Id: I2d552e9cdb41f7d8ddfee7b0249a99d629a6d7d7 Reviewed-on: https://chromium-review.googlesource.com/255471 Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Olli Etuaho <oetuaho@nvidia.com>

  • src/compiler/translator/TranslatorESSL.h
  • //
    // Copyright (c) 2002-2011 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    #ifndef COMPILER_TRANSLATOR_TRANSLATORESSL_H_
    #define COMPILER_TRANSLATOR_TRANSLATORESSL_H_
    
    #include "compiler/translator/Compiler.h"
    
    class TranslatorESSL : public TCompiler
    {
      public:
        TranslatorESSL(sh::GLenum type, ShShaderSpec spec);
    
      protected:
        void initBuiltInFunctionEmulator(BuiltInFunctionEmulator *emu, int compileOptions) override;
    
        virtual void translate(TIntermNode *root, int compileOptions);
    
      private:
        void writeExtensionBehavior();
    };
    
    #endif  // COMPILER_TRANSLATOR_TRANSLATORESSL_H_