OpenGL Setup?

2016-06-16 Thread OpenJelly via Digitalmars-d-learn
Last time I worked on anything OpenGL in D I was using a Linux machine, and I had to really bend over backward to get set up. I'm using Windows 7 at the moment and I'd like to work on some graphics stuff but I'm pretty lost... I just want to install an IDE that's not prone to crashing and com

Re: OpenGL Setup?

2016-06-17 Thread OpenJelly via Digitalmars-d-learn
On Thursday, 16 June 2016 at 19:52:58 UTC, OpenJelly wrote: Trying to get VS Code to work with code-d... can't get dcd to work with it. It says it's failed to kill the dcd server when I try to reload it. It wasn't appearing in task manager (but dcd-client was) and manually starting it up didn

Issues getting DCD to work on Windows

2016-06-17 Thread OpenJelly via Digitalmars-d-learn
Trying to set up an IDE on Windows 7 with code completion but my issues keep coming back to DCD. The tests failed the one time I could get the tests to go beyond it waiting for another instance of DCD to close. The path is added to my PATH variable, I've rebuilt it from source with the .bat fil

Static function as member delegate's initial value?

2016-06-20 Thread OpenJelly via Digitalmars-d-learn
I've got a delegate as a member of a class and I want to give it a default value. I can assign it an initial value in each initializer of the class but I'd like to make my code more readable and assign it a function at the declaration. Trying to toDelegate the situation gives me the following