Skip to content

D3d_start

hugh greene edited this page Jun 20, 2022 · 1 revision

Notation

Description

Initializes the 3D graphics pipeline and enables 3D rendering.

Parameters

  • none There are no parameters for this function.

Return Values

Returns: whether the function call was successful as a Boolean value (true or false)

Example Call

// Initializes 3D mode and turns hidden surface removal and perspective projection on. A basic demonstration of setting up rendering for 3D graphics.
d3d_start();
d3d_set_hidden(true);
d3d_set_perspective(true);

NOTOC

Category:Function:All

Clone this wiki locally