video_core: Implement IR based geometry shaders

This commit is contained in:
ReinUsesLisp
2018-12-24 02:24:38 -03:00
parent a1b845b651
commit e1fea1e0c5
4 changed files with 102 additions and 10 deletions

View File

@ -172,6 +172,9 @@ enum class OperationCode {
Exit, /// () -> void
Kil, /// () -> void
EmitVertex, /// () -> void
EndPrimitive, /// () -> void
YNegate, /// () -> float
Amount,