| // |
| // Copyright 2017 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. |
| // |
| // AtomicCounterBufferTest: |
| // Various tests related for atomic counter buffers. |
| // |
| |
| #include "test_utils/ANGLETest.h" |
| #include "test_utils/gl_raii.h" |
| |
| using namespace angle; |
| |
| namespace |
| { |
| |
| class AtomicCounterBufferTest : public ANGLETest |
| { |
| protected: |
| AtomicCounterBufferTest() |
| { |
| setWindowWidth(128); |
| setWindowHeight(128); |
| setConfigRedBits(8); |
| setConfigGreenBits(8); |
| setConfigBlueBits(8); |
| setConfigAlphaBits(8); |
| } |
| }; |
| |
| // Test GL_ATOMIC_COUNTER_BUFFER is not supported with version lower than ES31. |
| TEST_P(AtomicCounterBufferTest, AtomicCounterBufferBindings) |
| { |
| ASSERT_EQ(3, getClientMajorVersion()); |
| GLBuffer atomicCounterBuffer; |
| glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 1, atomicCounterBuffer.get()); |
| if (getClientMinorVersion() < 1) |
| { |
| EXPECT_GL_ERROR(GL_INVALID_ENUM); |
| } |
| else |
| { |
| EXPECT_GL_NO_ERROR(); |
| } |
| } |
| |
| ANGLE_INSTANTIATE_TEST(AtomicCounterBufferTest, |
| ES3_OPENGL(), |
| ES3_OPENGLES(), |
| ES31_OPENGL(), |
| ES31_OPENGLES()); |
| |
| } // namespace |