debugdraw: Added solid fill alpha blend.

This commit is contained in:
Branimir Karadžić
2016-06-24 20:39:58 -07:00
parent d173832129
commit d2c6c79551
2 changed files with 6 additions and 4 deletions

View File

@@ -152,12 +152,12 @@ class DebugDrawApp : public entry::AppI
ddDraw(sphere);
ddSetWireframe(false);
ddSetColor(0xf0ffc0ff);
ddSetColor(0xc0ffc0ff);
sphere.m_center[0] = -2.0f;
ddSetLod(2);
ddDraw(sphere);
ddSetColor(0xc0f0ffff);
ddSetColor(0xa0f0ffff);
sphere.m_center[0] = -4.0f;
ddSetLod(1);
ddDraw(sphere);