chromium/gpu/command_buffer/tests/gl_unittest.cc

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

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

#include "base/containers/heap_array.h"
#include "gpu/command_buffer/service/feature_info.h"
#include "gpu/command_buffer/tests/gl_manager.h"
#include "gpu/command_buffer/tests/gl_test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace gpu {

class GLTest : public testing::Test {};

// Test that GL is at least minimally working.
TEST_F(GLTest, Basic) {}

TEST_F(GLTest, BasicFBO) {}

TEST_F(GLTest, SimpleShader) {}

TEST_F(GLTest, FeatureFlagsMatchCapabilities) {}

TEST_F(GLTest, GetString) {}

}  // namespace gpu