// GENERATED FILE - DO NOT EDIT. // Generated by gen_format_map.py using data from format_map_data.json. // ES3 format info from es3_format_type_combinations.json. // // Copyright 2016 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. // // format_map: // Determining the sized internal format from a (format,type) pair. // Also check es3 format combinations for validity. #include "angle_gl.h" #include "common/debug.h" namespace gl { GLenum GetSizedFormatInternal(GLenum format, GLenum type) { … } bool ValidES3Format(GLenum format) { … } bool ValidES3Type(GLenum type) { … } bool ValidES3FormatCombination(GLenum format, GLenum type, GLenum internalFormat) { … } } // namespace gl