chromium/gpu/command_buffer/tests/gl_discardable_textures_unittest.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <GLES2/gl2extchromium.h>
#include <stdint.h>

#include "gpu/command_buffer/client/gles2_implementation.h"
#include "gpu/command_buffer/tests/gl_manager.h"
#include "gpu/command_buffer/tests/gl_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace gpu {

class DiscardableTextureTest : public testing::Test {};

TEST_F(DiscardableTextureTest, BasicUsage) {}

TEST_F(DiscardableTextureTest, Limits) {}

TEST_F(DiscardableTextureTest, CompressedTexImage2D) {}

TEST_F(DiscardableTextureTest, TexStorage2D) {}

TEST_F(DiscardableTextureTest, CopyTexImage2D) {}

}  // namespace gpu