1.14.0.5
Hummingbird
A modern user interface library for games
cohtml::IAsyncResourceResponse::UserImageData Struct Reference

Description of the properties of the user provided image. More...

Public Types

enum  TextureFilteringMode { FilterPoint, FilterLinear }
 Enumeration with the available texture filtering modes for user images. More...
 

Public Attributes

unsigned ImageHandle
 Set to a unique ID value greater than 0 to make image a live view.
 
void * TextureBatchingHint
 Pointer to a user-defined identifier that will be used to identify textures belonging to the same atlas. Draws using different Images that share the same TextureBatching can be batched together.
 
void * Texture
 Pointer to a user-defined representation of the texture. Will be passed as-is to the graphics backend.
 
TextureFilteringMode TextureFiltering
 Requests a specific filtering type for this user image.
 

Detailed Description

Description of the properties of the user provided image.

Member Enumeration Documentation

◆ TextureFilteringMode

Enumeration with the available texture filtering modes for user images.

Enumerator
FilterPoint 

Point texture sampling (Nearest-neighbor)

FilterLinear 

Bilinear texture filtering.