Hash :
ba365939
Author :
Date :
2018-07-18T17:23:46
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>
//
// 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_