Navigation
API > API/Developer > API/Developer/TextureFormat > API/Developer/TextureFormat/ITextureFormatManagerModule
Description
Finds a texture format with the specified name and provides information about the module it came from. Safe to call from any thread.
| Name | FindTextureFormatAndModule |
| Type | function |
| Header File | /Engine/Source/Developer/TextureFormat/Public/Interfaces/ITextureFormatManagerModule.h |
| Include Path | #include "Interfaces/ITextureFormatManagerModule.h" |
const ITextureFormat * FindTextureFormatAndModule
(
FName Name,
FName & OutModuleName,
class ITextureFormatModule *& OutModule
)
The texture format, or nullptr if not found.
Parameters
| Name | Remarks |
|---|---|
| Name | Name of the format to find. |
| OutModuleName | Name of the module that the found format came from, or unmodified if not found. |
| OutModule | Interface of the module that the found format came from, or unmodified if not found. |