Changes between Version 1 and Version 2 of GraphicsApiOld
- Timestamp:
- Apr 21, 2007, 9:23:15 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GraphicsApiOld
v1 v2 18 18 }}} 19 19 20 where worker()is the main function of your application. Your application must supply rendering and input-handling functions (see below).20 where `worker()` is the main function of your application. Your application must supply rendering and input-handling functions (see below). 21 21 22 22 These functions creates a '''worker thread''' that runs the main application function. The original thread becomes the '''graphics thread''', which handles GUI events and does rendering. … … 36 36 }}} 37 37 38 This will be called periodically in the graphics thread. It should generate the current graphic. ''xs'' and ''ys'' are the X and Y sizes of the window, and ''time_of_day'' is the relative time in seconds. Applications that don't do graphics must also supply a dummy ''app_graphics_render()''to link with the API.38 This will be called periodically in the graphics thread. It should generate the current graphic. `xs` and `ys` are the X and Y sizes of the window, and `time_of_day` is the relative time in seconds. Applications that don't do graphics must also supply a dummy `app_graphics_render()` to link with the API. 39 39 40 40 {{{ … … 111 111 Represents a set of randomly-generated stars that move forwards or backwards in 3 dimensions. 112 112 TEXTURE_DESC 113 Represents an image (JPEG, Targa, BMP, PNG, or RGB ) displayed in 3 dimensions.113 Represents an image (JPEG, Targa, BMP, PNG, or RGB ) displayed in 3 dimensions. 114 114 115 115 The file api/txf_util.C has support functions from drawing nice-looking 3D text.