Index

D-Type Direct Color Rasterizer Structures

D-Type Direct Color Rasterizer defines and utilizes only one structure type:

DT_MDC

This structure type contains information about D-Type's memory (off-screen) surfaces.

/* D-Type's memory (off-screen) surface */ 
typedef struct
{
    DT_SRAST_L w, h; /* Surface's dimensions in pixels */ 
    DT_UBYTE* m;     /* Pointer to surface's memory buffer */ 
    DT_SLONG l;      /* Length of the buffer in bytes (defines pitch) */ 

} DT_MDC;

The structure members have the following purpose:

 

Index