Difference between revisions of "GameRenderingTerminology"

From polycount
Jump to: navigation, search
(Talk)
 
(changed to WikiName format)
Line 1: Line 1:
__NOTOC__
+
<!-- ## page was renamed from Game Rendering Terminology -->
* [[Polycount|Main Page]] > [[Category:Primer]] > [[Category:Rendering]] > [[Game Rendering Terminology]]
+
 
+
 
= Game Rendering Terminology =
 
= Game Rendering Terminology =
It helps to understand the terms a graphics programmer uses, so you can talk the talk.
+
These are terms every tech-savvy game artist should know.
 +
 
 +
 
 +
 
 +
== Glossary ==
 +
 
 +
<pre><nowiki>#!wiki caution
 +
'''Needs Revision'''
 +
 
 +
This page needs to be revised. The terms should be made into pages, then added to !CategoryGlossary. Then this page can use Inclusions.
 +
</nowiki></pre>
 +
 
 +
 
 +
=== Culling ===
 +
(definition needed) If the view camera (the viewer's eye) can't see it, don't bother processing it and only worry about what the view camera can see.
 +
* Trivial Accept/Reject Culling
 +
* Back-Face Culling
 +
* Occlusion Culling
 +
* Clipping
 +
 
 +
=== Draw Call ===
 +
(definition needed)
 +
 
 +
=== Fill Rate ===
 +
(definition needed) Long thin triangles can [http://boards.polycount.net/showthread.php?p=886302#post886302 cause slower rendering].
 +
 
 +
=== Frame Buffer ===
 +
(definition needed)
 +
 
 +
=== Frame Rate ===
 +
(definition needed)
 +
 
 +
=== GPU ===
 +
The Graphics Processing Unit is a parallel processor for floating point operations; it's the heart & soul of your graphics card. It's mostly used for rendering calculations, but it can also be tricked into doing physics, particle systems, vertex skinning, real-time texture compression, etc. It frees the CPU (Central Processing Unit) to handle the rest of the processing tasks in the game like transforms, AI, sound, etc.
 +
 
 +
=== Pixel Shader ===
 +
(definition needed)
 +
 
 +
=== T-Vertex ===
 +
(definition needed) T-vertices can cause gaps or seams.
 +
 
 +
=== Texture Fetch ===
 +
(definition needed)
 +
 
 +
=== Transform Cost ===
 +
(definition needed)
 +
 
 +
=== Vertex Cache ===
 +
(definition needed)
 +
 
 +
=== Vertex Shader ===
 +
(definition needed)
 +
 
 +
=== Vertex Splits ===
 +
A ton of vertex splits can cause vertex cache misses.
 +
 
 +
* [http://boards.polycount.net/showthread.php?p=767368#post767368 FAQ: Game art optimisation (do polygon counts really matter?)] on the Polycount forum.
 +
* [http://www.ericchadwick.com/examples/provost/byf1.html Beautiful, Yet Friendly Part 1: Stop Hitting the Bottleneck] by [http://ca.linkedin.com/in/gprovost Guillaume Provost]
 +
* [http://www.ericchadwick.com/examples/provost/byf2.html Beautiful, Yet Friendly Part 2: Maximizing Efficiency] by [http://ca.linkedin.com/in/gprovost Guillaume Provost]
 +
* [[Category:Whitepapers]]#Game_Renderer_Articles
 +
 
 +
=== VRAM ===
 +
(definition needed) Video memory
  
; Draw call : definition here
+
=== Z-Buffer ===
; Texture fetch : definition here
+
(definition needed) Also known as the Depth Buffer.
; Fill rate : definition here
+
; Transform cost : definition here
+
; Frame rate : definition here
+
; Frame buffer : definition here
+
; VRAM, video memory : definition here
+
; GPU : The Graphics Processing Unit is a parallel processor for floating point operations; it's the heart & soul of your graphics card. It's mostly used for rendering calculations, but it can also be tricked into doing physics, particle systems, vertex skinning, real-time texture compression, etc. It frees the CPU (Central Processing Unit) to handle the rest of the processing tasks in the game like transforms, AI, sound, etc.
+
; Vertex Cache : definition here
+
; Vertex Shader : definition here
+
; Pixel Shader : definition here
+
; Culling : If the view camera (the viewer's eye) can't see it, don't bother processing it and only worry about what the view camera can see.
+
;  : Trivial Accept/Reject Culling, Back-Face Culling, Occlusion Culling, Clipping.
+
; Z-buffer, Depth Buffer : definition here
+
  
Threads to distill:
+
These are generally 16-bit buffers that store the depth of a pixel (in relation to it's distance from the camera) as a black & white value. See Wikipedia's [http://en.wikipedia.org/wiki/Z-buffering Z-buffering] page.
* [http://boards.polycount.net/showthread.php?t=50588 FAQ: Game art optimisation (do polygon counts really matter?)]
+
* [http://boards.polycount.net/showthread.php?t=72921 How many textures per model is too many?]
+
* [[Polygon Count]]
+
* [http://www.devmaster.net/wiki/Main_Page#Graphics DevMaster wiki Graphics topics]
+
  
<<BR>>
+
----
* [[Polycount|Main Page]] > [[Category:Primer]] > [[Category:Rendering]] > [[Game Rendering Terminology]]
+
[[Category:Rendering]]

Revision as of 15:28, 25 August 2010

Game Rendering Terminology

These are terms every tech-savvy game artist should know.


Glossary

#!wiki caution
'''Needs Revision'''

This page needs to be revised. The terms should be made into pages, then added to !CategoryGlossary. Then this page can use Inclusions.


Culling

(definition needed) If the view camera (the viewer's eye) can't see it, don't bother processing it and only worry about what the view camera can see.

  • Trivial Accept/Reject Culling
  • Back-Face Culling
  • Occlusion Culling
  • Clipping

Draw Call

(definition needed)

Fill Rate

(definition needed) Long thin triangles can cause slower rendering.

Frame Buffer

(definition needed)

Frame Rate

(definition needed)

GPU

The Graphics Processing Unit is a parallel processor for floating point operations; it's the heart & soul of your graphics card. It's mostly used for rendering calculations, but it can also be tricked into doing physics, particle systems, vertex skinning, real-time texture compression, etc. It frees the CPU (Central Processing Unit) to handle the rest of the processing tasks in the game like transforms, AI, sound, etc.

Pixel Shader

(definition needed)

T-Vertex

(definition needed) T-vertices can cause gaps or seams.

Texture Fetch

(definition needed)

Transform Cost

(definition needed)

Vertex Cache

(definition needed)

Vertex Shader

(definition needed)

Vertex Splits

A ton of vertex splits can cause vertex cache misses.

VRAM

(definition needed) Video memory

Z-Buffer

(definition needed) Also known as the Depth Buffer.

These are generally 16-bit buffers that store the depth of a pixel (in relation to it's distance from the camera) as a black & white value. See Wikipedia's Z-buffering page.


Personal tools
Namespaces

Variants
Actions
Navigation
Tools