1234567891011121314151617181920212223 |
- name: "noise"
- tags: "model"
- vertex_program: "/example/noise.vp"
- fragment_program: "/example/noise.fp"
- vertex_space: VERTEX_SPACE_LOCAL
- vertex_constants {
- name: "mtx_worldview"
- type: CONSTANT_TYPE_WORLDVIEW
- }
- vertex_constants {
- name: "mtx_proj"
- type: CONSTANT_TYPE_PROJECTION
- }
- fragment_constants {
- name: "time"
- type: CONSTANT_TYPE_USER
- value {
- x: 1.0
- y: 1.0
- z: 1.0
- w: 1.0
- }
- }
|