Unity 绘图函数的原始接口。
这是访问 Unity 经过优化的网格绘图功能的高级快捷方式。
activeColorBuffer | 当前激活的颜色缓冲区。(只读) |
activeColorGamut | 返回当前激活的色域。 |
activeDepthBuffer | 当前激活的深度/模板缓冲区。(只读) |
activeTier | The GraphicsTier for the current device. |
minOpenGLESVersion | The minimum OpenGL ES version. The value is specified in PlayerSettings. |
preserveFramebufferAlpha | 如果在“Player Settings”中启用原生 UI 渲染(只读),则返回 True。 |
Blit | 使用着色器将源纹理复制到目标渲染纹理。 |
BlitMultiTap | 将源纹理复制到目标,用于多点着色器。 |
ClearRandomWriteTargets | 为 Shader Model 4.5 级别的像素着色器清除随机写入目标。 |
ConvertTexture | 该函数提供了在不同格式和尺寸的纹理之间进行转换的有效方式。 目标纹理格式应处于未压缩状态,并且与支持的 RenderTextureFormat 相对应。 |
CopyBuffer | Copies the contents of one GraphicsBuffer into another. |
CopyTexture | 复制纹理内容。 |
CreateAsyncGraphicsFence | 用于调用 Graphics.CreateGraphicsFence 的快捷方式,将 GraphicsFenceType.AsyncQueueSynchronization 作为第一个参数。 |
CreateGraphicsFence | 创建一个 GraphicsFence,其传递时机是此调用前,GPU 中完成的最后一个 Blit、Clear、Draw、Dispatch 或 Texture Copy 命令之后。 |
DrawMesh | 绘制一个网格。 |
DrawMeshInstanced | Draws the same mesh multiple times using GPU instancing. |
DrawMeshInstancedIndirect | Draws the same mesh multiple times using GPU instancing. |
DrawMeshInstancedProcedural | Draws 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 参数选择的异步计算队列执行命令缓冲区。 |
RenderMesh | Renders a mesh with given rendering parameters. |
RenderMeshIndirect | Renders multiple instances of a mesh using GPU instancing and rendering command arguments from commandBuffer. |
RenderMeshInstanced | Renders multiple instances of a mesh using GPU instancing. |
RenderMeshPrimitives | Renders multiple instances of a Mesh using GPU instancing and a custom shader. |
RenderPrimitives | Renders non-indexed primitives with GPU instancing and a custom shader. |
RenderPrimitivesIndexed | Renders indexed primitives with GPU instancing and a custom shader. |
RenderPrimitivesIndexedIndirect | Renders indexed primitives with GPU instancing and a custom shader with rendering command arguments from commandBuffer. |
RenderPrimitivesIndirect | Renders primitives with GPU instancing and a custom shader using rendering command arguments from commandBuffer. |
SetRandomWriteTarget | 为 Shader Model 4.5 级别的像素着色器设置随机写入目标。 |
SetRenderTarget | 设置当前渲染目标。 |
WaitOnAsyncGraphicsFence | 指示 GPU 图形队列处理等待传递给定的 GraphicsFence。 |