Navigation
API > API/Plugins > API/Plugins/MediaIOCore
| |
|
| Name |
EMediaCaptureResizeMethod |
| Type |
enum |
| Header File |
/Engine/Plugins/Media/MediaIOFramework/Source/MediaIOCore/Public/MediaCapture.h |
| Include Path |
#include "MediaCapture.h" |
Syntax
enum EMediaCaptureResizeMethod
{
None,
ResizeSource,
ResizeInRenderPass,
ResizeInCapturePass,
}
Values
| Name |
Remarks |
| None |
Leaves the source texture as is, which might be incompatible with the output size, causing an error. |
| ResizeSource |
Resize the source that is being captured. |
| ResizeInRenderPass |
Leaves the source as is, but will add a render pass where we resize the captured texture, leaving the source intact. |
| ResizeInCapturePass |
Leaves the source as is, but expects the capture pass to fully re-render the source texture to the output texture. |