summaryrefslogtreecommitdiff
path: root/ddl/out/java/LambdaCube/IR/TextureType.java
blob: aa742e1b7381aebbb3ff6426592a70983e930511 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// generated file, do not modify!
// 2016-11-10T15:07:10.798971000000Z

package LambdaCube.IR;

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


public class TextureType {
  public enum Tag { 
    Texture1D,
    Texture2D,
    Texture3D,
    TextureCube,
    TextureRect,
    Texture2DMS,
    TextureBuffer
  }
  public Tag tag;

  public class Texture1D_ extends TextureType { 
    public TextureDataType _0;
    public Integer _1;
    public Texture1D_() { tag = TextureType.Tag.Texture1D; }
  }
  public class Texture2D_ extends TextureType { 
    public TextureDataType _0;
    public Integer _1;
    public Texture2D_() { tag = TextureType.Tag.Texture2D; }
  }
  public class Texture3D_ extends TextureType { 
    public TextureDataType _0;
    public Texture3D_() { tag = TextureType.Tag.Texture3D; }
  }
  public class TextureCube_ extends TextureType { 
    public TextureDataType _0;
    public TextureCube_() { tag = TextureType.Tag.TextureCube; }
  }
  public class TextureRect_ extends TextureType { 
    public TextureDataType _0;
    public TextureRect_() { tag = TextureType.Tag.TextureRect; }
  }
  public class Texture2DMS_ extends TextureType { 
    public TextureDataType _0;
    public Integer _1;
    public Integer _2;
    public Boolean _3;
    public Texture2DMS_() { tag = TextureType.Tag.Texture2DMS; }
  }
  public class TextureBuffer_ extends TextureType { 
    public TextureDataType _0;
    public TextureBuffer_() { tag = TextureType.Tag.TextureBuffer; }
  }
}