This question already has answers here:
Closed 12 years ago.
Possible Duplicates:
Good books or tutorials for beginning Direct X with c++
directx tutorials c++
what tutorials did you use to learn directx 9 or books.......
I started with Frank D. Luna's book:
http://www.amazon.com/Introduction-Game-Programming-Direct-9-0c/dp/1598220160/
and then coded myself into all sorts of trouble until I got things working.
The DirectX SDK installs a sample browser with alot of great examples on how to use DirectX.
Related
This question already has an answer here:
Webstorm: ColdFusion Syntax
(1 answer)
Closed 7 years ago.
I have to work on a project that uses ColdFusion, and I would like to know if there is away that I can add code highlight and code suggestion for ColdFusion.
Is there a way that I create my own?
Get CFEclipse. This will provide code highlighting and a certain amount of autocompletion.
You can also trial Adobe's CFBuilder, but in my experience it's about equivalent.
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
ffmpeg C API documentation/tutorial
Hi!
A have a task to write on-line screen recording using FFmpeg library with C++, but I can't find some documentation, manual, textbook etc. I didn't work with audio-video before at all, I don't know how to start, and can't find where to learn it. Can you help me with that?
In that case, you should check these ffmpeg tutorials.
They show how to open a video file, read/write frames, sync audio and video and a lot more.
Reading the source is unfortunately the only solution.
For understanding H264 there is the reference source code and the H264 book
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to play mp3 file in c++?
Hi,
I am doing a project which demands the functions of mp3 player. There is no need of giant, full pledged solution, all I want is just "play","pause","stop". I found some libs which are libmad,lame.But, I can't find any example for them. If anybody shed a light on this, I will be thankful to them.
Or Is there any way in Qt
There is a Phonon component in Qt 4.
Not sure about Window, but in Ubuntu it can play pretty much every format whose codec is available.
You might look into Qt Docs at http://doc.qt.nokia.com/latest/phonon-overview.html
I have used cocos2d c++ to create a small game on my Windows machine. It looks great and now I am planning to put it on my iPod Touch. Can anyone tell me how can I achieve this without actually porting my app on objective c?
I have MAC machine and I can arrange for Apple Developer license as well.
Please help me in this.
A few years ago, Joel asked the same thing. There are very interesting comments there, you should take a look. This one is very enlightening:
Google "Objective-C++". That will give you ideas how to allow your C++ to interface with Objective-C APIs.
After a quick search on stackoverflow, I found that at that time, someone else asked the same question here: Is it possible to program iPhone in C++
This question already has answers here:
How do I unit test Django Views?
(3 answers)
Closed 9 years ago.
Does anyone have a good tute/example of writing good tests for views? Most of the stuff I've been finding was from mid 2008 which is only a little helpful.
Alex Gaynor wrote some tips about this very subject just the other day:
Getting started with testing in Django
I'm not sure if this is exactly what you're looking for, but I've been looking into this same topic and found this example test code very helpful.
http://bitbucket.org/ubernostrum/django-registration/src/tip/registration/tests/views.py