summaryrefslogtreecommitdiff
path: root/ddl/out/java/LambdaCube/IR/RasterContext.java
blob: dc3c72519be5764939bac1d6fa3ba32d6122ff97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// generated file, do not modify!
// 2016-03-21T14:06:54.700322000000Z

package LambdaCube.IR;

import java.util.ArrayList;
import java.util.HashMap;
import RT.*;


public class RasterContext {
  public enum Tag { 
    PointCtx,
    LineCtx,
    TriangleCtx
  }
  public Tag tag;

  public class PointCtx_ extends RasterContext { 
    public PointSize _0;
    public Float _1;
    public PointSpriteCoordOrigin _2;
    public PointCtx_() { tag = RasterContext.Tag.PointCtx; }
  }
  public class LineCtx_ extends RasterContext { 
    public Float _0;
    public ProvokingVertex _1;
    public LineCtx_() { tag = RasterContext.Tag.LineCtx; }
  }
  public class TriangleCtx_ extends RasterContext { 
    public CullMode _0;
    public PolygonMode _1;
    public PolygonOffset _2;
    public ProvokingVertex _3;
    public TriangleCtx_() { tag = RasterContext.Tag.TriangleCtx; }
  }
}