Click here to Skip to main content
15,893,594 members
Home / Discussions / Graphics
   

Graphics

 
GeneralRe: Found the solution Pin
spoolrd27-Jul-12 4:05
spoolrd27-Jul-12 4:05 
Questionhelp on 3d game development Pin
Emile the code master20-May-12 18:54
Emile the code master20-May-12 18:54 
AnswerRe: help on 3d game development Pin
Amarnath S3-Jun-12 21:50
professionalAmarnath S3-Jun-12 21:50 
GeneralRe: help on 3d game development Pin
Emile the code master3-Jun-12 22:24
Emile the code master3-Jun-12 22:24 
Questionthe bellow code contains some logical errors.in this code food(),poison food() functions will only work at once after execution . .please help me to correct this. Pin
Deepak97121-Apr-12 6:14
Deepak97121-Apr-12 6:14 
AnswerRe: the bellow code contains some logical errors.in this code food(),poison food() functions will only work at once after execution . .please help me to correct this. Pin
Richard MacCutchan21-Apr-12 7:49
mveRichard MacCutchan21-Apr-12 7:49 
AnswerRe: the bellow code contains some logical errors.in this code food(),poison food() functions will only work at once after execution . .please help me to correct this. Pin
Wes Aday21-Apr-12 8:44
professionalWes Aday21-Apr-12 8:44 
AnswerRe: the bellow code contains some logical errors.in this code food(),poison food() functions will only work at once after execution . .please help me to correct this. Pin
iPick1226-May-12 5:18
iPick1226-May-12 5:18 
It's a better idea to use the Win32 API Sleep() and SleepEx() functions for delaying instead of huge incremental loops:
C++
VOID
Delay(INT iMilliseconds)
{
    SleepEx(iMilliseconds, FALSE);
}


For more information check out:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms686307%28v=vs.85%29.aspx[^]

modified 11-Jun-12 9:17am.

QuestionClamp Texture Address Mode Pin
Seeker200221-Feb-12 10:45
Seeker200221-Feb-12 10:45 
QuestionResize Canvas on bitmap Pin
pablogvivo30-Jan-12 21:20
pablogvivo30-Jan-12 21:20 
Question3d Pin
born to create23-Jan-12 16:44
born to create23-Jan-12 16:44 
AnswerRe: 3d Pin
Richard MacCutchan23-Jan-12 23:29
mveRichard MacCutchan23-Jan-12 23:29 
GeneralRe: 3d Pin
CDP180223-Jan-12 23:47
CDP180223-Jan-12 23:47 
GeneralRe: 3d Pin
Richard MacCutchan23-Jan-12 23:58
mveRichard MacCutchan23-Jan-12 23:58 
GeneralRe: 3d Pin
CDP180224-Jan-12 0:07
CDP180224-Jan-12 0:07 
GeneralRe: 3d Pin
Richard MacCutchan24-Jan-12 0:30
mveRichard MacCutchan24-Jan-12 0:30 
AnswerRe: 3d Pin
CDP180223-Jan-12 23:57
CDP180223-Jan-12 23:57 
AnswerRe: 3d Pin
Hermaine18-Apr-12 21:55
Hermaine18-Apr-12 21:55 
QuestionAnimation in borderless window Pin
Aleonis23-Oct-11 1:14
Aleonis23-Oct-11 1:14 
AnswerRe: Animation in borderless window PinPopular
Richard MacCutchan23-Oct-11 2:21
mveRichard MacCutchan23-Oct-11 2:21 
GeneralRe: Animation in borderless window Pin
Aleonis23-Oct-11 2:32
Aleonis23-Oct-11 2:32 
GeneralRe: Animation in borderless window Pin
Richard MacCutchan23-Oct-11 2:44
mveRichard MacCutchan23-Oct-11 2:44 
GeneralRe: Animation in borderless window Pin
Aleonis23-Oct-11 3:32
Aleonis23-Oct-11 3:32 
AnswerRe: Animation in borderless window Pin
Alisaunder23-Oct-11 5:07
Alisaunder23-Oct-11 5:07 
GeneralRe: Animation in borderless window Pin
Aleonis23-Oct-11 7:14
Aleonis23-Oct-11 7:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.