Skip to content

Instantly share code, notes, and snippets.

@sugi-cho
Created February 28, 2018 07:04
Show Gist options
  • Save sugi-cho/eb7719305d1dd7a2fe2fcba25d3d825f to your computer and use it in GitHub Desktop.
Save sugi-cho/eb7719305d1dd7a2fe2fcba25d3d825f to your computer and use it in GitHub Desktop.
Shader "Hidden/MeshDataWriter"
{
SubShader
{
Pass
{
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#pragma target 4.5
#include "UnityCG.cginc"
struct appdata
{
float4 vertex : POSITION;
float3 normal : NORMAL;
float2 uv : TEXCOORD0;
uint vid : SV_VertexID;
};
struct vData {
float3 pos;
float3 normal;
float2 uv;
};
RWStructuredBuffer<vData> _VDataOut : register(u1);
void vert(appdata v)
{
vData data = (vData)0;
data.pos = mul(unity_ObjectToWorld, v.vertex);
data.normal = UnityObjectToWorldNormal(v.normal);
data.uv = v.uv;
_VDataOut[v.vid] = data;
}
void frag(){}
ENDCG
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment