青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

麒麟子

~~

導(dǎo)航

<2009年8月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
303112345

統(tǒng)計

常用鏈接

留言簿(12)

隨筆分類

隨筆檔案

Friends

WebSites

積分與排名

最新隨筆

最新評論

閱讀排行榜

評論排行榜

[轉(zhuǎn)]關(guān)于Direct3D多窗口編程的一篇翻譯


In DirectX 8, support for rendering to multiple windows is provided through the creation of additional swap chains. However, there are currently no examples of this in the SDK, and the documentation is a bit vague. This article is provided to fill the gaps, and will explain the steps you need to take to write an application that will render multiple views in separate windows.


在DX8中,對多窗口的支持是通過創(chuàng)建更多的Swap Chains來提供的。SDK中沒有相關(guān)的例子而且文檔也只是泛泛而談。這篇文章就是為了解決這個問題,它將向您展示應(yīng)當(dāng)如何一步步地實(shí)現(xiàn)在多個分離窗口中渲染多個視圖。

 

 

Step 1 - Setting Up The Parent Frame


第一步:設(shè)置父框架窗口

 

 

In an application with multiple views, we start with a top level frame that will contain child windows in its client area to display various views. Once the parent frame parent frame has been created, we create our Direct3D device interface, specifying windowed mode and setting the top level window handle as the focus window:


在多視圖的應(yīng)用程序中,我們需要從最高層次的框架——這個框架將包含所有在他用戶區(qū)之內(nèi)的子視圖窗口——開始我們的旅程。當(dāng)父框架創(chuàng)建的時候,我們需要創(chuàng)建Direct3D Device接口,為其指定使用窗口模式,而且設(shè)置這最高層次的窗口句柄作為“焦點(diǎn)窗口”的句柄:

 

 

g_pD3D=Direct3DCreate8(D3D_SDK_VERSION);


if (!g_pD3D) return -1;


D3DPRESENT_PARAMETERS d3dpp;


ZeroMemory( &d3dpp, sizeof(d3dpp) );


d3dpp.Windowed = TRUE;


d3dpp.SwapEffect = D3DSWAPEFFECT_COPY;


// Use the current display mode. 使用當(dāng)前的顯示模式


D3DDISPLAYMODE mode;

if(FAILED(g_pD3D->GetAdapterDisplayMode(D3DADAPTER_DEFAULT , &mode))) {


    SAFE_RELEASE(g_pD3D);


    return -1;


}


d3dpp.BackBufferFormat = mode.Format;


d3dpp.BackBufferWidth = mode.Width;


d3dpp.BackBufferHeight = mode.Height;


d3dpp.EnableAutoDepthStencil=TRUE;


d3dpp.AutoDepthStencilFormat = D3DFMT_D16;


// m_hWnd is handle to top level window    m_hWnd是最高層窗口的句柄


if( FAILED( g_pD3D->CreateDevice( D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, m_hWnd,


                                  D3DCREATE_SOFTWARE_VERTEXPROCESSING,


                                  &d3dpp, &g_pd3dDevice) ) ) {


    SAFE_RELEASE(g_pD3D);


    return -1;


}

 

 


Note that for simplicity the above code does not test depth format, instead choosing a fixed format. Your application should determine a compatible depth format for the format of the rendering target.


注意上面代碼處于簡單考慮并沒有去測試深度緩存的格式(?depth format),而只是選擇了一個確定的格式(D3DFMT_D16)。您的程序應(yīng)該為需要渲染的Render Target選擇一個可接受的深度緩存格式。

 

 

The device has a frame buffer, which the child views will be rendered into, as well as a depth buffer which will be shared among the views. The frame buffer and depth buffer are sized to the full screen resolution, to allow for the fact that the window may later be resized. Otherwise, window size changes would require resetting the device and re-creating the swap chains.


Device都需要有幀緩存,這樣子視圖才能進(jìn)行渲染,同時,深度緩沖也應(yīng)當(dāng)被不同的視圖進(jìn)行共享。幀緩存和深度緩存都被設(shè)置為全屏幕大小,以考慮到可能窗口會被改變大小的情況。如果不的話,窗口改變大小的時候,就需要Reset Device和重新創(chuàng)建Swap Chain。

 

 

Step 2 - Setting Up View Windows


第二步:設(shè)置子視圖窗口

 

 

Now we are ready to create our view windows, and associate them with swap chains that can be rendered to the device. Once the windows have been created, the following code generates a swap chain for the child window:


現(xiàn)在我們可以準(zhǔn)備創(chuàng)建我們的子窗口也就是視圖窗口,并把它們與交換鏈關(guān)聯(lián)以使得他們可以被渲染到Device上。當(dāng)窗口創(chuàng)建后,下面的代碼將為子窗口創(chuàng)建一個交換鏈:

 

 

D3DPRESENT_PARAMETERS d3dpp;


ZeroMemory( &d3dpp, sizeof(d3dpp) );


d3dpp.Windowed = TRUE;


d3dpp.SwapEffect = D3DSWAPEFFECT_COPY;


// Use the current display mode. 使用當(dāng)前的顯示模式


D3DDISPLAYMODE mode;


g_pD3D->GetAdapterDisplayMode(D3DADAPTER_DEFAULT , &mode);


d3dpp.BackBufferFormat = mode.Format;


// m_hWnd contains child window handle m_hWnd儲存子窗口的句柄


d3dpp.hDeviceWindow=m_hWnd;


// m_pSwapChain is IDirect3DSwapChain *   m_pSwapChain是一個IDirect3DSwapChain*對象


g_pd3dDevice->CreateAdditionalSwapChain(&d3dpp, &m_pSwapChain);

 

 


After executing this code, the m_pSwapChain variable will contain a pointer to an IDirect3DSwapChain interface, which contains a frame buffer corresponding to the client area of the child window. This process is performed for each view window, so that that there is a swap chain for each view window.


經(jīng)過這些代碼之后,m_pSwapChain變量就儲存了IDirect3DSwapChain接口的指針,這個接口將儲存子窗口視圖區(qū)所對應(yīng)的幀緩沖。

 

 

Step 3 - Rendering a View

第三步:渲染視圖

 

 

Prior to rendering each view, we must direct the device to render to the appropriate frame buffer, using the SetRenderTarget() method. We pass the back buffer from the window's swap chain, while using the depth buffer that was originally created with the device:


在渲染每個視圖窗口之前,我們必須使得Device來渲染對應(yīng)的幀緩沖,這我們就需要用到SetRenderTarget方法。我們向其中傳入子窗口SwapChain交換鏈的后備緩沖BackBuffer,以及使用最開始跟著Device一起創(chuàng)建的深度緩沖。

 

 

LPDIRECT3DSURFACE8 pBack=NULL,pStencil=NULL;


m_pSwapChain->GetBackBuffer(0,D3DBACKBUFFER_TYPE_MONO,&pBack);


g_pd3dDevice->GetDepthStencilSurface(&pStencil);


g_pd3dDevice->SetRenderTarget(pBack,pStencil);


pBack->Release();


pStencil->Release();

 

 


Note that we release the stencil and backbuffer pointers after we use them, because the GetBackBuffer() and GetDepthStencilSurface() functions call AddRef() on these interfaces to increment their reference counters. Failing to release them would lead to a memory leak.


注意我們必須Release掉Stencil和BackBuffer的指針,因?yàn)镚etBackBuffer和GetDepthStencilSurface這兩個函數(shù)都會調(diào)用COM的AddRef方法,來增加相應(yīng)COM接口的引用計數(shù),因此如果不刪除它們,將會導(dǎo)致內(nèi)存泄露。

 

 

We are now ready to render the view. Rendering is performed within a scene in the normal manner, except that we call Present() on the swap chain interface rather than the device interface:


我們現(xiàn)在已經(jīng)做好準(zhǔn)備渲染視圖窗口了。渲染的方法看起來和我們平常用的方法差不多,只是有一點(diǎn):我們現(xiàn)在需要調(diào)用Swap Chain的接口,而不是Device的接口。

 

 

g_pd3dDevice->Clear(0,NULL,D3DCLEAR_TARGET|D3DCLEAR_ZBUFFER,0x00000000,1.0,0);


if (SUCCEEDED(g_pd3dDevice->BeginScene())) {


  


    // rendering code goes here 渲染代碼寫在這里

 

 


    g_pd3dDevice->EndScene();


}


m_pSwapChain->Present(NULL,NULL,NULL,NULL);

 

 


Step 4 - Handling Resize of Child Views


第四步,子窗口的Resize問題

 

 

DirectX will automatically deal with changes in the child view by using a stretch blit to present the swap chain if the dimensions have client area is not the same size as the swap chain's frame buffer. However, this may not be desirable, as it will cause aliasing if the client area is increased in size.


如果窗口的視圖區(qū)大小和SwapChain的大小不一,那么DirectX將通過Stretch Blit來自動處理圖像的伸縮變化。盡管這可能并不令人期待,因?yàn)檫@在視圖區(qū)變大的時候?qū)?dǎo)致圖像的模糊。

 

posted on 2009-08-10 17:32 麒麟子 閱讀(2445) 評論(4)  編輯 收藏 引用 所屬分類: DirectX

評論

# re: [轉(zhuǎn)]關(guān)于Direct3D多窗口編程的一篇翻譯 2009-08-10 22:23 kuafoo

始終沒找到你發(fā)的那個兩個小游戲源碼  回復(fù)  更多評論   

# re: [轉(zhuǎn)]關(guān)于Direct3D多窗口編程的一篇翻譯 2009-08-11 00:01 Leaf

@kuafoo
額,我不曉得怎么放耶!!!  回復(fù)  更多評論   

# re: [轉(zhuǎn)]關(guān)于Direct3D多窗口編程的一篇翻譯 2009-08-12 12:05 戴爾電腦

不錯啊  回復(fù)  更多評論   

# re: [轉(zhuǎn)]關(guān)于Direct3D多窗口編程的一篇翻譯 2009-09-11 16:14 wu

<如果窗口的視圖區(qū)大小和SwapChain的大小不一,那么DirectX將通過Stretch Blit來自動處理圖像的伸縮變化。盡管這可能并不令人期待,因?yàn)檫@在視圖區(qū)變大的時候?qū)?dǎo)致圖像的模糊。> 你說的這個問題 要怎么才能解決?
  回復(fù)  更多評論   

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲视频在线观看| 日韩亚洲欧美精品| 欧美一级在线播放| 亚洲免费在线视频一区 二区| 国产精品麻豆欧美日韩ww| 亚洲男女毛片无遮挡| 午夜精品亚洲| 在线观看91精品国产入口| 欧美电影在线播放| 欧美视频三区在线播放| 欧美亚洲一级片| 久久亚洲一区二区| 亚洲天堂男人| 久久www成人_看片免费不卡| 亚洲人成在线观看| 亚洲手机成人高清视频| 国产一区二区三区无遮挡| 亚洲电影自拍| 国产精品毛片大码女人| 美国十次成人| 欧美偷拍一区二区| 美国十次了思思久久精品导航| 免费看亚洲片| 久久九九国产精品| 欧美日韩国产bt| 久久男女视频| 欧美午夜欧美| 亚洲电影有码| 国产一区在线播放| 亚洲乱码视频| 在线观看成人av| 亚洲欧美国产不卡| 亚洲美女网站| 久久久国产成人精品| 午夜精品视频在线| 欧美电影免费观看高清完整版| 欧美一区二区在线| 欧美日韩不卡视频| 毛片一区二区三区| 国产精品国产三级国产专播品爱网 | 久久精品日产第一区二区| 一区二区动漫| 美女网站久久| 久久精品噜噜噜成人av农村| 欧美视频你懂的| 亚洲国产精品成人| 在线观看欧美日本| 欧美一区在线视频| 午夜影院日韩| 国产精品成人aaaaa网站| 亚洲国产视频一区| 亚洲国产成人精品女人久久久 | 亚洲二区视频| 亚洲国产电影| 久久一区视频| 农村妇女精品| 激情久久中文字幕| 欧美尤物一区| 亚洲大片在线| 久久一区免费| 欧美国产日韩亚洲一区| 伊人色综合久久天天五月婷| 欧美一区激情| 麻豆精品传媒视频| 影院欧美亚洲| 麻豆精品在线观看| 亚洲黑丝在线| 这里只有精品在线播放| 欧美日韩高清不卡| 在线午夜精品| 欧美一区二区私人影院日本| 国产欧美日韩在线| 久久精品国产91精品亚洲| 另类天堂av| 亚洲另类在线视频| 欧美日韩亚洲一区二| 亚洲性xxxx| 久久一日本道色综合久久| 亚洲第一区在线| 欧美激情精品久久久六区热门| 亚洲激情电影在线| 亚洲欧美日本精品| 国产一区二区精品久久| 久久综合久久综合九色| 亚洲高清二区| 午夜激情久久久| 黄色亚洲大片免费在线观看| 欧美第十八页| 亚洲在线一区二区三区| 欧美sm视频| 亚洲一二三区在线观看| 国际精品欧美精品| 欧美精品在线一区| 欧美一区1区三区3区公司| 欧美高清影院| 亚洲欧美日韩精品久久亚洲区| 国产一区二区三区在线免费观看| 裸体女人亚洲精品一区| 亚洲在线视频网站| 亚洲电影免费在线| 久久超碰97中文字幕| 亚洲精品在线免费| 国产日韩欧美精品一区| 欧美久久久久久| 欧美在线在线| 一本久道久久综合狠狠爱| 久久亚洲国产精品日日av夜夜| 亚洲六月丁香色婷婷综合久久| 国产精品稀缺呦系列在线| 欧美sm重口味系列视频在线观看| 亚洲主播在线观看| 亚洲第一精品影视| 久久久噜噜噜久噜久久| 99国产一区二区三精品乱码| 国产日韩精品入口| 欧美日韩一区三区| 美女诱惑一区| 久久精品视频网| 亚洲一区二区三区乱码aⅴ| 亚洲国产成人久久综合一区| 久久嫩草精品久久久精品| 亚洲制服av| 亚洲图片欧美午夜| 亚洲国产精品成人| 国内精品久久久久国产盗摄免费观看完整版 | 欧美制服丝袜| 亚洲一区二区三区乱码aⅴ| 亚洲精品视频免费观看| 亚洲承认在线| 一区二区三区**美女毛片| 国产午夜亚洲精品理论片色戒| 欧美日韩另类丝袜其他| 免费亚洲婷婷| 老色鬼精品视频在线观看播放| 欧美中文字幕在线观看| 亚洲欧美日韩国产中文在线| av不卡在线| 99日韩精品| 一区二区高清在线观看| 日韩视频免费在线| 一区二区三区|亚洲午夜| 日韩一区二区精品| 在线亚洲成人| 亚洲欧美自拍偷拍| 久久av一区二区| 久久精品国产亚洲5555| 久久久www成人免费无遮挡大片 | 在线视频欧美日韩精品| 日韩视频免费大全中文字幕| 亚洲精品一区二区三区不| 亚洲免费观看高清在线观看 | 欧美国产视频一区二区| 欧美18av| 亚洲国产视频一区| 日韩网站在线看片你懂的| 中文av一区特黄| 午夜精品在线看| 久久久精品网| 欧美激情一区二区三区不卡| 欧美日本不卡| 国产麻豆成人精品| 在线看视频不卡| 99香蕉国产精品偷在线观看| 亚洲女ⅴideoshd黑人| 欧美在线日韩精品| 欧美激情一区在线| 一区二区国产精品| 久久久久国产精品一区三寸| 欧美激情亚洲| 国产日韩欧美精品综合| 亚洲日本va午夜在线电影| 亚洲午夜激情网页| 久久网站免费| 99国产精品国产精品久久| 欧美一区二区国产| 欧美精品激情blacked18| 国产欧美精品久久| 亚洲日本一区二区| 久久精品视频在线免费观看| 亚洲日本欧美天堂| 欧美一区二区三区四区夜夜大片| 欧美激情小视频| 国内精品久久久久久久影视蜜臀 | 亚洲精品一区在线观看香蕉| 久久超碰97人人做人人爱| 91久久久国产精品| 性欧美暴力猛交69hd| 欧美日韩免费观看一区 | 欧美精品性视频| 一区二区三区在线免费观看| 亚洲综合国产激情另类一区| 欧美成人久久| 欧美一区成人| 国产精品系列在线播放| 9色国产精品| 欧美激情精品久久久久久蜜臀| 欧美一区二区视频免费观看| 欧美午夜www高清视频| 亚洲精品少妇网址| 欧美成人精品影院|