Graphics v0.0.0
A simple abstraction layer for the modern graphics APIs.
载入中...
搜索中...
未找到
DDSImporter.h
1// Copyright 2022 ShenMian
2// License(Apache-2.0)
3
4#pragma once
5
6#include "Core/Image.h"
7#include "Texture.h"
8#include <filesystem>
9
14{
15public:
16 std::shared_ptr<Texture> load(const std::filesystem::path& path);
17};
DDS 材质导入器.
Definition: DDSImporter.h:14