You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-223488 #rb jordi.rovira #tests Editor #rnx #virtualized [CL 36035608 by alexei lebedev in ue5-main branch]
28 lines
607 B
C
28 lines
607 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
// Prepare Miro configuration definitions
|
|
#if defined(MUTABLE_EXCLUDE_BC)
|
|
#ifdef MIRO_INCLUDE_BC
|
|
#undef MIRO_INCLUDE_BC
|
|
#define MIRO_INCLUDE_BC 0
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(MUTABLE_EXCLUDE_ASTC)
|
|
#ifdef MIRO_INCLUDE_ASTC
|
|
#undef MIRO_INCLUDE_ASTC
|
|
#define MIRO_INCLUDE_ASTC 0
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef MUTABLE_EXCLUDE_IMAGE_COMPRESSION_QUALITY
|
|
#ifdef MIRO_EXCLUDE_QUALITY_ABOVE
|
|
#undef MIRO_EXCLUDE_QUALITY_ABOVE
|
|
#define MIRO_EXCLUDE_QUALITY_ABOVE MUTABLE_EXCLUDE_IMAGE_COMPRESSION_QUALITY
|
|
#endif
|
|
#endif
|
|
|
|
#include "MuR/BlockCompression/Miro/Miro.h"
|