Author |
Message |
Topic: DerelictIL in Derelict2 Branch |
aliloko
Replies: 1
Views: 7003
|
Forum: Derelict Posted: Tue Oct 27, 2009 8:42 am Subject: DerelictIL in Derelict2 Branch |
Keep up the good work Aldacron |
Topic: D1 vs D2 for a noob |
aliloko
Replies: 2
Views: 17922
|
Forum: Tutorials Posted: Thu Oct 15, 2009 5:00 am Subject: D1 vs D2 for a noob |
Rather DMD 1 since D2 is changing rapidly and breaks compatibility. |
Topic: D1 vs D2 for a noob |
aliloko
Replies: 2
Views: 17922
|
Forum: Tutorials Posted: Thu Oct 15, 2009 5:00 am Subject: D1 vs D2 for a noob |
Rather DMD 1 since D2 is changing rapidly and breaks compatibility. |
Topic: play a wav file |
aliloko
Replies: 6
Views: 22178
|
Forum: General Posted: Fri Aug 21, 2009 5:21 am Subject: play a wav file |
SDL also let you load a WAV file and play it (i suggest using SDL_Mixer for your use). |
Topic: play a wav file |
aliloko
Replies: 6
Views: 22178
|
Forum: General Posted: Fri Aug 21, 2009 5:21 am Subject: play a wav file |
SDL also let you load a WAV file and play it. |
Topic: OpenGL Performance |
aliloko
Replies: 8
Views: 26651
|
Forum: ArcLib Posted: Mon Jun 29, 2009 5:34 pm Subject: OpenGL Performance |
EDIT : duplicate message |
Topic: OpenGL Performance |
aliloko
Replies: 8
Views: 26651
|
Forum: ArcLib Posted: Mon Jun 29, 2009 5:33 pm Subject: OpenGL Performance |
This does affect performance.
Plus, you could almost assume everybody has OpenGL 2.0+ now.
You'll get shaders and plenty of useful OpenGL extensions. |
Topic: OpenGL Performance |
aliloko
Replies: 8
Views: 26651
|
Forum: ArcLib Posted: Mon Jun 29, 2009 1:17 pm Subject: OpenGL Performance |
Seems like your graphic card drivers were not installed.
You should have way more extensions and OpenGL 1.1 driver is the generic one accompanying Windows. |
Topic: DerelictODE Updated |
aliloko
Replies: 1
Views: 6637
|
Forum: Derelict Posted: Sat Mar 21, 2009 6:18 am Subject: DerelictODE Updated |
Nice ! |
Topic: Program not working on other's machine |
aliloko
Replies: 6
Views: 11648
|
Forum: Derelict Posted: Thu Feb 26, 2009 12:45 pm Subject: Program not working on other's machine |
Maybe you used absolute file paths. |
Topic: Build problems on Ubuntu 7.04 (x86_64) |
aliloko
Replies: 18
Views: 63710
|
Forum: Build Posted: Thu Feb 05, 2009 11:18 am Subject: Build problems on Ubuntu 7.04 (x86_64) |
I'm also having this "macro" thing compiling with DMD 1.30 in Linux |
Topic: c++ template in D |
aliloko
Replies: 8
Views: 34498
|
Forum: Bindings Posted: Wed Nov 12, 2008 11:16 am Subject: c++ template in D |
Thank you for the code, but I meant more to make a binding to the c++ code so that I can use it under D and to rewrite it.
Oops, it was a miss. |
Topic: c++ template in D |
aliloko
Replies: 8
Views: 34498
|
Forum: Bindings Posted: Wed Nov 12, 2008 11:14 am Subject: c++ template in D |
Thank you for the code, but I meant more to make a binding to the c++ code so that I can use it under D and to rewrite it.
Is it possible to make a binding to the c++ code?
Oops, it's a miss. |
Topic: c++ template in D |
aliloko
Replies: 8
Views: 34498
|
Forum: Bindings Posted: Tue Nov 11, 2008 8:25 am Subject: c++ template in D |
I would write :
T max(T)(T a, T b)
{
return a>b ? a : b;
}
class Vector(T)
{
private:
T[] v;
public ... |
Topic: SDL_AudioCVT typo |
aliloko
Replies: 1
Views: 6464
|
Forum: Derelict Posted: Mon Jun 09, 2008 4:48 am Subject: SDL_AudioCVT typo |
first of all thanks a lot for all these bindings !
The line in sdl/audio.d
typedef void function(SDL_AudioCVT*,Uint16,Uint8,int,Uint16,Uint8,int) pfSDL_BuildAudioCVT;
should be replac ... |
|