I want to draw on a window. To do that I created several brushes. For testing I used a normal red (255, 0, 0). Now I want to use more specific color like a 198, 17, 17 red. I am creating the brush like this:
SolidColorBrush _redBrush = new SolidColorBrush(_device, new RawColor4(198, 17, 17, 1));
When I now draw in the window it is not red instead it is just white. Could anyone please tell me what is wrong with this and how I can draw with the color I actually want?
Sorry if this is a really simple question but I am not very experienced with DirectX. Also thanks for your help.