Edit

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

Branch :

  • Show log

    Commit

  • Author : Corentin Wallez
    Date : 2015-05-19 16:38:47
    Hash : a588ef5b
    Message : Fix most occurences of -Winconsistent-missing-override Other occurences are in code generated by macro in googlemock. BUG=angleproject:892 Change-Id: I8b2c6ad4b793be2d9a440687b1b010c9feb8bdae Reviewed-on: https://chromium-review.googlesource.com/272224 Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>

  • 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;
    
        void translate(TIntermNode *root, int compileOptions) override;
    
      private:
        void writeExtensionBehavior();
    };
    
    #endif  // COMPILER_TRANSLATOR_TRANSLATORESSL_H_