You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
ImageWrapperHelper is deprecated, do not use #rb fabian.giesen #rnx [CL 28727914 by charles bloom in ue5-main branch]
21 lines
688 B
C++
21 lines
688 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
#include "Containers/StringFwd.h"
|
|
#include "CoreMinimal.h"
|
|
#include "IImageWrapper.h"
|
|
|
|
// ImageWrapperHelper is deprecated, use IImageWrapperModule instead
|
|
class ImageWrapperHelper
|
|
{
|
|
public:
|
|
|
|
// deprecated, use IImageWrapperModule::GetExtension() instead
|
|
static IMAGEWRAPPER_API FStringView GetFormatExtension(EImageFormat InImageFormat, bool bIncludeDot=false);
|
|
|
|
// deprecated, use IImageWrapperModule::GetImageFormatFromExtension instead
|
|
static IMAGEWRAPPER_API EImageFormat GetImageFormat(FStringView StringExtention);
|
|
|
|
static IMAGEWRAPPER_API const FStringView GetImageFilesFilterString(bool bIncludeAllFiles);
|
|
};
|