MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / grtext_GetParameters

Function grtext_GetParameters

grtext/grtext.cpp:284–295  ·  view source on GitHub ↗

gets text clipping parameters

Source from the content-addressed store, hash-verified

282
283// gets text clipping parameters
284void grtext_GetParameters(int *left, int *top, int *right, int *bottom, int *tabspace) {
285 if (left)
286 *left = Grtext_left;
287 if (top)
288 *top = Grtext_top;
289 if (right)
290 *right = Grtext_right;
291 if (bottom)
292 *bottom = Grtext_bottom;
293 if (tabspace)
294 *tabspace = Grtext_tabspace;
295}
296
297// sets the color for text
298void grtext_SetColor(ddgr_color col) {

Callers 1

Cinematic_DrawTextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected