Function psp::sys::sceGuBeginObject

source ·
#[no_mangle]
pub unsafe extern "C" fn sceGuBeginObject(
    vtype: i32,
    count: i32,
    indices: *const c_void,
    vertices: *const c_void
)
Expand description

Begin conditional rendering of object

If no vertices passed into this function are inside the scissor region, it will skip rendering the object. There can be up to 32 levels of conditional testing, and all levels HAVE to be terminated by sceGuEndObject().

§Parameters

  • vtype: Vertex type to process
  • count: Number of vertices to test
  • indices: Optional list to an index-list
  • vertices: Pointer to a vertex-list