chromium/third_party/angle/src/tests/gl_tests/PolygonOffsetClampTest.cpp

//
// Copyright 2023 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.
//
// PolygonOffsetClampTest.cpp: Test cases for GL_EXT_polygon_offset_clamp
//

#include "test_utils/ANGLETest.h"
#include "test_utils/gl_raii.h"
#include "util/EGLWindow.h"
#include "util/test_utils.h"

usingnamespaceangle;

class PolygonOffsetClampTest : public ANGLETest<>
{};

// Test state queries and updates
TEST_P(PolygonOffsetClampTest, State)
{}

// Test polygon offset clamping behavior. Ported from dEQP.
TEST_P(PolygonOffsetClampTest, Operation)
{}

ANGLE_INSTANTIATE_TEST_ES2_AND_ES3();