You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.7 KiB
47 lines
1.7 KiB
6 months ago
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.Rendering;
|
||
|
|
||
|
namespace HighlightPlus {
|
||
|
|
||
|
public static class RenderingUtils {
|
||
|
|
||
|
static Mesh _fullScreenMesh;
|
||
|
static Mesh fullscreenMesh {
|
||
|
get {
|
||
|
if (_fullScreenMesh != null) {
|
||
|
return _fullScreenMesh;
|
||
|
}
|
||
|
float num = 1f;
|
||
|
float num2 = 0f;
|
||
|
Mesh val = new Mesh();
|
||
|
_fullScreenMesh = val;
|
||
|
_fullScreenMesh.SetVertices(new List<Vector3> {
|
||
|
new Vector3 (-1f, -1f, 0f),
|
||
|
new Vector3 (-1f, 1f, 0f),
|
||
|
new Vector3 (1f, -1f, 0f),
|
||
|
new Vector3 (1f, 1f, 0f)
|
||
|
});
|
||
|
_fullScreenMesh.SetUVs(0, new List<Vector2> {
|
||
|
new Vector2 (0f, num2),
|
||
|
new Vector2 (0f, num),
|
||
|
new Vector2 (1f, num2),
|
||
|
new Vector2 (1f, num)
|
||
|
});
|
||
|
_fullScreenMesh.SetIndices(new int[6] { 0, 1, 2, 2, 1, 3 }, (MeshTopology)0, 0, false);
|
||
|
_fullScreenMesh.UploadMeshData(true);
|
||
|
return _fullScreenMesh;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static Matrix4x4 matrix4x4Identity = Matrix4x4.identity;
|
||
|
public static void FullScreenBlit(CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, Material material, int passIndex) {
|
||
|
destination = new RenderTargetIdentifier(destination, 0, CubemapFace.Unknown, -1);
|
||
|
cmd.SetRenderTarget(destination);
|
||
|
cmd.SetGlobalTexture(ShaderParams.MainTex, source);
|
||
|
cmd.DrawMesh(fullscreenMesh, matrix4x4Identity, material, 0, passIndex);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|