21 lines
601 B
C++
21 lines
601 B
C++
//
|
|
// 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_
|