2019-12-26 15:33:43 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-08-21 08:57:14 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
|
2019-08-21 09:38:23 -04:00
|
|
|
enum class ERuntimeVirtualTextureDebugType;
|
|
|
|
|
class URuntimeVirtualTextureComponent;
|
|
|
|
|
|
2019-08-21 08:57:14 -04:00
|
|
|
namespace RuntimeVirtualTexture
|
|
|
|
|
{
|
|
|
|
|
/** Returns true if the component describes a runtime virtual texture that has streaming mips. */
|
2019-08-21 09:38:23 -04:00
|
|
|
bool HasStreamedMips(URuntimeVirtualTextureComponent* InComponent);
|
2019-08-21 08:57:14 -04:00
|
|
|
|
2020-08-11 01:36:57 -04:00
|
|
|
/** Build the streaming mips texture. */
|
2019-08-21 09:38:23 -04:00
|
|
|
bool BuildStreamedMips(URuntimeVirtualTextureComponent* InComponent, ERuntimeVirtualTextureDebugType DebugType);
|
2019-08-21 08:57:14 -04:00
|
|
|
};
|