Edit

kc3-lang/angle/src/compiler/ExtensionBehavior.h

Branch :

  • Show log

    Commit

  • Author : zmo@google.com
    Date : 2011-08-12 18:22:25
    Hash : 09c323a4
    Message : Add an option to support for GL_OES_EGL_image_external. Comes with this extension is the new sampler type samplerExternalOES. ANGLEBUG=175 TEST=compile the attached shader file Review URL: http://codereview.appspot.com/4809076 git-svn-id: https://angleproject.googlecode.com/svn/trunk@728 736b8ea6-26fd-11df-bfd4-992fa37f6226

  • src/compiler/ExtensionBehavior.h
  • //
    // Copyright (c) 2002-2010 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 _EXTENSION_BEHAVIOR_INCLUDED_
    #define _EXTENSION_BEHAVIOR_INCLUDED_
    
    #include "compiler/Common.h"
    
    typedef enum {
        EBhRequire,
        EBhEnable,
        EBhWarn,
        EBhDisable,
        EBhUndefined,
    } TBehavior;
    
    inline const char* getBehaviorString(TBehavior b)
    {
        switch(b) {
          case EBhRequire:
            return "require";
          case EBhEnable:
            return "enable";
          case EBhWarn:
            return "warn";
          case EBhDisable:
            return "disable";
          default:
            return NULL;
        }
    }
    
    typedef TMap<TString, TBehavior> TExtensionBehavior;
    
    #endif // _EXTENSION_TABLE_INCLUDED_