Logo
Explore Help
Sign In
izzy/UnrealEngineUWP
0
0
Fork 0
You've already forked UnrealEngineUWP
mirror of https://github.com/izzy2lost/UnrealEngineUWP.git synced 2026-03-26 18:15:20 -07:00
Code Issues Packages Projects Releases Wiki Activity
Files
cb244b237efb6bc977f49bef697bcec764c7b4c2
UnrealEngineUWP/Engine/Source/Developer/TextureFormat/TextureFormat.Build.cs

19 lines
365 B
C#
Raw Normal View History

Attempt #2 (with issues fixed from last time): Extract texture format indexing and interfaces from the TargetPlatformManager and instead put it into a new type: TextureFormatManager instead. TargetPlatformManager retains the same API for querying texture format information, it just forwards to the TextureFormatManager instead. This is to facilitate the use of TextureCompressor from standalone executables that shouldn't depend on TargetPlatformManager. #rb ben.ingram Undo //UE5/Main/Engine/Source/... changelist 16172520 [CL 16185594 by Zousar Shaker in ue5-main branch]
2021-05-03 14:05:29 -04:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TextureFormat : ModuleRules
{
public TextureFormat(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"ImageCore"
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target, "nvTextureTools");
}
}
Reference in New Issue Copy Permalink
Powered by Gitea Page: 302ms Template: 11ms
English
English
Licenses API