Search found 2 matches

by jade52blue
Sat Apr 20, 2013 7:15 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: creating a qlb from c code can't find N_FTOL@ symbol
Replies: 2
Views: 8883

figured it out - needed to extract some obj files from the tc libs. I can render much faster in qbasic now
by jade52blue
Wed Apr 17, 2013 8:36 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: creating a qlb from c code can't find N_FTOL@ symbol
Replies: 2
Views: 8883

creating a qlb from c code can't find N_FTOL@ symbol

I'm working on building a 3d rendering library in c / asm that qbasic can call down to. Essentially so I can have a "renderPolygons" function. I'm building the c code in turbo C++ 3.0, but when i link it can't figure out how to convert floats to ints. I.E. "float b; int a = (int)b;&qu...