Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Glossary of computer graphics

From Wikipedia, the free encyclopedia
(Redirected fromVector maths library)

This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "Glossary of computer graphics" – news ·newspapers ·books ·scholar ·JSTOR
(June 2016) (Learn how and when to remove this message)

This is a glossary of terms relating tocomputer graphics.

For more general computer hardware terms, seeglossary of computer hardware terms.

0–9

[edit]
2D convolution
Operation that applies linear filtering to image with a given two-dimensional kernel, able to achieve e.g. edge detection, blurring, etc.
2D image
2D texture map
Atexture map withtwo dimensions, typically indexed byUV coordinates.
2D vector
Atwo-dimensionalvector, a commondata type inrasterization algorithms,2D computer graphics,graphical user interface libraries.
2.5D
Also pseudo 3D. Rendering whose result looks 3D while actually not being 3D or having great limitations, e.g. in camera degrees of freedom.
3D graphics pipeline
Agraphics pipeline taking3D models and producing a 2Dbitmap image result.
3D paint tool
A3D graphics application fordigital painting of multipletexture map image channels directly onto a rotated3D model, such aszbrush ormudbox, also sometimes able to modify vertex attributes.
3D scene
A collection of3D models andlightsources in world space, into which a camera may be placed, describing a scene for3D rendering.
3D unit vector
Aunit vector in3D space.
4D vector
A commondatatype in graphics code, holdinghomogeneous coordinates orRGBA data, or simply a3D vector with unused W to benefit from alignment, naturally handled by machines with 4-elementSIMD registers.
4×4 matrix
Amatrix commonly used as atransformation ofhomogeneous coordinates in3D graphics pipelines.[1]
7e3 format
A packed pixel format supported by somegraphics processing units (GPUs) where a single32-bit word encodes three 10-bitfloating-point color channels, each with seven bits ofmantissa and three bits ofexponent.[2]

A

[edit]
AABB
Axis-aligned bounding box (sometimes called "axis oriented"), abounding box stored in world coordinates; one of the simplestbounding volumes.
Additive blending
Acompositing operation wheredst=dst+src,{\displaystyle dst=dst+src,} without the use of analpha channel, used for various effects. Also known aslinear dodge in some applications.
Affine texture mapping
Linear interpolation of texture coordinates in screen space without taking perspective into account, causing texture distortion.
Aliasing
Unwanted effect arising when sampling high-frequency signals, in computer graphics appearing e.g. when downscaling images. Antialiasing methods can prevent it.
Alpha channel
An additional image channel (e.g. extending an RGB image) or standalone channel controllingalpha blending.
Ambient lighting
An approximation to the light entering a region from a wide range of directions, used to avoid needing an exact solution to therendering equation.
Ambient occlusion (AO)
Effect approximating, in an inexpensive way, one aspect ofglobal illumination by taking into account how much ambient light is blocked by nearby geometry, adding visual clues about the shape.[3]: 446 
Analytic model
Amathematical model for a phenomenon to besimulated, e.g. some approximation tosurface shading. Contrasts withEmpirical models based purely on recorded data.
Anisotropic filtering
Advanced texture filtering improving onmipmapping, preventing aliasing while reducing blur in textured polygons at oblique angles to the camera.
Anti-aliasing
Methods for filtering and sampling to avoidvisual artifacts associated with the uniformpixel grid in3D rendering.
Array texture
A form oftexture map containing anarray of 2D texture slices selectable by a 3rd 'W'texture coordinate; used to reduce state changes in3D rendering.[4]
Augmented reality
Computer-rendered content inserted into the user's view of the real world.[3]: 917 
AZDO
Approaching zero driver overhead, a set of techniques aimed at reducing theCPU overhead in preparing and submitting rendering commands in theOpenGL pipeline. A compromise between the traditional GL API and other high-performance low-level rendering APIs.[5]

B

[edit]
Back-face culling
Culling (discarding) of polygons that are facing backwards from the camera.
Baking
Performing an expensive calculation offline, and caching the results in atexture map or vertex attributes. Typically used for generatinglightmaps,normal maps, or lowlevel of detail models.[6]
Barycentric coordinates
Three-element coordinates of a point inside a triangle.
Beam tracing
Modification ofray tracing which instead of lines uses pyramid-shaped beams to address some of the shortcomings of traditional ray tracing, such as aliasing.[7]
Bicubic interpolation
Extension ofcubic interpolation to 2D, commonly used when scaling textures.
Bilinear interpolation
Linear interpolation extended to 2D, commonly used when scaling textures.
Binding
Selecting a resource (texture, buffer, etc.) to be referenced by future commands.
Billboard
A textured rectangle that keeps itself oriented towards the camera, typically used e.g. for vegetation or particle effects.[3]: 551 
Binary space partitioning (BSP)
A data structure that can be used to accelerate visibility determination, used e.g. inDoom engine.
Bit depth
The number ofbits per pixel, sample, ortexel in abitmap image (holding one or more image channels, typical values being 4, 8, 16, 24, 32)
Bitmap
Image stored by pixels.
Bit plane
A format forbitmap images storing1 bit per pixel in a contiguous2D array; Several suchparallel arrays combine to produce the a higher-bit-depth image. Opposite of packed-pixel format.
Blend operation
A render state controllingalpha blending, describing a formula for combining source and destinationpixels.
Bone
Coordinate systems used to control surface deformation (via Weight maps) duringskeletal animation. Typically stored in ahierarchy, controlled bykey frames, and other proceduralconstraints.
Bounding box
One of the simplest type ofbounding volume, consisting ofaxis-aligned orobject-alignedextents.
Bounding volume
A mathematically simple volume, such as a sphere or a box, containing 3D objects, used to simplify and accelerate spatial tests (e.g. for visibility or collisions).[3]: 819 
BRDF
Bidirectional reflectance distribution functions (BRDFs),empirical models defining 4D functions forsurface shading indexed by a view vector and light vector relative to a surface.[8]
Bump mapping
Technique similar to normal mapping that instead of normal maps uses so called bump maps (height maps).
BVH
Bounding volume hierarchy is a tree structure on a set of geometric objects.

C

[edit]
Camera
Avirtual camera from whichrendering is performed, also sometimes referred to as 'eye'.
Camera space
A space with thecamera at theorigin, aligned with the viewer's direction, after the application of theworld transformation and view transformation.
Cel shading
Cartoon-like shading effect.
Clipping
Limiting specific operations to a specific region, usually the view frustum.
Clipping plane
Aplane used tocliprendering primitives in agraphics pipeline. These may define theview frustum or be used for other effects.
Clip space
Coordinate space in which clipping is performed.
Clip window
A rectangular region in screen space, used duringclipping. A clip window may be used to enclose a region around aportal inportal rendering.
CLUT
A table of RGB color values to be indexed by a lower-bit-depth image (typically 4–8 bits), a form ofvector quantization.
Color bleeding
Unwanted effect in texture mapping. A color from a border of unmapped region of the texture may appear (bleed) in the mapped result due to interpolation.
Color channels
The set ofchannels in abitmap image representing the visible color components, i.e. distinct from the alpha channel or other information.
Color resolution
Command buffer
A region ofmemory holding a set of instructions for agraphics processing unit for rendering a scene or portion of a scene. These may be generated manually inbare metal programming, or managed by low levelrendering APIs, or handled internally byhigh level rendering APIs.
Command list
A group of rendering commands ready for submission to agraphics processing unit, see also Command buffer.
Compute API
AnAPI for efficiently processing large amounts of data.[9]
Compute shader
Acompute kernel managed by a rendering API, with easy access to rendering resources.
Cone tracing
Modification ofray tracing which instead of lines uses cones as rays in order to achieve e.g.antialiasing or soft shadows.[10]
Connectivity information
Indices defining [rendering primitive]s betweenvertices, possibly held in index buffers. describes geometry as agraph orhypergraph.
CSG
Constructive solid geometry, a method for generating complexsolid models fromboolean operations combining simpler modelling primitives.
Cube mapping
A form of environment reflection mapping in which the environment is captured on a surface of a cube (cube map).
Culling
Before rendering begins, culling removes objects that don't significantly contribute to the rendered result (e.g. being obscured or outside camera view).[3]: 830 

D

[edit]
Decal
A "sticker" picture applied onto a surface (e.g. a crack on the wall).[3]: 888 
Detail texture
Texture maps repeated at high frequency combined with amain texture on a surface to prevent a blurred appearance close to the camera.
Deferred shading
A technique by which computation of shading is deferred to later stage by rendering in two passes, potentially increasing performance by not discarding expensively shaded pixels. The first pass only captures surface parameters (such as depth, normals and material parameters), the second one performs the actual shading and computes the final colors.[3]: 884 
Deformation lattice
A means of controllingfree-form deformation via a regular3D grid ofcontrol points moved to arbitrary positions, with polynomial interpolation of the space between them.
Degenerate triangles
Zero area triangle primitives placed in atriangle strip between actual primitives, to allow many parts of atriangle mesh to be rendered in a single drawcall. These are rejected by the triangle setup unit.[11]
Delaunay triangulation
A method for generating an efficient triangulating between a set ofvertices in aplane.
Depth buffer
Abitmap image holding depth values (either aZ buffer or aW buffer), used forvisible surface determination, duringrasterization of 3D scenes
Depth map
Abitmap image ortexture map holding depth values. Similar to aheight map ordisplacement map, but usually associated with a projection.
Depth value
A value in adepth map representing a distance perpendicular to the space of an image.
Diffuse lighting
In shading, a diffuse component of light is the light reflected from the surface uniformly into all directions. This component depends on the surface normal and direction to the light source but not on the viewer's position.
Direct3D
Microsoft Windows 3D API, with similar architecture toOpenGL.
Displacement mapping
a method for adding detail to surfaces bysubdivision and displacement of the resultingvertices from aheight map.[12]
Distributed ray tracing
Modification ofray tracing that casts multiple rays through each pixel in order to model soft phenomena such as soft shadows, depth of field etc.
Double buffering
Using a dedicated buffer for rendering and copying the result to the screen buffer when finished. This prevents stutter on the screen and the user seeing rendering in progress.
Drawcall
A single rendering command submitted to a rendering API, referring to a single set of render states.

E

[edit]
Edge vector
Avector between 2 positionvertices in apolygon orpolygon mesh, along anedge.
Environment mapping
Also reflection mapping, a technique of approximating reflections of environment on complex surfaces of3D models in real time. A complete 360 degree view of environment needs to be prerendered and stored in a texture using a specific mapping (e.g.cube mapping,sphere mapping etc.)
Extents
The minimum and maximum values of an object orprimitive along acoordinate axis or set of axes.

F

[edit]
Fixed-function pipeline
A hardwarerendering pipeline withoutshaders, composed entirely offixed-function units. A limited number of functions may be controlled by render states.
Fixed-function unit
A piece of hardware in agraphics processing unit implementing a specific function (such as triangle setup or texture sampling), without programmable control byshaders.
Flat shading
Shading that assigns a uniform color to each face of a 3D model, giving it a "sharp-edge" look.
Forward rendering
A term for traditional3D rendering pipelines which sortlightsources applicable to3D models in world space prior torasterization. Contrasts withDeferred shading.
Forward-plus rendering
An extension of forward rendering usingcompute shaders to placelightsources into screen space tiles, to accelerate the use of manylightsources, bypassing some of the disadvantages ofdeferred shading.[13]
Fractal
A complex, self-similar shape described by a simple equation. Fractals can be used e.g. in procedural terrain generation.[citation needed]
Fragment (pixel) shader
Shader processing individual pixels or fragments (values that may potentially become pixels).
Frustum culling
A stage in arendering pipeline, filtering out3D models whosebounding volumes fail an intersection test with theview frustum, allowing trivial rejection.
Fresnel
According toFresnel equations, surfaces show more specular reflections when viewed at near-grazing incidence. This effect is often simulated in computer graphics.
FXAA
An approximateantialiasing method performed in apost-processing step which smooths the image in screen space, guided byedge detection (contrasting with the usualsupersampling approaches that require larger frame-buffers).

G

[edit]
Geometry
Typically used to refer tovertex & rendering primitiveconnectivity information (distinct frommaterials andtextures).[3]: 47 
Geometry shader
In APIs such asOpenGL andDirect3D, geometry shader is an optional stage able to process 3D model geometry in more advanced ways than a vertex or tessellation shaders (e.g. turn primitives into other primitives).
G-buffer
A screen space representation of geometry andmaterial information, generated by an intermediate rendering pass indeferred shadingrendering pipelines.[14]
Global illumination
Computing the global interactions of light within the scene, e.g. reflections of light from one object to another, by which realism is added.
Gouraud shading
Shading technique that computes values at triangle vertices and interpolates them across the surface. This is more realistic and computationally expensive than flat shading, and less than Phong shading.
Graphics processing unit
Hardware used to accelerate graphical computations.
Graphical shader
Ashader associated with therendering pipeline; not acompute shader.
Grid cell index
Integercoordinates in amultidimensional array.

H

[edit]
HDR
High-dynamic-range imaging, animage format usingfloating-point values. Allows additional realism withpost processing.
Heightmap
A2D array ortexture map holding height values; typically used for defining landscapes, or fordisplacement mapping
Homogeneous coordinates
Coordinates of form(x,y,z,w) used during matrix transforms of vertices, allowing to perform non-linear transforms such as theperspective transform.

I

[edit]
Image channel
A single component (referred to as achannel) of abitmap image; one of multiple components perpixel, e.g. forRGB orYUV color space, or additional channels foralpha blending
Image format
A specific way of representing abitmap image inmemory, also refers toimage file formats.
Image generation
Synonymous withrendering; taking a 3D scene (or other form of encoded data) and producing abitmap image result.
Image generator
Ahardware accelerator for image generation, almost synonymous with agraphics processing unit, but historically used to refer to devices aimed atrealtime rendering forsimulation (e.g.Evans & Sutherland ESIG line).
Image order rendering
Rendering methods that iterate over pixels of the screen in order to draw the image (e.g.raytracing).
Image plane
The plane in the world which is identified with the plane of the display monitor used to view the image that is being rendered.
Immediate mode rendering
The submission of rendering commands and rendering primitive data without the extensive use of managed resources; rendering primitive vertex attribute data may be embedded directly into a command list, rather than referencedindirectly from resources.
Impostor
A dynamically renderedBillboardtexture map used to stand in for geometry in the distance. A form oflevel of detail optimization.[15]
Incremental error algorithm
A set ofrasterization algorithms which use simpleinteger arithmetic to update anerror term that determines if another quantity is incremented, avoiding the need for expensivedivision ormultiplication operations; e.g.bresenham's line algorithm, orrasterizingheightmap landscapes.[16]
Index buffer
A rendering resource used to define rendering primitive connectivity information betweenvertices.
Indirect illumination
Another term forglobal illumination.
Instancing
Rendering multiple objects (instances) using the same geometry data.
Intersection test
Determining if two pieces ofgeometryintersect, commonly required insimulation,rendering pipelines, and3D modelling applications.

K

[edit]
K-DOP
A type ofbounding volume used for fast intersection tests; adiscrete oriented polytope (DOP). These generalisebounding boxes withextents additional discreteplanes (e.g. diagonals formed by each pair of coordinate axes, etc.).

L

[edit]
Level of detail (LOD)
If an object contributes less to the rendered result, e.g. by being far away from the camera, LOD chooses to use a simpler version of the object (e.g. with fewer polygons or textures).[3]: 852 
Light probe
Object used to capture light parameters at a specific point in space in order to help compute scene lighting.[17]
Low level rendering API
A library providing a minimalabstraction layer over agraphics processing unit's raw command lists, such asVulkan,LibGCM, orMetal (API). The user typically has more control over (and responsibility for)resource management,command buffers, synchronization issues.
Lighting
Computations simulating the behavior of light.
Light vector
In shading calculations, a3d unit vector representing the direction ofincident light onto a model's surface.
Light field
Adata structure approximating the4D flux oflight rays through a space (or in the general case, 5D); it may be captured using multiple cameras (e.g.light stage), or rendered from a3D model byray tracing.
Line primitive
A rendering primitive or modelling primitive representing aline segment, used forwireframes.
Lumels
A term fortexels in thetexture map representing alightmap.

M

[edit]
Manhattan distance
Measure of distance between two points, different fromEuclidean distance, that sums the distances along principal axes.
Marching cubes
A method for triangulatingimplicit surfaces.
MegaTexturing
Texturing technique that works with extremely large textures which are not loaded into memory all at once, but rather streamed from thehard disk depending on the camera view.[18]: 176 
Microtexture
An alternative term sometimes used for Detail textures.
Mipmap
Method of preventingaliasing by storing differently scaled versions of the same image and using the correct one during rendering.
Modelling primitive
Basic elements from which3D models and 3D scenes are composed. Also known as aGeometric primitive.
Model space
Coordinate system in which a 3D model is created and stored.
Model transformation matrix
Atransformation matrix producingworld coordinates from a3D model'slocal coordinates.
Multiply blend
Ablending operation used forlightmaps,dst=dstsrc.{\displaystyle dst=dst*src.}

N

[edit]
Near clipping
The clipping of 3Drendering primitives against the near clip plane. Necessary to correctly display rendering primitives that partially pass behind thecamera.
Nearest-neighbor interpolation
Simplest form of interpolation that for given position outputs the color of the nearest sample.
Noise
In real world data a noise is an unwanted distortion of the captured signal, e.g. in photography. In rendering, artificial noise, such aswhite noise orPerlin noise, is often generated and added on purpose to add realism.
Normal mapping
Method of adding detail to the surface of 3D models, without increasing geometry complexity, by using a texture with precomputed normals that are used during shading.

O

[edit]
OBJ format
A common 3D file format.
Object order rendering
Rendering methods that iterate over objects in the scene and draws then one by one (e.g.rasterization).
Occlusion culling
Culling (discarding) of objects before rendering that are completely obscured by other objects.
Occlusion query
A command passed to agraphics processing unit requesting the testing ofbounding volume geometry against thedepth buffer to determine if any contents in thepotentially visible set; used forhardware acceleratedocclusion culling.
Offline rendering
Non-real-time rendering.
OOBB
Anobject oriented bounding box (sometimes called object aligned); abounding box stored in some object'slocal coordinate system
OpenGL
Commonly used 2D and 3D graphics renderingAPI.
Outcode
A smallinteger holding a bit for the result of every plane test (or clip window edge test) failed inclipping. Primitives may be trivially rejected if thebitwise AND of all itsvertices outcodes is non zero

P

[edit]
Packed pixel format
Animage format where theimage channels are interleaved contiguously inmemory, possibly containing multiple channels within singlemachine words, equivalent to anarray of structures for bitmap data. Contrasts withplanar image formats.
Parallax mapping
Shader effect that adds detail with a sense of depth to a 3D surface, in a more realistic way than normal mapping.
Parameter gradient
Thederivative of a vertex attribute with respect to screen spacecoordinates duringrasterization, used forinterpolation across a rendering primitive surface.
Particle effect
Effects consisting of a number of particles that behave by certain rules, typically used to simulate fire, smoke etc.[3]: 567 
Path tracing
Photorealistic iterative rendering method based on tracing light paths.
Perspective correct texturing
Non-linear texture coordinate interpolation that takes into account perspective, eliminating distortion seen in affine texture mapping.
Phong lighting
A commonly used model of local illumination that computes the result as a sum of ambient, diffuse and specular elements of light.
Phong shading
Shading technique that uses interpolated normals.
Photogrammetry
Science and technology of making measurement from photographs, e.g. automatically creating 3D models of environment.
Photometry
Science of measuring light in terms of human perception.
Photon mapping
Photorealistic rendering algorithm based on tracing rays from the camera as well as light sources, able to simulate effects such ascaustics.
Physically based rendering (PBR)
Rendering algorithms based onphysics simulation oflight, includingconservation of energy,empirical models of surfaces.[19]
Pixel
Smallest element of a raster image.
Planar image format
Animage format where the image channels (or even bits) for a singlepixel is separated into severalparallel arrays, equivalent to astructure of arrays for bitmap data.
Point cloud
A surface defined by a collection ofvertices withoutconnectivity information.[20]
Point sprite
A rendering primitive in3D graphics pipelines, allowing one vertex plus radius to define abillboard; corner vertices are automatically generated. Typically used forparticle systems
Polygon mesh
A3D model consisting ofvertices connected bypolygon primitives.
Polygon primitive
A rendering or modelling primitive defining a flat surface connecting 3 or morevertices.
Portal
A means ofocclusion culling, defining a visible window between adjacentbounding volumes, used inportal rendering.
Post processing
Effects applied to abitmap image in screen space after3D rendering pipeline, for exampletone mapping, some approximations tomotion blur, andblooms.[21]
Predicated rendering
A feature facilitatingocclusion culling within agraphics pipeline, performed by a command list asynchronously form theCPU, where a group of rendering commands are flagged to be conditional on the result of an earlier occlusion query.
Premultiplied alpha
A variation of abitmap image oralpha blending calculation in which the RGB color values are assumed to be already multiplied by an alpha channel, to reduce computations duringalpha blending; uses theblend operation:dst *= (1 - alpha) + src; capable of mixing alpha blending withadditive blending effects
Primitive
A basic unit ofgeometry for rendering or modelling.
Procedural generation
Generating data, such astextures, 3D geometry or whole scenes by algorithms (as opposed to manually).
Procedural texture
A texture (very often a volume texture) generated procedurally by a mathematical function and with the use of noise functions.[3]: 198 

Q

[edit]
Quaternion
A means of representingrotations in a 4D vector, useful forskeletal animation, with advantages forinterpolation compared toeuler angles (i.e. not suffering fromgimbal lock).[22]

R

[edit]
Radiometry
Measurement of electromagnetic radiation such as light, defining measures such asflux orradiance.[23]: 469 
Raster graphics
Graphics represented as a rectangular grid of pixels.
Rasterization
Converting vector graphics to raster graphics. This terms also denotes a common method of rendering 3D models in real time.
Ray casting
Rendering by casting non-recursive rays from the camera into the scene. 2D ray casting is a2.5D rendering method.
Ray marching
Sampling 3D space at multiple points along a ray, typically used when analytical methods cannot be used.[24]: 157 
Ray tracing
Recursively tracing paths oflight rays through a 3D scene, may be used for3D rendering (more commonly for offline rendering), or other tests.
Recursive subdivision
The process ofsubdividing an object (either geometric object, or a data structure)recursively until some criterion is met.
Render mapping
Thebaking of a rendering of a3D model surface into atexture map to capture surface properties. Also known as 'render surface map'.[25][26]
Render pass
A stage in arendering pipeline generating some (possibly incomplete) representation of the scene.
Render states
Information controlling agraphics pipeline, composed of modes and parameters, including resource identifiers, andshader bindings.
Render target
A graphics resource into whichrendering primitives arerasterized by agraphics pipeline. Render targets may beframe buffers ortexture maps.
Render to texture
The process ofrasterizing into atexture map (or texture buffer) for further use as a resource in subsequent render passes. Used forenvironment mapping, impostor rendering,shadow mapping andpost-processing filters. Requires the ability to use atexture map as arender target.
Rendering API
Asoftware library for submitting rendering commands, and managing render states and rendering resources. Examples includeOpenGL,Vulkan,Direct3D, andMetal. Provides an abstraction layer for agraphics processing unit.
Rendering command
An instruction forrasterizing geometry in a3D graphics pipeline, typically held in a command buffer, or submitted programmatically through arendering API.
Rendering equation
Mathematical equation used as a model of light behavior in photorealistic rendering.
Rendering primitive
Geometry that can be drawn by arasterizer orgraphics processing unit, connectingvertices, e.g. points,lines, triangles, quadrilaterals
Rendering resources
Data managed by a graphics API, typically held indevice memory, including vertex buffers, index buffers,texture maps andframebuffers
Repeating texture
Atexture map applied with wrap-round UV coordinates extending between the 0–1 range (representing one unit of the image), exhibitingperiodicity. Contrasts with clamped, mirrored modes or unique mappings.
Resource
Data (often held in a buffer managed by a rendering API) read by agraphics pipeline, e.g.texture maps, vertex buffers,shaders, index buffers, or other pieces of3D model data.
RGB888
An RGB color value encoded as8 bits perchannel.
RGBA
An RGB color value together with an alpha channel, typically held inbitmap images or intermediates inshading calculations.
RGBA888
an RGBA color value encoded as8 bits perchannel
RGB color value
A3D vector describing a color using theRGB color model; may usefixed-point orfloating-point representations.
RGB image
Abitmap image holding RGB color values in 3image channels
Rounding radius
A value used in smoothing the corners of ageometric figure such as a2D polygon or3D polygon mesh.[27]

S

[edit]
Scene graph
Data structure commonly used to represent a 3D scene to be rendered as adirected acyclic graph.
Screen space
Thecoordinate space of the resulting2d image during3D rendering. The result of3D projection ongeometry incamera space.
Screen space ambient occlusion (SSAO)
Technique of approximating ambient occlusion in screen space.
Screen space directional occlusion
An enhancement ofscreen space ambient occlusion (SSAO) taking direction into account to sample theambient light, to better approximateglobal illumination.[28]
Shader
A subroutine written in ashading language describing:vertex transformations, skinning, and possiblyvertex lighting (invertex shaders);shading calculations (inpixel shaders); control overtessellation (tessellation shaders); orgeneral purpose computation.
Shading calculation
Surface lighting andtexturing blending operations, e.g. includingspecularity,bump mapping etc.
Shadow buffer
A synonym for shadow map.
Shadow map
A texture buffer holding depth values rendered in a separate render pass from the perspective of alightsource, used inShadow mapping; it is typically rendered onto other geometry in the main rendering pass.[29]
Shadow volume
One of the techniques of adding shadows to 3D scenes.
Signed triangle area
Found using half the Z component ofcross product of a pair of screen-space triangle edge vectors, useful forbackface culling and computing parameter gradients intriangle rasterization.
Skybox
Method of creating background for a 3D scene by enclosing it in a textured cuboid (or another environment map).[3]: 547 
Sliverous triangle
Sliver triangle
A triangle with one or two extremelyacute angles, hence a long/thin shape, which has undesirable properties during someinterpolation orrasterization processes.[30]
Software renderer
Rendering software that doesn't use specialized hardware (aGPU) for its computations, i.e. only usesCPU for rendering.
Sparse texture
A texture that can partially reside in the video memory to reduce video memory usage and loading time.
Spatial hashing
A form ofhashing to acceleratespatial testing e.g. forAI,collision detection, typically using agrid cell index as akey.
Specular exponent
Controls the glossiness in thePhong shading model.
Specular highlights
In shading, specular highlight is a bright highlight caused by specularreflections, more prominent on metallic surfaces. These highlights depend on the viewer's position as well as the position of the light source and surface normal.
Spline
Acurve defined bypolynomial interpolation throughcontrol points.
Sprite
2D image moving on the screen, with potential partial transparency and/or animation.[3]: 550 
State changes
The passing of changes in render states in agraphics pipeline, incurring a performance overhead. This overhead is typically minimised by scenesorting.
Stencil buffer
A buffer storing an integer value for each according screen pixel, used e.g. to mask out specific operations and achieve specific effects.
Stereo rendering
Rendering the view twice separately for each eye in order to presentdepth.
Surface normal vector
In shading calculations, thenormal to a3D model surface, typically compared with the light and view vectors to compute the resulting visible colour. Also used fordisplacement mapping.
Swizzled texture
Atexture map stored out of the natural pixel order; seeswizzling (computer graphics). For example, it may be stored inmorton order, giving improvedcache coherency for 2Dmemory access patterns.[31]

T

[edit]
Terrain rendering
Rendering oflandscapes, typically usingheightmaps orvoxels.
Tessellation
Converting a general 3D surface into polygonal representation, important because of HW being optimized for rendering polygons.[3]: 683 
Texel
Texture element, a pixel of a texture.
Texture cache
A specialised read-onlycache in agraphics processing unit for bufferingtexture map reads, accelerating texture sampling operations.
Texture sampling
The process oftexture lookup withtexture filtering. Performed by a texture sampling unit in agraphics processing unit
Texture sampling unit
Afixed-function unit performing texture sampling; also known as atexture mapping unit.
Texture buffer
A region ofmemory (or resource) used as both a render target and atexture map.
Texture map
Abitmap image/rendering resource used intexture mapping, applied to3D models and indexed byUV mapping for3D rendering.
Texture space
Thecoordinate space of atexture map, usually corresponding to UV coordinates in a3D model. Used for somerendering algorithms such astexture space diffusion
Transform feedback
A feature of arendering pipeline where transformed vertices may be written back to a buffer for later use (e.g. for re-use in additionalrender passes or subsequent rendering commands), e.g. caching the result ofskeletal animation for use inshadow rendering.[32]
Triangulation
The process of turning arbitrary geometric models intotriangle primitives, suitable foralgorithms requiringtriangle meshes
Triangle primitive
The most common rendering primitive definingtriangle meshes, rendered bygraphics processing units
Triangle setup
The process of ordering triangle primitive vertices, calculatingsigned triangle area and parameter gradients between vertex attributes as a prerequisite forrasterization.[33]
Triangle setup unit
Afixed-function unit in aGPU that performs triangle setup (and may performbackface culling), prior to actualrasterization.[33]
Trilinear filtering
Extension of bilinear filtering that additionally linearly interpolates between differentmipmap levels of the texture, eliminating sharp transitions.
Triple buffering
Improvement of double buffering for extra performance by adding another back buffer.
Tristrip
A common rendering primitive defining a sequence of adjacenttriangle primitives, where each triangle re-uses 2vertices from the previous one.
Trivial accept
The process of accepting an entirerendering primitive,3D model, orbounding volume contents without further tests forclipping orocclusion culling. The opposite of trivial rejection.
Trivial rejection
Rejecting a rendering primitive or3D model based on a cheap calculation performed early in agraphics pipeline, (e.g. usingoutcodes inclipping). The opposite of trivial accept.

U

[edit]
Unified memory
Amemory architecture where theCPU andGPU share the sameaddress space, and often the samephysical memory. It is common in Intel[34][35] and AMD[36][37] processors with integrated graphics,SoCs andvideo game consoles. Supported on somediscrete GPUs with the use of anMMU.
UV coordinates
Coordinates intexture space, assigned as vertex attributes and/or calculated invertex shaders, used fortexture lookup, defining the mapping from texture space to a3D model surface or any rendering primitive.
UV unwrapping
The process of flattening a3D model's surface into a flat2D plane in a contiguous, spatially coherent manner fortexture mapping.

V

[edit]
Vector graphics
Graphics represented as a set of geometrical primitives.
Vector maths library
A library defining mathematical operations onvector spaces used in3D graphics, concentrating on3D and 4D vectors, and 4x4 matrices, often with optimisedSIMD implementations.[38]
Vertex buffer
A rendering resource managed by a rendering API holdingvertex data. May be connected by primitive indices to assemble rendering primitives such astriangle strips. Also known as aVertex buffer object inOpenGL.
Vertex cache
A specialised read-onlycache in agraphics processing unit for buffering indexed vertex buffer reads.
Vertex shader
Shader processing vertices of a 3D model.
View transformation
Amatrix transforming world space coordinates intocamera space.
View vector
In shading calculations, a 3D unit vector between thecamera and the point of interest on a surface.
View frustum
A truncated pyramid enclosing the subset of 3D space that projects onto a 'viewport' (a rectangular region in screen space, usually the entire screen).
Virtual reality
Computer-rendered content that (unlikeaugmented reality) completely replaces the user's view of the real world.[3]: 915 
Volume texture
A type oftexture map with 3 dimensions.
Voxel
An extension ofpixels into 3 dimensions.
VSync
Vertical synchronization, synchronizes the rendering rate with the monitor refresh rate in order to prevent displaying only partially updated frame buffer, which is disturbing especially with horizontal camera movement.
Vulkan
High-performance, low-level graphics API byKhronos Group.

W

[edit]
W buffering
Adepth buffer storing inverse depth values, which has some advantages forinterpolation and precision scaling.
Weight map
A set of Vertex attributes controlling deformation of a3D model duringskeletal animation. Per-vertexweights are assigned to control the influence of multiple bones (achieved by interpolating the transformations from each).[39]
Window
A rectangular region of a screen orbitmap image.
Wireframe
May refer towireframe models orwireframe rendering.
Wireframe rendering
A rendering of a3D model displaying onlyedgeconnectivity; used in3D modelling applications for greater interactive speed, and clarity formesh editing.
World space
The globalcoordinate system in a 3D scene, reached by applying amodel transformation matrix from the objects'local coordinates.

Z

[edit]
Z buffer
A2D array holding depth values in screen space; a component of aframebuffer; used forhidden surface determination.
Z order
AMorton orderspace filling curve, useful for increasingcache coherency of spatial traversals.
Z test culling
A form ofocclusion culling by testingbounding volumes against aZ buffer; may be performed by agraphics processing unit using occlusion queries.

References

[edit]
  1. ^"matrices for computer graphics"(PDF). Retrieved6 August 2023.
  2. ^"xbox360"(PDF).
  3. ^abcdefghijklmnoAkenine-Möller, Tomas; Haines, Eric; Hoffman, Naty (2018).Real-Time Rendering (Fourth ed.). CRC Press, Taylor & Francis.ISBN 978-1-1386-2700-0.
  4. ^"Introduction To Textures in Direct3D 11 - Win32 apps".learn.microsoft.com. 23 August 2019.
  5. ^"AZDO"(PDF). Retrieved6 August 2023.
  6. ^"blender manual – baking". Archived fromthe original on 27 November 2015. Retrieved6 August 2023.
  7. ^Heckbert, Paul; Hanrahan, Pat (1984). "Beam Tracing Polygonal Objects".Proceedings of the 11th annual conference on Computer graphics and interactive techniques - SIGGRAPH '84. pp. 119–127.doi:10.1145/800031.808588.ISBN 0897911385.S2CID 2845686.
  8. ^Nicodemus, Fred (1965). "Directional reflectance and emissivity of an opaque surface".Applied Optics.4 (7):767–775.Bibcode:1965ApOpt...4..767N.doi:10.1364/AO.4.000767.
  9. ^Cozzi, Patrick; Riccio, Christophe (2012).OpenGL Insights. United States: CRC Press. p. 133.ISBN 9781439893760. Retrieved27 August 2016.
  10. ^Amanatides, John (January 1984). "Ray tracing with cones".ACM SIGGRAPH Computer Graphics.18 (3):129–135.doi:10.1145/964965.808589.
  11. ^"sgi tristrip joining with degenerates".[permanent dead link]
  12. ^"gpu gems displacement mapping". Archived fromthe original on 25 May 2016. Retrieved7 June 2016.
  13. ^"Forward+ Rendering". 4 September 2015.
  14. ^"Learn OpenGL, extensive tutorial resource for learning Modern OpenGL".learnopengl.com.
  15. ^"Chapter 21. True Impostors".NVIDIA Developer.
  16. ^"Incremental error landscape rendering - "voxel space"". 30 April 2020.
  17. ^"Light Probes: Introduction".Blender Manual. Retrieved25 April 2020.
  18. ^Ahearn, Luke (2017).3D Game Environments: Create Professional 3D Game Worlds (second ed.). CRC Press, Taylor & Francis.ISBN 978-1-138-92002-6.
  19. ^"Physically Based Rendering: From Theory to Implementation".www.pbrt.org.
  20. ^"Geometric Modeling: Digital Representation and Analysis of Shapes"(PDF).Archived(PDF) from the original on 19 August 2016. Retrieved7 June 2016.
  21. ^"Post Process Effects in Unreal Engine".docs.unrealengine.com. Epic Games.
  22. ^"quaternions for rotations"(PDF). Archived fromthe original(PDF) on 7 October 2016. Retrieved10 June 2016.
  23. ^Gomes, Jonas; Velho, Luiz; Mario, Costa Sousa (2012).Computer Graphics, Theory and Practice. CRC Press.ISBN 978-1-4398-6557-6.
  24. ^Driemeyer, Thomas (2001).Rendering with mental ray.
  25. ^"Render Surface Map".help.autodesk.com.
  26. ^"Softimage User Guide".download.autodesk.com.
  27. ^"RoundingRadius—Wolfram Language Documentation".reference.wolfram.com.
  28. ^"Max-Planck-Institut für Informatik: Data Protection"(PDF).people.mpi-inf.mpg.de.
  29. ^"shadow mapping sigraph - Google Search".www.google.co.uk.
  30. ^"cleanup of sliver triangles"(PDF). Retrieved6 August 2023.
  31. ^"Optimizing Memory Access on GPUs using Morton Order Indexing"(PDF). Archived fromthe original(PDF) on 15 August 2020. Retrieved10 June 2016.
  32. ^"OpenGL - Transform Feedback".open.gl.
  33. ^ab"triangle setup". Retrieved6 August 2023.
  34. ^"Frequently Asked Questions for Intel® Graphics Memory on".
  35. ^"The Compute Architecture of Intel® Processor Graphics Gen9"(PDF).Intel®. Retrieved6 August 2023.
  36. ^"Configuring UMA Frame Buffer Size on Desktop Systems with Integrated Graphics".AMD. 31 March 2021. Retrieved6 August 2023.
  37. ^"AMD Kaveri Review: A8-7600 and A10-7850K Tested".
  38. ^"Sony open sources Vector Math and SIMD math libraries (Cell PPU/SPU/other platforms)".Beyond3D Forum. Archived fromthe original on 24 June 2016. Retrieved3 November 2018.
  39. ^"weight maps". Archived fromthe original on 31 May 2016. Retrieved10 June 2016.
Glossaries of computers
Retrieved from "https://en.wikipedia.org/w/index.php?title=Glossary_of_computer_graphics&oldid=1260665727#vector_maths_library"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp