Edit

kc3-lang/angle/src/libANGLE/queryconversions.h

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2014-12-04 10:27:25
    Hash : a0c18434
    Message : Fix stray ANGLE_EXPORT. BUG=angle:733 Change-Id: Ia4a84bea483ac11a2326d2402649affe10d661c9 Reviewed-on: https://chromium-review.googlesource.com/232942 Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>

  • src/libANGLE/queryconversions.h
  • //
    // Copyright (c) 2014 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.
    //
    
    // queryconversions.h: Declaration of state query cast conversions
    
    namespace gl
    {
    
    // The GL state query API types are: bool, int, uint, float, int64
    template <typename QueryT>
    void CastStateValues(Context *context, GLenum nativeType, GLenum pname,
                         unsigned int numParams, QueryT *outParams);
    
    }