chromium/third_party/angle/src/libANGLE/renderer/vulkan/linux/display/DisplayVkSimple.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.
//
// DisplayVkSimple.cpp:
//    Implements the class methods for DisplayVkSimple.
//

#include "DisplayVkSimple.h"
#include "WindowSurfaceVkSimple.h"

#include "libANGLE/Display.h"
#include "libANGLE/renderer/vulkan/vk_caps_utils.h"
#include "libANGLE/renderer/vulkan/vk_renderer.h"

namespace rx
{

DisplayVkSimple::DisplayVkSimple(const egl::DisplayState &state) :{}

void DisplayVkSimple::terminate()
{}

bool DisplayVkSimple::isValidNativeWindow(EGLNativeWindowType window) const
{}

SurfaceImpl *DisplayVkSimple::createWindowSurfaceVk(const egl::SurfaceState &state,
                                                    EGLNativeWindowType window)
{}

egl::ConfigSet DisplayVkSimple::generateConfigs()
{}

// TODO: anglebug.com/40096731
// Detemine if check is needed.
void DisplayVkSimple::checkConfigSupport(egl::Config *config) {}

const char *DisplayVkSimple::getWSIExtension() const
{}

bool IsVulkanSimpleDisplayAvailable()
{}

DisplayImpl *CreateVulkanSimpleDisplay(const egl::DisplayState &state)
{}

}  // namespace rx