summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libGLESv2/queryconversions.h
blob: da7047f730e9d9975d3e59fdcb896e5894d0ab4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// 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);

}