Epok Engine

EPOK RUNTIME

epok::ImageComponent::set_region

Method · 1 overload

Method

Sets region as part of the object model module.

Belongs to
epok::ImageComponent
Header
object_model.hpp
Overloads
1

Declaration

Declaration
void set_region(uint32_t x,uint32_t y,uint32_t width,uint32_t height)

Sets region as part of the object model module.

ParameterTypeMeaning
xuint32_tValue supplied for x. Keep referenced or pointed-to data valid for the complete call.
yuint32_tValue supplied for y. Keep referenced or pointed-to data valid for the complete call.
widthuint32_tValue supplied for width. Keep referenced or pointed-to data valid for the complete call.
heightuint32_tValue supplied for height. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "object_model.hpp"

// Assume these named values have been initialized with valid data:
// uint32_t x
// uint32_t y
// uint32_t width
// uint32_t height

epok::ImageComponent& object = /* obtain a valid instance */;

object.set_region(x, y, width, height);

Why use it

It provides direct, allocation-conscious access to the object model module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/object_model.hpp:800

Related members