Warp IP Software API
The software includes:
- intel_vvp_warp_driver
- intel_vvp_warp_data
- intel_vvp_warp_mesh
The intel_vvp_warp_driver is the warp IP driver. It provides API for initializing, configuring, and controlling the Warp IP, warp video channel management, and using debug features.
The intel_vvp_warp_data is the software component that generates mesh, cache, and filter coefficient data required by the warp IP. Place generated data in a region of RAM accessed by the warp IP. This location and other necessary parameters is passed to the warp driver.
This component requires transformation mesh in a predefined format as the main input data. It also requires some IP parameters e.g. number of available engines, processing block dimensions, block cache size.
The intel_vvp_warp_mesh is the software component that generates warp meshes for common affine transformations such as translation, rotation, zoom; perspective transformations e.g. keystone and radial distortion (fisheye) and arbitrary warps defined by a set of curves. Meshes are generated in the format required by the intel_vvp_warp_data interface.
You can use this reference software in a number of real-world applications. However, in some more complex cases you might want to use external software to generate transformation mesh. For example, when projecting image onto a complex surface.
You can deploy the software on a Nios II based system. However, because of computational intensity of the mesh and data generating components, Intel recommends an SoC with a dedicated CPU such as an Intel Arria 10 SX device.
Software Examples
intel_vvp_warp_driver
Name | Description |
---|---|
intel_vvp_warp_init_instance | Initialize driver instance |
intel_vvp_warp_create_channel | Create single engine video processing channel |
intel_vvp_warp_create_double_channel | Create dual engine video processing channel |
intel_vvp_warp_add_engine_to_channel | Add a warp engine to existing channel |
intel_vvp_warp_free_channel | Free video processing channel |
intel_vvp_warp_configure_channel | Configure video processing channel |
intel_vvp_warp_apply_transform | Apply video transformation |
intel_vvp_warp_bypass | Bypass video processing |
intel_vvp_warp_reset_skip_ram | Reset skip RAM page |
intel_vvp_warp_init_instance
- int intel_vvp_warp_init_instance( intel_vvp_warp_instance_t* instance, intel_vvp_warp_base_t base)
- Description
- Initialize intel_vvp_warp driver instance
- Arguments
- instance – pointer to the intel_vvp_warp software driver instance structure
- base – hardware access handler. In a bare metal environments such as Nios II it is defined as 32-bit unsigned integer representing physical address of the intel_vvp_warp IP on the CPU bus.
- Return value
- Zero on success, negative integer otherwise
intel_vvp_warp_create_channel intel_vvp_warp_create_double_channel
- intel_vvp_warp_channel_t* intel_vvp_warp_create_channel(intel_vvp_warp_instance_t *instance, uint32_t input_idx, uint32_t engine_idx, uint32_t output_idx) intel_vvp_warp_channel_t* intel_vvp_warp_create_double_channel(intel_vvp_warp_instance_t *instance, uint32_t input_idx, uint32_t engine1_idx, uint32_t engine2_idx, uint32_t output_idx)
- Description
- Create a video processing channel. The functions allocate hardware resources and initialize driver data structures necessary for processing a video stream up to 3840x2160 pixels.
- Arguments
-
instance – pointer to initialized intel_vvp_warp_instance_t structure;
-
input_idx, engine_idx, engine2_idx, ouput_idx – indexes of the warp IP input, engines and output to use in this channel.
You can configure a single warp IPto provide multiple input, output, and processing engine blocks. These blocks are grouped into video processing channels arbitrarily by using index of the block.
The indexes must be in the rage 0..num_inputs(num_outputs or num_engines respectively), where you can obtain num_inputs, num_outputs and num_engines through the intel_vvp_warp_instance_t structure after you initialize the driver instance.
- Return value
- Valid pointer to initialized intel_vvp_warp_channel_t structure on success, null pointer otherwise.
intel_vvp_warp_add_engine_to_channel
- int intel_vvp_warp_add_engine_to_channel(intel_vvp_warp_channel_t* channel, uint32_t engine_idx)
- Description
-
Add a warp engine to existing channel.
Warp IP allows you to split video processing between multiple engines. This function adds additional engines to already allocated channels and updates driver and channel data structures accordingly
- Arguments
-
instance – pointer to the intel_vvp_warp software driver instance structure
-
engine_idx – indexes of the warp IP engine to add to the channel
- Return value
- Zero on success, negative integer otherwise
intel_vvp_warp_free_channel
- void intel_vvp_warp_free_channel(intel_vvp_warp_channel_t* channel)
- Description
- Delete video processing channel and release hardware resources and driver data structures allocated for it
- Arguments
- channel – a valid pointer to initialized intel_vvp_warp_channel_t structure
- Return value
- None
intel_vvp_warp_configure_channel
- int intel_vvp_warp_configure_channel(intel_vvp_warp_channel_t* channel, intel_vvp_warp_channel_config_t* cfg)
- Description
- Configure video processing channel data structures and allocated hardware by providing necessary parameters such as input/output resolutions, frame buffers location etc.
- Arguments
-
channel – a valid pointer to initialized video processing channel;
-
cfg – a valid pointer to initialized intel_vvp_warp_channel_config_t structure.
- Return value
- Zero on success, negative integer otherwise
intel_vvp_warp_apply_transform
- int intel_vvp_warp_apply_transform(intel_vvp_warp_channel_t* channel, intel_vvp_warp_data_t* data)
- Description
- Start warping video by configuring the channel to use provided warp data coefficients
- Arguments
-
channel – a valid pointer to initialized video processing channel
-
data – a valid pointer to initialized intel_vvp_warp_data_t structure.
- Return value
- Zero on success, negative integer otherwise
intel_vvp_warp_bypass
- int intel_vvp_warp_bypass(intel_vvp_warp_channel_t* channel, uint32_t bypass, uint32_t skip_ram_page)
- Description
- Enable/disable video bypass where by input video is displayed as is without any processing
- Arguments
-
channel – a valid pointer to initialized video processing channel
-
bypass – a non zero value to enable video bypass, zero to disable
-
skip_ram_page – number of skip ram page to use after enabling/disabling bypass
- Return value
- Zero on success, negative integer otherwise
intel_vvp_warp_reset_skip_ram
- void intel_vvp_warp_reset_skip_ram(intel_vvp_warp_channel_t* channel, uint32_t skip_ram_page)
- Description
-
Reset skip RAM page setting all values to zero.
Skip RAM pages are programmed as part of intel_vvp_warp_apply_transform(). Some use scenarios may require skip RAM to reset explicitly. This function allows for that
- Arguments
-
channel – a valid pointer to initialized video processing channel
-
ram_page – skip RAM page to reset
- Return value
- None
Data structures and types
intel_vvp_warp_base_t
- Description
- Platform specific type to perform register read and write operations on the warp IP. In bare metal environments such as a Nios II processor, it is defined as 32-bit unsigned integer representing physical address of the warp IP on the CPU bus
intel_vvp_warp_instance
- typedef struct intel_vvp_warp_instance{ intel_vvp_warp_base_t base; uint32_t num_inputs; uint32_t num_engines; uint32_t num_outputs;} intel_vvp_warp_instance_t
- Description
- Main data structure of the driver
- Members
-
base – warp IP access handler
num_inputs – number of available warp inputs
num_engines – number of available warp engines
num_outputs – number of available warp outputs
intel_vvp_warp_channel
-
typedef struct intel_vvp_warp_channel { uint32_t in_use; uint32_t idx; struct intel_vvp_warp_instance* instance; uint32_t num_engines; uint32_t ram_addr; } intel_vvp_warp_channel_t
- Description
- Video processing channel resources and parameters structure
- Arguments
- Return value
-
in_use – non-zero value if the channel is allocated and initialized. Zero otherwise.
-
idx – index number of the channel
-
instance – pointer to the parent driver instance the channel belongs to
-
num_engines – number of warp engines for the channel
-
ram_addr - base address of RAM region allocated for the channel frame buffers
intel_vvp_warp_channel_config
-
typedef struct intel_vvp_warp_channel_config { uint32_t ram_addr; intel_vvp_warp_cs_t cs; intel_vvp_warp_scan_t scan; uint32_t width_input; uint32_t height_input; uint32_t width_output; uint32_t height_output; uint8_t bypass; uint8_t lfr; } intel_vvp_warp_channel_config_t
- Description
- Video processing channel configuration
- Members
-
ram_addr - base address of RAM region allocated for the channel frame buffers
-
cs – video color space. Must be initialized to
- 00b = YUV
- 01b = RGB reduced range
- 10b = RFG full range.
-
scan – video processing scan. Must be initialized to 0x1
-
width_input, height_input, width_output, height_output – input and output video dimensions
-
bypass – 1 to configure the channel into video processing bypass mode
-
lfr – low frame rate fallback. Must be initialized to 0x0
intel_vvp_warp_data
-
typedef struct intel_vvp_warp_data { uint32_t num_engines; uint8_t* _skip_megablock_data; uint32_t _skip_ram_page; intel_vvp_warp_engine_data_t engine_data[0]; } intel_vvp_warp_data_t;
- Description
- Warp data descriptor
- Members
-
num_engines – data for how many engines is contained in this set.
-
_skip_megablock_data – data for the blank skip logic. Generated by the intel_vvp_warp_data library. See WarpData structure.
-
_skip_ram_page – blank skip page to use for this transform. Warp IP provides 8 blank skip pages. Use these can to keep skip blank data for different transforms and switch between the pages as necessary.
-
engine_data – array of intel_vvp_warp_engine_data_t structures containing warp coefficients for each individual engine
intel_vvp_warp_engine_data
-
typedef struct intel_vvp_warp_engine_data { uint32_t mesh_addr; uint32_t filter_addr; uint32_t fetch_addr; uint32_t start_h; uint32_t start_v; uint32_t end_h; uint32_t end_v; uint32_t mesh_stride; } intel_vvp_warp_engine_data_t;
- Description
- Warp coefficient descriptor for an individual warp engine
- Members
-
mesh_addr – address of the mesh coefficients in memory
-
filter_addr – address of the filter coefficients in memory
-
fetch_addr – address of the fetch coefficients in memory
-
start_h, start_v, end_h, end_v – engine processing region. Internally warp engine processes video in 16x8 pixel blocks with the top-left corner being block [0, 0]. The processing region is defined by the start and end block indexes in horizontal and vertical dimensions.
-
mesh_stride – number of warp mesh nodes per mesh data row. (in sets of 4 minus 1). Required mesh stride is calculated by the intel_vvp_warp_data library.
intel_vvp_warp_data
This software component uses transformation mesh in a predefined format to generate mesh, cache and filter coefficient data required by the warp IP.
Name | Description |
---|---|
GenerateData | Generate warp data |
GenerateData
- WarpDataPtr GenerateData(const WarpDataContext& ctx, const WarpMeshSet& mesh_set)
- Description
- Generate warp data coefficients using provided transformation mesh, video resolution and necessary IP parameters. If two warp engines are available, the workload is split evenly such that each engine processes either left or right half of the image accordingly
- Arguments
-
ctx – reference to an instance of WarpDataContext object containing information about video resolution and IP parameters required to generate data
-
mesh_set – reference to a set of transformation meshes
- Return value
- On success the function returns a valid smart pointer to a WarpData object. On error nullptr object is returned. If the IP detects a downscale ratio higher than 2:1 in any region of the frame, nullptr is returned
Data structures and types
WarpMesh
-
class WarpMesh { public: WarpMesh(uint32_t width, uint32_t height, uint32_t step); uint32_t GetStep(); uint32_t GetVNodes(); uint32_t GetHNodes(); mesh_node_t* GetRow(uint32_t v); }
- Description
-
Class containing user defined transformation mesh.
-
The mesh is essentially a look up table that defines a mapping between the output and input images. Each entry of the mesh (node) represents a position in the output image and contains the relevant x and y coordinates of the input image. The step between mesh nodes is defined by the IP. The class automatically manages internal storage for the mesh data
- Members
-
WarpMesh(uint32_t width, uint32_t height, uint32_t step) - Constructor
-
Arguments: width, height – output image dimensions
-
step – distance in pixels between mesh nodes. The IP uses the same distance horizontally and vertically. The IP only supports the step of 8 pixels and ignores all other values.
-
uint32_t GetStep() - Returns distance between mesh nodes
-
uint32_t GetVNodes()
-
uint32_t GetHNodes() - Returns number of vertical/horizontal nodes in the mesh respectively
-
mesh_node_t* GetRow(uint32_t v) - Returns pointer to the mesh row. AccessiIndividual nodes in the row using pointer arithmetic or indexing
-
Arguments: v – index number of the mesh row
mesh_node_t
-
typedef struct mesh_node { int32_t _x; int32_t _y; } mesh_node_t
- Description
- Structure representing individual entry in the mesh
- Members
- _x, _y – coordinates of the input image this node maps to. the IP represents each value by a 32-bit signed integer with the four least significant bits containing fractional part for subpixel precision.
WarpMeshPtr
- using WarpMeshPtr = std::shared_ptr<WarpMesh>
- Description
- Type alias for a smart pointer wrapper around the mesh class
WarpMeshSet
- using WarpMeshSet = std::vector<WarpMeshPtr>
- Description
- Type alias for a container allowing to group multiple meshes together
WarpDataContext
-
struct WarpDataContext { WarpDataContext(const WarpHwContextPtr hw, uint32_t wi, uint32_t hi, uint32_t wo, uint32_t ho); }
- Description
- Structure containing image dimensions and IP parameters required to generate data. If two warp engines are available, the IP splits the workload evenly such that each engine processes either left or right half of the image accordingly.
- Members
-
WarpDataContext(const WarpHwContextPtr hw, uint32_t wi, uint32_t hi, uint32_t wo, uint32_t ho) - Constructor . . The constructor initializes remaining data members using provided arguments that you should not modify.
-
Arguments: hw – smart pointer to an instance of WarpHwContext object containing relevant IP parameters
-
wi, hi – input image width and height
-
wo, ho – output image width and height
-
_engine_hblocks – number 16x8 pixel blocks each engine processes horizontally
-
_engine_mesh_stride – number of mesh nodes per mesh data row each engine processes
-
_h_blocks_out – total horizontal number of 16x8 blocks in the frame for the given output width
-
_v_blocks_out – total vertical number of 16x8 blocks in the frame for the given output height
WarpData
-
struct WarpData { uint32_t _engines; void* _skip_megablock_data; WarpEngineData* _engine_data[MAX_ENGINES]; }
- Description
- Structure containing warp data coefficients
- Members
-
_engines – number warp engine data objects contained in this structure (number of valid entries in the _engine_data array member). The value is always less or equal to MAX_ENGINES;
-
_skip_megablock_data – data for the skip logic;
-
_engine_data – array of pointers to WarpEngineData objects containing data for individual warp engines; The array has maximum fixed size of MAX_ENGINES.
WarpEngineData
-
struct WarpEngineData { uint32_t _mesh_entries; uint32_t _filter_entries; uint32_t _fetch_entries; void* _mesh_data; void* _filter_data; void* _fetch_data;
- Description
- Structure containing data coefficients for individual warp engine
- Members
-
_mesh_entries,
-
_fetch_entries – Number of mesh, filter and fetch coefficient entries in the data block. These values along with the corresponding sizeof() operator calculate the size of individual data block in bytes
-
_filter_entries,
-
_mesh_data,
-
_filter_data,
-
_fetch_data – Pointers to the blocks of raw mesh, filter and fetch data
mesh_entry_t, filter_entry_t, fetch_entry_t
- Description
- Type aliases to use when calculating sizes of individual data block in bytes.
Helper functions
GetHwContext
- WarpHwContextPtr GetHwContext(intel_vvp_warp_channel_t* ch)
- Description
- Generate object containing warp IP parameters necessary to generate data. Function uses warp channel driver structure to extract all necessary IP parameters and create object of the type WarpHwContext, required by the GenerateData() call
- Arguments
- ch – valid pointer to initialized intel_vvp_warp_channel_t structure object mesh_set – reference to a set of transformation meshes
- Return value
- On success the function returns a valid smart pointer to a WarpHwContext object. On failure a nullptr object is returned
intel_vvp_warp_mesh
This reference software component allows you to generate sample warp meshes for common affine transformations, perspective transformations, radial distortion compensation and arbitrary transforms defined by a set of curves.
The intel_vvp_warp_mesh software instance provides three types of warp configurations which you can use independently by the host application:
In the fixed warp configuration a set of affine transformations such as translation, rotation, scaling, perspective correction as well as radial distortion (fisheye) compensation are configured individually using corresponding API calls.
In the 4x corner configuration affine and perspective transformations are defined using four points positioned in or around the screen area; This configuration also allows to apply radial distortion compensation.
Arbitrary transformation is defined by a set of curves controlled by a fixed number of control points (knots).
Warp meshes are tied to a specific input and output video resolution. The user must set these accordingly before generating a mesh.
Offset, sizes and positions are accepted as absolute values in pixels. To allow for sub-pixel precision floating point type is used. Internally these parameters normalized to the [0..1] range using current output resolution and kept in this form. The warp automatically fits into the new output resolution if it changes.
Name | Description |
---|---|
SetInputResolution, GetInputResolution | Set or get input image resolution |
SetOutputResolution, GetOutputResolution | Set or get output image resolution |
GenerateMeshFromFixed | Generate mesh using fixed warp configuration |
GenerateMeshFromCorners | Generate mesh using 4x corner warp configuration |
GenerateMeshFromArbitrary | Generate mesh using arbitrary warp configuration |
SetHSize, GetHSize | Set or get horizontal size of the image |
SetVSize, GetVSize | Set or get vertical size of the image |
SetHOffset, GetHOffset | Set or get horizontal offset of the image |
SetVOffset, GetVOffset | Set or get vertical offset of the image |
SetRotate, GetRotate | Set or get rotation angle |
SetHMirror, GetHMirror | Set or get horizontal mirroring |
SetVMirror, GetVMirror | Set or get vertical mirroring |
SetZoom, GetZoom | Set or get zoom factor |
SetHKeystone, GetHKeystone | Set or get horizontal keystone angle |
SetVKeystone, GetVKeystone | Set or get vertical keystone angle |
SetFOV, GetFOV | Set or get field of view |
SetVAxisOffset, GetVAxisOffset | Set or get vertical axis offset |
SetPreRadial, GetPreRadial | Set or get radial distortion compensation parameters |
SetCorner, GetCorner | Set or get corner position |
SetArbitraryKnotsNum, GetArbitraryKnotsNum | Set or get size of the arbitrary control grid |
SetArbitraryKnot, GetArbitraryKnot | Set or get position of arbitrary control knot |
SetMaintainRatio, GetMaintainRatio | Set or get maintain aspect ratio setting |
SetShrinkToFit, GetShrinkToFit | Set or get shrink to fit setting |
SetInputResolution, GetInputResolution, SetOutputResolution, GetOutputResolution
- void SetInputResolution(const uint32_t width, const uint32_t height) void GetInputResolution(uint32_t& width, uint32_t& height) void SetOutputResolution(const uint32_t width, const uint32_t height) void GetOutputResolution(uint32_t& width, uint32_t& height)
- Description
- Set or get input and output image resolution
- Arguments
-
width – image width
-
height – image height
- Return value
- None
GenerateMeshFromFixed, GenerateMeshFromCorners, GenerateMeshFromArbitrary
- WarpMeshPtr GenerateMeshFromFixed() WarpMeshPtr GenerateMeshFromCorners() WarpMeshPtr GenerateMeshFromArbitrary()
- Description
- Generate transformation mesh using fixed, 4x corners or arbitrary configurations respectively
- Arguments
- None
- Return value
- Smart pointer to the object of the type WarpMesh containing generated transformation mesh (please see intel_vvp_data interface section for the description of WarpMesh)
SetHSize, GetHSize, SetVSize, GetVSize
- void SetHSize(float pixels) float GetHSize() void SetVSize(float pixels) float GetVSize()
- Description
- Set or get horizontal and vertical size of the image, which is equivalent to scaling the image along the horizontal/vertical axis
- Arguments
- pixels – horizontal or vertical size of the image accordingly
- Return value
- horizontal or vertical size of the image accordingly
SetHOffset, GetHOffset, SetVOffset, GetVOffset
- void SetHOffset(float pixels) float GetHOffset() void SetVOffset(float pixels) float GetVOffset()
- Description
- Set or get horizontal and vertical offsets of the image
- Arguments
- pixels – horizontal or vertical offset of the image accordingly
- Return value
- horizontal or vertical offset of the image accordingly
SetRotate, GetRotate
- void SetRotate(float angle) float GetRotate()
- Description
- Set or get rotation angle of the image in degrees. Image is rotated around the center
- Arguments
- angle – rotation agnle in degrees
- Return value
- rotation agnle in degrees
SetHMirror, GetHMirror, SetVMirror, GetVMirror
- void SetHMirror(bool v) bool GetHMirror() void SetVMirror(bool v) bool GetVMirror()
- Description
- Set or get image mirroring along horizontal and vertical axis accordingly
- Arguments
- v – true to enable mirroring, false to disable
- Return value
- true if mirroring enabled, false otherwise
SetZoom, GetZoom
- void SetZoom(float zoom) float GetZoom()
- Description
- Set or get image zoom value
- Arguments
- zoom – value > 1 to zoom in, < 1 to zoom out
- Return value
- Configured zoom value
SetHKeystone, GetHKeystone, SetVKeystone, GetVKeystone
- void SetHKeystone(float angle) float GetHKeystone() void SetVKeystone(float angle) float GetVKeystone()
- Description
- Set or get horizontal and vertical keystone compensation angle accordingly
- Arguments
- angle - horizontal or vertical angle in degrees by which the projector is tilting relative to the normal to the projection surface.
- Return value
- Horizontal or vertical projector tilting angle accordingly
SetFOV, GetFOV
- void SetFOV(float angle) float GetFOV()
- Description
- Set or get field of View. Field of view represents projector’s beam angle. This value is necessary for correct keystone correction. The default value is 30°
- Arguments
- angle - projector’s beam angle in degrees
- Return value
- Projector’s beam angle in degrees
SetVAxisOffset, GetVAxisOffset
- void SetVAxisOffset(float v) float GetVAxisOffset()
- Description
- Set or get vertical offset of the optical axis from the normal to the projection plane. This value is required for correct keystone correction. Some projectors, particularly short throw models have their beam already at an angle to the wall. Take account of this initial angle when calculating keystone correction. The provided value is the absolute offset divided by the image height. The default value is 0
- Arguments
- v - value of vertical axis offset
- Return value
- value of vertical axis offset
SetPreRadial, GetPreRadial
- void SetPreRadial(float x, float y, float k1, float k2) void GetPreRadial(float& x, float& y, float& k1, float& k2)
- Description
- Set or get radial distortion compensation parameters. The software uses Brown-Conrady distortion model
- Arguments
-
x, y – distortion center
-
k1, k2 – 1st and 2nd distortion coefficients
- Return value
- None
SetCorner, GetCorner
- void SetCorner(const ECornerId& corner, float pixel_x, float pixel_y) void GetCorner(const ECornerId& corner, float& pixel_x, float& pixel_y)
- Description
- Set or get position of an individual corner point of the 4x corner warp configuration
- Arguments
-
corner – corner identifier
-
pixel_x, pixel_y – horizontal and vertical coordinate of the corner
- Return value
- None
SetArbitraryKnotsNum, GetArbitraryKnotsNum
- void SetArbitraryKnotsNum(uint32_t num) uint32_t GetArbitraryKnotsNum()
- Description
- Set or get number of control points (knots) for the arbitrary warp. Arbitrary warp is defined by a set of curves and control points arranged into NxN grid. This parameter sets the size of this grid. For simplicity the number of control points in both dimensions is the same
- Arguments
- num – number of control knots in each dimension
- Return value
- number of control knots in each dimension
SetArbitraryKnot, GetArbitraryKnot
- void SetArbitraryKnot(const uint32_t idx, const float x, const float y) void GetArbitraryKnot(const uint32_t idx, float& x, float& y)
- Description
- Set or get absolute position of individual control points. Points are numbered left to right, top to bottom
- Arguments
-
idx – zero based point index number
-
x, y – horizontal and vertical coordinate of the point
- Return value
- None
SetMaintainRatio, GetMaintainRatio
- void SetMaintainRatio(bool val) bool GetMaintainRatio()
- Description
- Set or get maintain aspect ratio flag. If set the aspect ratio of the input resolution is preserved. As a result the output image may have blank areas along either horizontal or vertical axis
- Arguments
- val – true to maintain input aspect ratio, false otherwise
- Return value
- Current maintain aspect ratio setting
SetShrinkToFit, GetShrinkToFit
- void SetShrinkToFit(bool val) bool GetShrinkToFit()
- Description
- Set or get shrink to fit setting. If set the resulting image is scaled down after applying all transforms to make sure it fits into the screen. Otherwise the resulting image is cropped to fit output dimensions. This flag is only relevant for the Fixed warp configuration
- Arguments
- val – true to shrink resulting image to fit output dimensions, false otherwise
- Return value
- Current shrink to fit setting
Data structures and types
ECornerId
- enum ECornerId { ETopLeft = 0, ETopRight, EBottomLeft, EBottomRight, vfc32ETotalCorners, };
- Description
- Enum identifies individual corners in the 4x corner warp configuration