chromium/gpu/vulkan/drm_modifiers_filter_vulkan_unittest.cc

// Copyright 2023 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/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include <vulkan/vulkan_core.h>

#include <memory>

#include "gpu/vulkan/drm_modifiers_filter_vulkan.h"
#include "gpu/vulkan/init/vulkan_factory.h"
#include "gpu/vulkan/vulkan_function_pointers.h"
#include "gpu/vulkan/vulkan_implementation.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/buffer_types.h"

namespace gpu {

namespace {

const uint64_t kSupportedModifier1 =;
const uint64_t kSupportedModifier2 =;
const uint64_t kUnsupportedModifier =;
const std::vector<uint64_t> kSupportedModifiers =;

}  // namespace

class DrmModifiersFilterVulkanTest : public testing::Test {};

TEST_F(DrmModifiersFilterVulkanTest, FilterUnsupported) {}

}  // namespace gpu