You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb ben.ingram Undo //UE5/Main/Engine/Source/... changelist 16172520 [CL 16185594 by Zousar Shaker in ue5-main branch]
13 lines
494 B
C
13 lines
494 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreTypes.h"
|
|
#include "Interfaces/ITextureFormatManagerModule.h"
|
|
|
|
/** Return the Texture Format Manager interface, if it is available, otherwise return nullptr. **/
|
|
TEXTUREFORMAT_API class ITextureFormatManagerModule* GetTextureFormatManager();
|
|
|
|
/** Return the Texture Format Manager interface, fatal error if it is not available. **/
|
|
TEXTUREFORMAT_API class ITextureFormatManagerModule& GetTextureFormatManagerRef();
|