chromium/third_party/angle/src/tests/gl_tests/gles1/QueryTest.cpp

//
// Copyright 2024 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.
//

// QueryTest.cpp: Tests basic boolean query of GLES1 enums.

#include "test_utils/ANGLETest.h"

#include <stdint.h>

usingnamespaceangle;

class QueryTest : public ANGLETest<>
{};

// Test that glGetBooleanv works for GLES1 enums
TEST_P(QueryTest, Basic)
{}

ANGLE_INSTANTIATE_TEST_ES1();