// Copyright 2015 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/351564777): Remove this and convert code to safer constructs. #pragma allow_unsafe_buffers #endif #include "gpu/command_buffer/service/context_state.h" #include <stddef.h> #include "testing/gtest/include/gtest/gtest.h" namespace gpu { namespace gles2 { TEST(ContextStateVec4Test, DefaultValues) { … } TEST(ContextStateVec4Test, SetGetFloatValues) { … } TEST(ContextStateVec4Test, SetGetIntValues) { … } TEST(ContextStateVec4Test, SetGetUIntValues) { … } TEST(ContextStateVec4Test, Equal) { … } } // namespace gles2 } // namespace gpu