Vertex float1: Difference between revisions

From ENIGMA
Jump to navigation Jump to search
mNo edit summary
 
Line 1: Line 1:
{{FuncTitle|vertex_float1|buffer,f1}}
{{FuncTitle|vertex_float1|buffer,f1}}
== Description ==
== Description ==
Adds a floating point value to the given vertex buffer.
Adds a single floating point value to the given vertex buffer.


== Parameters ==
== Parameters ==

Latest revision as of 19:26, 17 June 2018

Description

Adds a single floating point value to the given vertex buffer.

Parameters

Parameter Data Type Description
buffer integer Index of the vertex buffer.
f1 float First floating point value to add.

Return Values

void: This function does not return anything.

Example Call

// demonstrates adding a single floating-point value to a vertex buffer
vertex_float1(static_buffer, 0.5f);