D3d_set_fill_mode - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

NOTOC

Notation

Description

Sets the rendering mode used during all subsequent draw calls for either

Parameters

  • facemode, which faces should have the rendering mode, acceptable parameters are (rs_front, rs_back, rs_front_back).
  • mode, acceptable parameters are (rs_fill, rs_line, and rs_point).

Return Values

The function has no return values.

Example Call

d3d_set_render_mode(rs_front_back, rs_line);

Demonstrates using the function to enable wireframe rendering.