0

How to to get view direction in world space inside the Cg geometry shader?

ChatCloud
  • 1,152
  • 2
  • 8
  • 22

1 Answers1

1

it will be in the view matrix. Depending on your column-major or column-minor ordering, it will be in viewXf[3].xyz or flaot3(viewXf[0].w,viewXf[1].w,viewXf[2].w). Negate as desired to match your other math.

bjorke
  • 3,295
  • 1
  • 16
  • 20