mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-12-16 04:09:39 +00:00
17 lines
472 B
C++
17 lines
472 B
C++
// Copyright 2025 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "VideoCommon/AbstractTexture.h"
|
|
|
|
namespace VideoCommon
|
|
{
|
|
std::unique_ptr<AbstractTexture> CreateInvalidTransparentTexture();
|
|
std::unique_ptr<AbstractTexture> CreateInvalidColorTexture();
|
|
std::unique_ptr<AbstractTexture> CreateInvalidCubemapTexture();
|
|
std::unique_ptr<AbstractTexture> CreateInvalidArrayTexture();
|
|
} // namespace VideoCommon
|