| 1234567891011121314151617181920212223 |
- name: "vertexcolor"
- tags: "model"
- vertex_program: "/example/vertexcolor.vp"
- fragment_program: "/example/vertexcolor.fp"
- vertex_space: VERTEX_SPACE_LOCAL
- vertex_constants {
- name: "mtx_view"
- type: CONSTANT_TYPE_VIEW
- }
- vertex_constants {
- name: "mtx_proj"
- type: CONSTANT_TYPE_PROJECTION
- }
- fragment_constants {
- name: "tint"
- type: CONSTANT_TYPE_USER
- value {
- x: 1.0
- y: 1.0
- z: 1.0
- w: 1.0
- }
- }
|