1 // 2 // Copyright (c) 2014 The ANGLE Project Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style license that can be 4 // found in the LICENSE file. 5 // 6 7 // queryconversions.h: Declaration of state query cast conversions 8 9 namespace gl 10 { 11 12 // The GL state query API types are: bool, int, uint, float, int64 13 template <typename QueryT> 14 void CastStateValues(Context *context, GLenum nativeType, GLenum pname, 15 unsigned int numParams, QueryT *outParams); 16 17 } 18