Epok Engine

EPOK RUNTIME

epok::CompactProjectedVertex::screen

Field

Field

Exposes `screen` on `epok::CompactProjectedVertex` for PSX polygon preparation, clipping and submission.

Belongs to
epok::CompactProjectedVertex
Header
polygon.hpp

Declaration

Declaration
psyqo::Vertex screen

Exposes `screen` on `epok::CompactProjectedVertex` for PSX polygon preparation, clipping and submission.

Type
psyqo::Vertex
Storage
Per instance

Example

C++ example
#include "polygon.hpp"

epok::CompactProjectedVertex& object = /* obtain a valid instance */;
auto value = object.screen;

// When mutation is valid for this object:
// object.screen = replacement;

When it helps

Use this member when you need direct access to the state represented by its declared type.

Trade-offs and warnings

Direct field access has no validation step. Keep the owning object alive, respect units and ranges, and do not mutate state while hardware or another subsystem is consuming it.

Declared in runtime/polygon.hpp:21