Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. !!ARBvp1.0
  2. PARAM Emission = state.material.emission;
  3. PARAM Ambient = state.material.ambient;
  4. PARAM Diffuse = state.material.diffuse;
  5. PARAM Specular = state.material.specular;
  6. DP4 result.position.x, Ambient, vertex.position;
  7. DP4 result.position.y, Diffuse, vertex.position;
  8. DP4 result.position.z, Specular, vertex.position;
  9. DP4 result.position.w, Emission, vertex.position;
  10. MOV result.color, vertex.color;
  11. END