Bugfixes for CPU rendering
[ipdf/code.git] / src / main.cpp
index e5e7947..91ce90b 100644 (file)
@@ -81,14 +81,17 @@ int main(int argc, char ** argv)
        }
        else 
        {
-               for(int i = 0; i < 8; ++i)
+               
+               for(int x = 0; x < 8; ++x)
                {
-                       for (int j = 0; j < 8; ++j)
+                       for (int y = 0; y < 8; ++y)
                        {
-                               doc.Add(((i^j)&1)?RECT_OUTLINE:RECT_FILLED, Rect(0.2+i-512.0,0.2+j-512.0,0.6,0.6));
+                               doc.Add(static_cast<IPDF::ObjectType>((x^y)%3), Rect(0.2+x-4.0,0.2+y-4.0,0.6,0.6));
                        }
                }
                
+               //doc.Add(IPDF::RECT_OUTLINE, Rect(0.4,0.4,0.6,0.6));
+               
        }
        Rect bounds(b[0],b[1],b[2],b[3]);
 

UCC git Repository :: git.ucc.asn.au