|
UFO: Alien Invasion
|

Go to the source code of this file.
Functions | |
| void | R_DrawImage (float x, float y, const image_t *image) |
| Draws an image or parts of it. More... | |
| void | R_DrawStretchImage (float x, float y, int w, int h, const image_t *image) |
| const image_t * | R_DrawImageArray (const vec2_t texcoords[4], const vec2_t verts[4], const image_t *image) |
| void | R_DrawChar (int x, int y, int c, uint32_t color) |
| Draws one 8*8 graphics character with 0 being transparent. It can be clipped to the top of the screen to allow the console to be smoothly scrolled off. More... | |
| void | R_DrawChars (void) |
| void | R_DrawFills (void) |
| void | R_DrawFill (int x, int y, int w, int h, const vec4_t color) |
| Fills a box of pixels with a single color. More... | |
| void | R_DrawRect (int x, int y, int w, int h, const vec4_t color, float lineWidth, int pattern) |
| Draws a rect to the screen. Also has support for stippled rendering of the rect. More... | |
| int | R_UploadData (const char *name, unsigned *frame, int width, int height) |
| Uploads image data. More... | |
| void | R_DrawTexture (int texnum, int x, int y, int w, int h) |
| Bind and draw a texture. More... | |
| void | R_DrawLineStrip (int points, int *verts) |
| 2 dimensional line strip More... | |
| void | R_DrawLineLoop (int points, int *verts) |
| void | R_DrawLine (int *verts, float thickness) |
| Draws one line with only one start and one end point. More... | |
| void | R_DrawCircle (float radius, const vec4_t color, float thickness, const vec3_t shift) |
| void | R_DrawPolygon (int points, int *verts) |
| void | R_PushClipRect (int x, int y, int width, int height) |
| Force to draw only on a rect. More... | |
| void | R_PopClipRect (void) |
| void | R_CleanupDepthBuffer (int x, int y, int width, int height) |
| "Clean up" the depth buffer into a rect More... | |
| void | R_DrawBoundingBox (const AABB &absBox) |
| Draws the model bounding box. More... | |
| void | R_DrawBoundingBoxBatched (const AABB &box) |
| void | R_DrawBoundingBoxes (void) |
| void | R_DrawTexturedBox (const vec3_t absmins, const vec3_t absmaxs) |
| Draws the textured box, the caller should bind the texture. More... | |
"Clean up" the depth buffer into a rect
Definition at line 596 of file r_draw.cpp.
References rendererData_t::batchCount, GLboolean(), GLint, R_BindArray(), R_BindDefaultArray(), refdef, viddef_t::rx, viddef_t::ry, and viddef.
Referenced by uiItemNode::draw(), uiRadarNode::draw(), uiSequenceNode::draw(), and UI_DrawModelNode().
Draws the model bounding box.
Definition at line 690 of file r_draw.cpp.
References AABB::maxs, AABB::mins, R_BindArray(), R_BindDefaultArray(), and R_ComputeBoundingBox().
Referenced by R_DrawAliasModel(), R_DrawBox(), R_DrawModelDirect(), R_DrawModelParticle(), and R_RenderBspRRefs().
Definition at line 670 of file r_draw.cpp.
References bbox_arrays_t::bboxes, bbox_arrays_t::bboxes_index, i, lengthof, AABB::maxs, AABB::mins, r_bbox_array, R_ComputeBoundingBox(), and VectorCopy.
Referenced by CL_Trace().
Definition at line 640 of file r_draw.cpp.
References bbox_arrays_t::bboxes, bbox_arrays_t::bboxes_index, i, r_bbox_array, R_BindArray(), R_BindDefaultArray(), and R_Color().
Referenced by R_RenderFrame().
Draws one 8*8 graphics character with 0 being transparent. It can be clipped to the top of the screen to allow the console to be smoothly scrolled off.
Definition at line 99 of file r_draw.cpp.
References char_arrays_t::color_index, char_arrays_t::colors, con_fontHeight, con_fontWidth, int(), lengthof, r_char_arrays, char_arrays_t::texcoord_index, char_arrays_t::texcoords, char_arrays_t::vert_index, and char_arrays_t::verts.
Referenced by Con_DrawConsole(), and Con_DrawText().
Definition at line 155 of file r_draw.cpp.
References rendererData_t::batchCount, char_arrays_t::color_index, char_arrays_t::colors, draw_chars, R_BindArray(), R_BindDefaultArray(), R_BindTexture, r_char_arrays, R_DrawArrays(), R_EnableColorArray(), refdef, char_arrays_t::texcoord_index, char_arrays_t::texcoords, image_t::texnum, char_arrays_t::vert_index, and char_arrays_t::verts.
Referenced by R_EndFrame().
Definition at line 422 of file r_draw.cpp.
References rendererData_t::batchCount, i, lengthof, M_PI, R_BindArray(), R_BindDefaultArray(), R_Color(), refdef, shift, and VectorSet.
Referenced by R_DrawPtlCircle().
Fills a box of pixels with a single color.
Definition at line 188 of file r_draw.cpp.
References batch_arrays_t::color_index, batch_arrays_t::colors, lengthof, LittleLong, R_DrawFills(), r_fill_arrays, viddef_t::rx, viddef_t::ry, batch_arrays_t::vert_index, batch_arrays_t::verts, and viddef.
Referenced by uiLineChartNode::draw(), GAME_GetImportData(), SCR_DrawLoadingBar(), SEQ_Render2D(), and UI_DrawFill().
Definition at line 232 of file r_draw.cpp.
References rendererData_t::batchCount, batch_arrays_t::color_index, batch_arrays_t::colors, R_BindArray(), R_BindDefaultArray(), R_Color(), R_DrawArrays(), R_EnableColorArray(), R_EnableTexture(), r_fill_arrays, refdef, texunit_diffuse, batch_arrays_t::vert_index, and batch_arrays_t::verts.
Referenced by R_DrawFill().
Draws an image or parts of it.
| x,y | position to draw the image to | |
| [in] | image | Pointer to the imlage to display |
Definition at line 341 of file r_draw.cpp.
References image_t::height, R_DrawTexture(), viddef_t::rx, viddef_t::ry, image_t::texnum, viddef, and image_t::width.
Referenced by HUD_UpdateCursor(), R_DrawImageCentered(), SCR_DrawCursor(), SCR_DrawLoadingScreen(), and SEQ_Render2D().
| const image_t * R_DrawImageArray | ( | const vec2_t | texcoords[4], |
| const vec2_t | verts[4], | ||
| const image_t * | image | ||
| ) |
Definition at line 357 of file r_draw.cpp.
References rendererData_t::batchCount, R_BindArray(), R_BindDefaultArray(), R_BindTexture, refdef, and image_t::texnum.
Referenced by R_DrawTexture(), UI_DrawNormImage(), and UI_RadarNodeDrawArrays().
Draws one line with only one start and one end point.
Definition at line 494 of file r_draw.cpp.
References R_Draw2DArray().
Referenced by GAME_GetImportData().
2 dimensional line strip
Definition at line 477 of file r_draw.cpp.
References R_Draw2DArray().
Referenced by uiLineChartNode::draw(), and GAME_GetImportData().
Definition at line 509 of file r_draw.cpp.
References R_Draw2DArray().
Draws a rect to the screen. Also has support for stippled rendering of the rect.
| [in] | x,y | X/Y-position of the rect |
| [in] | w | Width of the rect |
| [in] | h | Height of the rect |
| [in] | color | RGBA color of the rect |
| [in] | lineWidth | Line strength in pixel of the rect |
| [in] | pattern | Specifies a 16-bit integer whose bit pattern determines which fragments of a line will be drawn when the line is rasterized. Bit zero is used first; the default pattern is all 1's |
2 for this function Definition at line 390 of file r_draw.cpp.
References rendererData_t::batchCount, R_BindDefaultArray(), R_Color(), refdef, viddef_t::rx, viddef_t::ry, and viddef.
Referenced by GAME_GetImportData(), SEQ_Render2D(), and UI_DrawRect().
Definition at line 349 of file r_draw.cpp.
References R_DrawTexture(), viddef_t::rx, viddef_t::ry, image_t::texnum, and viddef.
Referenced by Con_DrawConsole().
Bind and draw a texture.
| [in] | texnum | The texture id (already uploaded of course) |
| [in] | x,y | normalized position on the screen |
| [in] | w,h | normalized width and height values |
Definition at line 328 of file r_draw.cpp.
References default_texcoords, R_BindTexture, R_DrawImageArray(), and Vector2FromInt.
Referenced by CIN_OGM_DrawCinematic(), CIN_ROQ_DrawCinematic(), R_Draw3DGlobe(), R_DrawImage(), and R_DrawStretchImage().
Draws the textured box, the caller should bind the texture.
Definition at line 714 of file r_draw.cpp.
References R_BindArray(), and R_BindDefaultArray().
Referenced by R_DrawBox().
Definition at line 579 of file r_draw.cpp.
References clipRect, and currentClipRect.
Referenced by UI_PopClipRect().
Force to draw only on a rect.
R_EndClipRect Definition at line 550 of file r_draw.cpp.
References clipRect, currentClipRect, rect_t::height, MAX_CLIPRECT, R_RectIntersection(), viddef_t::rx, viddef_t::ry, viddef, viddef_t::virtualHeight, rect_t::width, rect_t::x, and rect_t::y.
Referenced by UI_PushClipRect().
Uploads image data.
| [in] | name | The name of the texture to use for this data |
| [in] | frame | The frame data that is uploaded |
| [in] | width | The width of the texture |
| [in] | height | The height of the texture |
Definition at line 270 of file r_draw.cpp.
References Com_Error(), ERR_FATAL, rconfig_t::gl_alpha_format, rconfig_t::gl_compressed_alpha_format, rconfig_t::gl_compressed_solid_format, rconfig_t::gl_solid_format, glTexImage2D(), glTexParameterf(), image_t::height, i, it_pic, Mem_Free, Mem_PoolAllocTypeN, name, R_BindTexture, R_CheckError, r_config, R_FindImage(), R_GetScaledTextureSize(), r_noTexture, R_ScaleTexture(), image_t::texnum, image_t::upload_height, image_t::upload_width, vid_imagePool, and image_t::width.
Referenced by CIN_OGM_DrawCinematic(), and CIN_ROQ_DrawCinematic().