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

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

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

usingnamespaceangle;

class BlendPackedTest : public ANGLETest<>
{};

// Test that blending is applied to attachments with packed formats.
TEST_P(BlendPackedTest, RGB565)
{}

TEST_P(BlendPackedTest, RGBA4)
{}

TEST_P(BlendPackedTest, RGB5_A1)
{}

TEST_P(BlendPackedTest, RGB10_A2)
{}

// Use this to select which configurations (e.g. which renderer, which GLES major version) these
// tests should be run against.
ANGLE_INSTANTIATE_TEST_ES2_AND_ES3();