16 lines
		
	
	
		
			342 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			342 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| struct S {
 | |
|     float clip0 : SV_ClipDistance0;
 | |
|     float cull0 : SV_CullDistance0;
 | |
|     uint vpai   : SV_ViewportArrayIndex;
 | |
|     uint rtai   : SV_RenderTargetArrayIndex;
 | |
|     int ii      : SV_InstanceID;
 | |
| };
 | |
| 
 | |
| [maxvertexcount(4)]
 | |
| S main(triangle in uint VertexID[3] : VertexID,
 | |
|        inout LineStream<S> OutputStream)
 | |
| {
 | |
|     S s;
 | |
|     return s;
 | |
| }
 | 
