4

Quick easy question. When setting a Rasterizer State (like for example wireframe).....does that affect every object (model) on the screen?

For example, let's pretend I have 2 cubes. I use:

devcon->RSSetState(pRSWireframe);

Will that affect all the objects on the screen?

bobobobo
  • 17,074
  • 10
  • 63
  • 96

1 Answers1

5

It will only affect objects rendered after the state is changed.

DeadMG
  • 5,518
  • 3
  • 27
  • 40