WinRT D2D
The Lounge
4
Posts
3
Posters
0
Views
1
Watching
-
-
Typo...
void Draw(DXContext ctxt)
{
ctxt.Render = true;
ctxt.Clear(Colors.White);var g3 = new D3DGraphic(ctxt) g3.DrawSomething(...); var g3 = new D2DGraphic(ctxt); g2.DrawSomething(...); ctxt.Render = false;
}
two "var g3 = ...", second should be g2.
-
Typo...
void Draw(DXContext ctxt)
{
ctxt.Render = true;
ctxt.Clear(Colors.White);var g3 = new D3DGraphic(ctxt) g3.DrawSomething(...); var g3 = new D2DGraphic(ctxt); g2.DrawSomething(...); ctxt.Render = false;
}
two "var g3 = ...", second should be g2.
Corrected thanks, good works! ;P I should warn you, this is just pseudo code!!! Updating CodePlex wiki right now...
My programming get away... The Blog... DirectX for WinRT/C# since 2013! Taking over the world since 1371!
-