Edit

kc3-lang/angle/src/compiler/timing/RestrictVertexShaderTiming.cpp

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2013-07-08 13:30:19
    Hash : 075edd84
    Message : Refactor location tracking. R=kbr@chromium.org Review URL: https://codereview.appspot.com/9078046 git-svn-id: https://angleproject.googlecode.com/svn/trunk@2202 736b8ea6-26fd-11df-bfd4-992fa37f6226 TRAC #23333 Authored-by: alokp@chromium.org Signed-off-by: Shannon Woods Signed-off-by Nicolas Capens Merged-by: Jamie Madill

  • src/compiler/timing/RestrictVertexShaderTiming.cpp
  • //
    // Copyright (c) 2012 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.
    //
    
    #include "compiler/timing/RestrictVertexShaderTiming.h"
    
    void RestrictVertexShaderTiming::visitSymbol(TIntermSymbol* node)
    {
        if (IsSampler(node->getBasicType())) {
            ++mNumErrors;
            mSink.message(EPrefixError,
                          node->getLine(),
                          "Samplers are not permitted in vertex shaders.\n");
        }
    }