Edit

kc3-lang/angle/src/libANGLE/renderer/load_functions_table.h

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2018-07-18 17:23:46
    Hash : ba365939
    Message : Rename angle::Format::ID to angle::FormatID. This allow for predeclaring the enum. It solves some include dependency issues. Bug: angleproject:2729 Change-Id: Ibbbab0796e466c62848404ba277c5f454fd9ac62 Reviewed-on: https://chromium-review.googlesource.com/1142299 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Frank Henigman <fjhenigman@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org>

  • src/libANGLE/renderer/load_functions_table.h
  • //
    // Copyright 2015 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.
    //
    // load_functions_table:
    //   Contains load functions table depending on internal format and ANGLE format.
    //
    
    #ifndef LIBANGLE_RENDERER_LOADFUNCTIONSTABLE_H_
    #define LIBANGLE_RENDERER_LOADFUNCTIONSTABLE_H_
    
    #include "libANGLE/renderer/Format.h"
    
    namespace angle
    {
    rx::LoadFunctionMap GetLoadFunctionsMap(GLenum internalFormat, FormatID angleFormat);
    }  // namespace angle
    
    #endif  // LIBANGLE_RENDERER_LOADFUNCTIONSTABLE_H_