| 12345678910111213141516171819 |
- name: "skybox"
- tags: "skybox"
- vertex_program: "/example/skybox.vp"
- fragment_program: "/example/skybox.fp"
- vertex_constants {
- name: "view_proj"
- type: CONSTANT_TYPE_VIEWPROJ
- }
- vertex_constants {
- name: "world"
- type: CONSTANT_TYPE_WORLD
- }
- samplers {
- name: "cubemap"
- wrap_u: WRAP_MODE_CLAMP_TO_EDGE
- wrap_v: WRAP_MODE_CLAMP_TO_EDGE
- filter_min: FILTER_MODE_MIN_LINEAR
- filter_mag: FILTER_MODE_MAG_LINEAR
- }
|