🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Blitting to and from a Back Buffer

Started by
4 comments, last by King 24 years, 7 months ago
Hey you!
To make a couple of back buffers, you have to make the primary surface with the "two back buffers" flag:

// You have to zero the memory so random bits that were in the memory where the variable was created won't mess up the things up.
ZeroMemory( &ddsd, sizeof( ddsd ) );

// This is so the fuunctions know how big the ddsd variable is.
ddsd.dwSize = sizeof( ddsd );

// The DDSD_CAPS flag lets DirectDraw know that the ddsd.ddsCaps.dwCaps variable is being used. DDSD_BACKBUFFERCOUNT lets the program know that the ddsd.dwBackBufferCount variable is valid (and that there will be back buffers to this surface).
ddsd.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;

// DDSCAPS_PRIMARYSURFACE: lets DirectDraw know that this is the primary surface. DDSCAPS_FLIP: it can be flipped (back buffers can be used). DDSCAPS_COMPLEX: the surface has backbuffers, so it's complex.
ddsd.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_FLIP | DDSCAPS_COMPLEX;
ddsd.dwBackBufferCount = 2;

// Create the primary surface.
if ( FAILED( lpDD->CreateSurface( &ddsd, &lpDDSPrimary, NULL ) ) )
return FALSE;

Now the primary surface has been created with two back buffers, but you need to call GetAttachedSurface() to actually be able to access the back buffer:

// Again, make sure the memory is cleared.
ZeroMemory( &ddscaps, sizeof( ddscaps ) );

// The surface being created is a back buffer.
ddscaps.dwCaps = DDSCAPS_BACKBUFFER;

// Get the back buffer!
if ( FAILED( lpDDSPrimary->GetAttachedSurface( &ddscaps, &lpDDSBack ) ) )
return FALSE;

You have to call GetAttachedSurface instead of CreatSurface because the back buffer has to be "a part of" another surface. DirectDraw needs to know which surface each backbuffer belongs to.
You really ahve two back buffers (dwBackBufferCount) but you only need to draw onto one of them. The other one is kindof a "middlebuffer". This is how it works: you write to the back buffer, call "flip", the back buffer goes to the middlebuffer, call flip again and the middle buffer goes to the primary surface. This may seem slower, but it really speeds things up. Read the part in Inside DirectX about back buffers.

Now that you have a back buffer and a primary surface, what you need to do is:
1. create another surface
2. load a bitmap into it
3. blit that onto the back buffer
4. flip the surfaces

I could send you a file that came with the directx SDK, ddutil.cpp, that create a surface and loads a bitmap into it. So, you call that and then blit that onto the back buffer with BltFast(), a DirectDraw function (look at the help file). After that, call Flip() (also, look at the help file).
You should have it call BltFast() and Flip() in a loop, say in WinMain() after it processes a message.

I really hope that is what you wanted because it took a damn long time to write
If it doesn't help, post back here. Or I suppose you could get on ICQ...

------------------
- mallen22@concentric.net
- http://members.tripod.com/mxf_entertainment/

Advertisement
Here's some code to grind on:

int PASCAL WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow )
{
// This stores the messages that Windows sends the program.
MSG message;

// Init the system stuff.
if ( sys_Init( hInstance, nCmdShow ) == FALSE )
return FALSE;

// Get, Translate, and Dispatch the messages that Windows give the program..
while ( TRUE )
{
// Process All Pending Window Messages
while ( PeekMessage( &message, NULL, 0, 0, PM_NOREMOVE ) == TRUE )
{
if ( GetMessage( &message, NULL, 0, 0 ) )
{
TranslateMessage( &message );
DispatchMessage( &message );
}
else
return TRUE;
}

// Blit to the back buffer. xTo and yTo are where it's blitted to. It blits the whole lpDDSBitmap surface.
int xTo = 0, yTo = 0;
if ( FAILED( lpDDSBack->BltFast( xTo, yTo, lpDDSBitmap, NULL, DDBLTFAST_WAIT ) ) )
return FALSE;

// Flip the surface. This makes the back buffer the primary surface and vice versa.
if ( FAILED( lpDDSPrimary->Flip( NULL, DDFLIP_WAIT ) ) )
return FALSE;
}

return message.wParam;
}

------------------
- mallen22@concentric.net
- http://members.tripod.com/mxf_entertainment/

WOW!! I just can't stop replying to this post!!!

Here is a page flipping example from the DirectX SDK: http://www.concentric.net/~mallen22/ddex2.rar
It has ddutil.ccp and ddutil.h, by the way.

YOUR SO COOL MAN, YOU GO TO THE SAME SCHOOL AS ME, too bad nobody else likes my post, i'm beginning to cry. oh well ... thanks matthew, i'll definitly grind on some of that beautiful code. Hey if you read this again, go to the MXF Site and read the tutorial on fire, its pretty swell i think.

-King
MXF ENTERTAINMENT

OK, i'm really new to programming in DirectX and i'm wondering how I could go about creating a Back Buffer, then Blit a bitmap to it, then from the Buffer on to the Primary suface. I've been trying to figure this out for hours, any help would be appretiated. thanks

-King
MXF ENTERTAINMENT

And a fine fire it is!
Hey, if anyone else besides King and me are reading this, go to http://members.tripod.com/mxf_entertainment/tutorials/buildingfire.htm !!!

Ya know, you're right; it is cool that we go to the same school...

------------------
- mallen22@concentric.net
- http://members.tripod.com/mxf_entertainment/

[This message has been edited by Matthew Allen (edited November 08, 1999).]

This topic is closed to new replies.

Advertisement