|
| Sampler::AddressingMode | getAddressingMode () const |
| | Gets required addressing mode.
|
| |
| GraphicsCompareFunction | getDepthCompareFunction () const |
| | Gets the depth comparison function.
|
| |
| GraphicsFormat | getDepthStencilFormat () const |
| | Gets required depth/stencil renderbuffer format.
|
| |
| Sampler::Filter | getFilterMode () const |
| | Gets the required filter mode.
|
| |
| GraphicsFormat | getFormat () const |
| | Gets required format.
|
| |
| size_t | getHeight () const |
| | Gets required height.
|
| |
| Sampler::MipmapMode | getMipmapMode () const |
| | Gets required mipmap mode.
|
| |
| size_t | getSamples () const |
| | Gets required samples.
|
| |
| size_t | getWidth () const |
| | Gets required width.
|
| |
| bool | isTransient () const |
| | Gets the transient status.
|
| |
| | Request ()=default |
| | Default constructor.
|
| |
| | Request (size_t width, size_t height, GraphicsFormat format, GraphicsFormat depthStencilFormat) |
| | Constructor.
|
| |
| | Request (size_t width, size_t height, GraphicsFormat format, GraphicsFormat depthStencilFormat, Sampler::MipmapMode mipmapMode, size_t samples) |
| | Constructor.
|
| |
| | Request (size_t width, size_t height, GraphicsFormat format, GraphicsFormat depthStencilFormat, size_t samples) |
| | Constructor.
|
| |
| | Request (size_t width, size_t height, GraphicsFormat format, GraphicsFormat depthStencilFormat, size_t samples, Sampler::AddressingMode addressingMode, Sampler::Filter filterMode, Sampler::MipmapMode mipmapMode, GraphicsCompareFunction depthCompareFunction, bool transient) |
| | Constructor.
|
| |
| | Request (size_t width, size_t height, GraphicsFormat format, size_t samples) |
| | Constructor.
|
| |
| void | setAddressingMode (Sampler::AddressingMode addressingMode) |
| | Sets required addressing mode.
|
| |
| void | setDepthCompareFunction (GraphicsCompareFunction function) |
| | Sets the depth comparison function.
|
| |
| void | setDepthStencilFormat (GraphicsFormat depthStencilFormat) |
| | Sets required depth/stencil renderbuffer format.
|
| |
| void | setFilterMode (Sampler::Filter filterMode) |
| | Sets the required filter mode.
|
| |
| void | setFormat (GraphicsFormat format) |
| | Gets required format.
|
| |
| void | setHeight (size_t height) |
| | Sets required height.
|
| |
| void | setMipmapMode (Sampler::MipmapMode mipmapMode) |
| | Sets the required mipmap mode.
|
| |
| void | setSamples (size_t samples) |
| | Sets required samples.
|
| |
| void | setTransient (bool transient) |
| | Sets the transient status flag.
|
| |
| void | setWidth (size_t width) |
| | Sets required width.
|
| |
| bool | sizeAndSamplesMatch (const Request &otherRequest) const |
| | Checks whether a given request matches with this request.
|
| |
| bool | sizeAndSamplesMatch (size_t width, size_t height, size_t samples) const |
| | Checks whether a given size and samples match with this request.
|
| |
Composition request class.
Packs all attributes of a composition request.
- Since
- Kanzi 4.0.0 removed GraphicsFormatFeature fields.
-
Kanzi 4.0.0 removed isColorTextureRequired, isColorRenderbufferRequired, isDepthTextureRequired, isDepthRenderbufferRequired, getDepthStencilRenderbufferFormat and setDepthStencilRenderbufferFormat functions.
-
Kanzi 4.0.0 removed constructors using GraphisFormatFeature parameters among other superfluous constructors.