Re: Proper C Pointer Binding

2014-03-26 Thread ralex
On Wednesday, 26 March 2014 at 09:51:04 UTC, Róbert László Páli wrote: I am programming a new GUI widget library based on OpenGL for D. For that I manually bind the used OpenGL functions to D and create an abstraction layer to draw things, boxes, texts, shapes, etc.

Re: Proper C Pointer Binding

2014-03-26 Thread ralex
static Font opCall(string path) { Font f; f.fptr = loadFont(path.toStringz()); return s; } That should be return f; of course.

Re: ddox-generated Phobos documentation is available for review

2014-03-10 Thread ralex
On Monday, 10 March 2014 at 14:56:13 UTC, Andrei Alexandrescu wrote: On 3/10/14, 1:35 AM, Nicolas Sicard wrote: For me it's a real improvement! One thing: symbol names (modules, functions, etc.) shouldn't be hyphenated, specially in tables. All: how does one turn off css hyphenation? Andrei