2014-03-03 19:46:33 +04:00
|
|
|
//
|
2019-08-14 22:25:12 +03:00
|
|
|
// Copyright 2014 The ANGLE Project Authors. All rights reserved.
|
2014-03-03 19:46:33 +04:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SAMPLE_UTIL_TEXTURE_UTILS_H
|
|
|
|
#define SAMPLE_UTIL_TEXTURE_UTILS_H
|
|
|
|
|
2018-12-29 18:29:33 +03:00
|
|
|
#include "util/gles_loader_autogen.h"
|
2014-03-03 19:46:33 +04:00
|
|
|
|
|
|
|
GLuint CreateSimpleTexture2D();
|
2014-03-04 00:42:53 +04:00
|
|
|
GLuint CreateSimpleTextureCubemap();
|
2014-03-03 19:46:33 +04:00
|
|
|
|
2014-03-04 20:21:19 +04:00
|
|
|
GLuint CreateMipMappedTexture2D();
|
|
|
|
|
2018-12-29 18:29:33 +03:00
|
|
|
#endif // SAMPLE_UTIL_TEXTURE_UTILS_H
|