17 lines
370 B
C++
17 lines
370 B
C++
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
// Resources streaming types
|
|
typedef float StreamingQuality;
|
|
|
|
#define MIN_STREAMING_QUALITY 0.0f
|
|
#define MAX_STREAMING_QUALITY 1.0f
|
|
|
|
/// <summary>
|
|
/// Enables/disables dynamic resources streaming feature
|
|
/// </summary>
|
|
#define ENABLE_RESOURCES_DYNAMIC_STREAMING 1
|
|
|
|
class StreamableResource;
|