Version: 2021.2

Graphics

class in UnityEngine

切换到手册

描述

Unity 绘图函数的原始接口。

这是访问 Unity 经过优化的网格绘图功能的高级快捷方式。

静态变量

activeColorBuffer当前激活的颜色缓冲区。(只读)
activeColorGamut返回当前激活的色域。
activeDepthBuffer当前激活的深度/模板缓冲区。(只读)
activeTierThe GraphicsTier for the current device.
minOpenGLESVersionThe minimum OpenGL ES version. The value is specified in PlayerSettings.
preserveFramebufferAlpha如果在“Player Settings”中启用原生 UI 渲染(只读),则返回 True。

静态函数

Blit使用着色器将源纹理复制到目标渲染纹理。
BlitMultiTap将源纹理复制到目标,用于多点着色器。
ClearRandomWriteTargets为 Shader Model 4.5 级别的像素着色器清除随机写入目标。
ConvertTexture该函数提供了在不同格式和尺寸的纹理之间进行转换的有效方式。 目标纹理格式应处于未压缩状态,并且与支持的 RenderTextureFormat 相对应。
CopyBufferCopies the contents of one GraphicsBuffer into another.
CopyTexture复制纹理内容。
CreateAsyncGraphicsFence用于调用 Graphics.CreateGraphicsFence 的快捷方式,将 GraphicsFenceType.AsyncQueueSynchronization 作为第一个参数。
CreateGraphicsFence创建一个 GraphicsFence,其传递时机是此调用前,GPU 中完成的最后一个 Blit、Clear、Draw、Dispatch 或 Texture Copy 命令之后。
DrawMesh绘制一个网格。
DrawMeshInstancedDraws the same mesh multiple times using GPU instancing.
DrawMeshInstancedIndirectDraws the same mesh multiple times using GPU instancing.
DrawMeshInstancedProceduralDraws the same mesh multiple times using GPU instancing. This is similar to Graphics.DrawMeshInstancedIndirect, except that when the instance count is known from script, it can be supplied directly using this method, rather than via a ComputeBuffer.
DrawMeshNow立即绘制一个网格。
DrawProcedural在 GPU 上绘制程序化的几何形状。
DrawProceduralIndirect在 GPU 上绘制程序化的几何形状。
DrawProceduralIndirectNow在 GPU 上绘制程序化的几何形状。
DrawProceduralNow在 GPU 上绘制程序化的几何形状。
DrawTexture在屏幕坐标系中绘制纹理。
ExecuteCommandBuffer执行命令缓冲区。
ExecuteCommandBufferAsync对基于传入的 ComputeQueueType 参数选择的异步计算队列执行命令缓冲区。
RenderMeshRenders a mesh with given rendering parameters.
RenderMeshIndirectRenders multiple instances of a mesh using GPU instancing and rendering command arguments from commandBuffer.
RenderMeshInstancedRenders multiple instances of a mesh using GPU instancing.
RenderMeshPrimitivesRenders multiple instances of a Mesh using GPU instancing and a custom shader.
RenderPrimitivesRenders non-indexed primitives with GPU instancing and a custom shader.
RenderPrimitivesIndexedRenders indexed primitives with GPU instancing and a custom shader.
RenderPrimitivesIndexedIndirectRenders indexed primitives with GPU instancing and a custom shader with rendering command arguments from commandBuffer.
RenderPrimitivesIndirectRenders primitives with GPU instancing and a custom shader using rendering command arguments from commandBuffer.
SetRandomWriteTarget为 Shader Model 4.5 级别的像素着色器设置随机写入目标。
SetRenderTarget设置当前渲染目标。
WaitOnAsyncGraphicsFence指示 GPU 图形队列处理等待传递给定的 GraphicsFence。