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

天行健 君子當自強而不息

坐標系與基本圖元(7)

場景提交概述

場景提交即將在后臺緩沖區繪制好的場景提交到前臺緩沖區,從而在屏幕上顯示出來。提交接口函數是一組控制特定的渲染設備狀態的方法,這些設備影響顯示器的顯示。

(1)前臺緩沖區:這是一塊由顯卡轉換來的矩形存儲區,這塊矩形存儲區的內容顯示在顯示器或其他輸出設備上。

(2)后臺緩沖區:后臺緩沖區是一個表面,其內容可以提交到前臺緩沖區。

(3)交換鏈:一組后臺緩沖區集合,它們被順序地提交到前臺緩沖區。一般情況下,一個全屏交換鏈通過翻轉設備驅動接口(DDI)來提交隨后的顯示內容,窗口交換鏈通過位塊傳送DDI提交顯示內容。

前臺緩沖區不能直接在Direct3D API中使用。所以,應用程序不能對前臺緩沖區進行鎖定或渲染。DirectX 9.0應用程序中沒有主表面的概念,不能創建一個帶有主表面的對象。

 

窗口模式下的多視口(視區)

Direct3D設備對象擁有并控制自己的交換鏈,此外,應用程序可以使用函數IDirect3DDevice9::CreateAdditionalSwapChain()創建附加交換鏈,用來在同一個設備中提交多個視口。一般地說,應用程序為每個視口創建一個交換鏈,每個交換鏈對應一個特定的視口。應用程序在每個視口的后臺緩沖區內渲染圖形,然后用函數 IDirect3DDevice9::Present()將它們分別提交。注意:對于任何Direct3D設備對象,一次只能有一個交換鏈用于全屏顯示。

 

多顯示器操作

當一個設備被成功設置為全屏操作時,創建該設備的Direct3D對象被標識為擁有系統的所有顯卡。這種狀態稱為獨占模式(exclusive mode),也就是說,Direct3D對象為獨占模式。獨占模式是指,這時其他所有的Direct3D對象創建的設備都不能進行全屏操作,也不能申請資源空間。此外,當一個對象是獨占模式時,所有未在全屏模式下的設備都將被設為丟失狀態。當Direct3D對象的最后一個全屏設備被設置為窗口模式或被銷毀時,獨占模式被取消。

當一個Direct3D設備是獨占模式時,設備將被分為兩大類,第一類設備有下列屬性:

(1)它們都是由同一個創建全屏設備的Direct3D對象創建的。

(2)因為設備是全屏的,它們具有同一個焦點窗口。

(3)它們代表不同于任何全屏設備的顯卡。

對于這種類型的設備,不用關心它們能否被重新設置或創建,因為它們不處于丟失狀態。甚至,這種類型的設備都可以被設置為全屏狀態。

不屬于第一類的設備即由其他Direct3D對象創建的設備,或和當前全屏設備不具有相同的焦點窗口,或和當前全屏設備使用不同的顯卡。這一類Direct3D設備不能被重新設置,將一直處于丟失狀態,直至當前全屏設備的獨占模式取消。這樣一來,一個多顯示器應用程序可在全屏模式下擁有多個設備,但是,這些設備必須由相同的Direct3D對象創建,對應于不同的物理顯卡并且共享同一個焦點窗口。

 

操作深度緩沖區

深度緩沖區與設備相關。當應用程序設置渲染目標時,需要訪問深度緩沖區。可以使用函數IDirect3DDevice9::GetDepthStencilSurface()和IDirect3DDevice9::SetDepthStencilSurface()來操作深度緩沖區。

 

訪問前臺緩沖區

可以通過函數IDirect3DDevice9::GetFrontBufferData()訪問前臺緩沖區,這是得到一個反鋸齒場景屏幕快照的唯一方法。

 

圖形反鋸齒(antialiasing)

圖形像素在顏色緩沖區或屏幕中以一個二維坐標(x, y)表示當前位置。如果實際計算的像素值是浮點數,則將被轉換為整數坐標顯示,這種光柵化的處理方法可能使圖形出現鋸齒形外觀。圖形學中稱這種由于采樣頻率不足而造成的失真為鋸齒(alisasing),Direct3D采用圖形反鋸齒(通過多重采樣)來改善圖形的鋸齒效果,增加圖形邊緣的平滑度。

 

查詢設備是否支持多重采樣

使用IDirect3D::CheckDeviceMultiSampleType()函數檢查當前設備是否支持圖形多重采樣:

Determines if a multisampling technique is available on this device.

HRESULT CheckDeviceMultiSampleType(
UINT Adapter,
D3DDEVTYPE DeviceType,
D3DFORMAT SurfaceFormat,
BOOL Windowed,
D3DMULTISAMPLE_TYPE MultiSampleType,
DWORD* pQualityLevels
);

Parameters

Adapter
[in] Ordinal number denoting the display adapter to query. D3DADAPTER_DEFAULT is always the primary display adapter. This method returns FALSE when this value equals or exceeds the number of display adapters in the system. See Remarks.
DeviceType
[in] Member of the D3DDEVTYPE enumerated type, identifying the device type.
SurfaceFormat
[in] Member of the D3DFORMAT enumerated type that specifies the format of the surface to be multisampled. For more information, see Remarks.
Windowed
[in] bool value. Specify TRUE to inquire about windowed multisampling, and specify FALSE to inquire about full-screen multisampling.
MultiSampleType
[in] Member of the D3DMULTISAMPLE_TYPE enumerated type, identifying the multisampling technique to test.
pQualityLevels
[out] The number of quality stops available for a given multisample type. This can be NULL if it is not necessary to return the values.

Return Values

If the device can perform the specified multisampling method, this method returns D3D_OK. D3DERR_INVALIDCALL is returned if the Adapter or MultiSampleType parameters are invalid. This method returns D3DERR_NOTAVAILABLE if the queried multisampling technique is not supported by this device. D3DERR_INVALIDDEVICE is returned if DeviceType does not apply to this adapter.

Remarks

This method is intended for use with both render-target and depth-stencil surfaces because you must create both surfaces multisampled if you want to use them together.

The following code fragment shows how you could use IDirect3D9::CheckDeviceMultiSampleType to test for devices that support a specific multisampling method.

if( SUCCEEDED(pD3D->CheckDeviceMultiSampleType( pCaps->AdapterOrdinal, 
pCaps->DeviceType, BackBufferFormat,
FALSE, D3DMULTISAMPLE_3_SAMPLES, NULL ) ) &&
SUCCEEDED(pD3D->CheckDeviceMultiSampleType( pCaps->AdapterOrdinal,
pCaps->DeviceType, DepthBufferFormat,
FALSE, D3DMULTISAMPLE_3_SAMPLES, NULL ) ) )
return S_OK;

The preceding code will return S_OK if the device supports the full-screen D3DMULTISAMPLE_3_SAMPLES multisampling method with the surface format.

Defines the levels of full-scene multisampling that the device can apply.

typedef enum D3DMULTISAMPLE_TYPE
{
D3DMULTISAMPLE_NONE = 0,
D3DMULTISAMPLE_NONMASKABLE = 1,
D3DMULTISAMPLE_2_SAMPLES = 2,
D3DMULTISAMPLE_3_SAMPLES = 3,
D3DMULTISAMPLE_4_SAMPLES = 4,
D3DMULTISAMPLE_5_SAMPLES = 5,
D3DMULTISAMPLE_6_SAMPLES = 6,
D3DMULTISAMPLE_7_SAMPLES = 7,
D3DMULTISAMPLE_8_SAMPLES = 8,
D3DMULTISAMPLE_9__SAMPLES = 9,
D3DMULTISAMPLE_10_SAMPLES = 10,
D3DMULTISAMPLE_11_SAMPLES = 11,
D3DMULTISAMPLE_12_SAMPLES = 12,
D3DMULTISAMPLE_13_SAMPLES = 13,
D3DMULTISAMPLE_14_SAMPLES = 14,
D3DMULTISAMPLE_15_SAMPLES = 15,
D3DMULTISAMPLE_16_SAMPLES = 16,
D3DMULTISAMPLE_FORCE_DWORD = 0xffffffff,
} D3DMULTISAMPLE_TYPE, *LPD3DMULTISAMPLE_TYPE;

Constants

D3DMULTISAMPLE_NONE
No level of full-scene multisampling is available.
D3DMULTISAMPLE_NONMASKABLE
Enables the multisample quality value. See Remarks.
D3DMULTISAMPLE_2_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_3_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_4_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_5_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_6_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_7_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_8_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_9__SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_10_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_11_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_12_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_13_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_14_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_15_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_16_SAMPLES
Level of full-scene multisampling available.
D3DMULTISAMPLE_FORCE_DWORD
Forces this enumeration to compile to 32 bits in size. Without this value, some compilers would allow this enumeration to compile to a size other than 32 bits. This value is not used.

Remarks

In addition to enabling full-scene multisampling at IDirect3DDevice9::Reset time, there will be render states that turn various aspects on and off at fine-grained levels.

Multisampling is valid only on a swap chain that is being created or reset with the D3DSWAPEFFECT_DISCARD swap effect.

The multisample antialiasing value can be set with the parameters (or sub-parameters) in the following methods.

Method Parameters Sub-parameters
IDirect3D9::CheckDeviceMultiSampleType MultiSampleType and pQualityLevels  
IDirect3D9::CreateDevice pPresentationParameters MultiSampleType and pQualityLevels
IDirect3DDevice9::CreateAdditionalSwapChain pPresentationParameters MultiSampleType and pQualityLevels
IDirect3DDevice9::CreateDepthStencilSurface MultiSampleType and pQualityLevels  
IDirect3DDevice9::CreateRenderTarget MultiSampleType and pQualityLevels  
IDirect3DDevice9::Reset pPresentationParameters MultiSampleType and pQualityLevels

It is not good practice to switch from one multisample type to another to raise the quality of the antialiasing.

D3DMULTISAMPLE_NONE enables swap effects other than discarding, locking, and so on.

Whether the display device supports maskable multisampling (more than one sample for a multiple-sample render-target format plus antialias support) or just non-maskable multisampling (only antialias support), the driver for the device provides the number of quality levels for the D3DMULTISAMPLE_NONMASKABLE multiple-sample type. Applications that just use multisampling for antialiasing purposes only need to query for the number of non-maskable multiple-sample quality levels that the driver supports.

The quality levels supported by the device can be obtained with the pQualityLevels parameter of IDirect3D9::CheckDeviceMultiSampleType. Quality levels used by the application are set with the MultiSampleQuality parameter of IDirect3DDevice9::CreateDepthStencilSurface and IDirect3DDevice9::CreateRenderTarget.

See D3DRS_MULTISAMPLEMASK for discussion of maskable multisampling.

 

創建使用多重采樣的Direct3D設備

創建使用多重采樣的Direct3D設備,需要將函數CreateDevice()的第5個參數D3DPRESENT_PARAMETERS結構體的MultiSampleType成員設為將要設置的多重采樣類型,SwapEffect成員設為D3DSWAPEFFECT_DISCARD。

D3DPRESENT_PARAMETERS d3dpp;
ZeroMemory(&d3dpp, sizeof(d3dpp));

d3dpp.Windowed = TRUE;
d3dpp.SwapEffect = D3DSWAPEFFECT_DISCARD;
d3dpp.BackBufferFormat = D3DFMT_UNKNOWN;
d3dpp.MultiSampleType = D3DMULTISAMPLE_4_SAMPLES;

 

啟用多重采樣的全景圖形反鋸齒

調用渲染狀態設置函數IDirect3DDevice9::SetRenderState(),將第一個參數設置為D3DRS_MULTISAMPLEANTIALIAS,將第二個參數設為TRUE將激活多重采樣,設置FALSE將禁用多重采樣。

 

圖形反鋸齒示例程序

示例程序AntiAlisa演示了圖形反鋸齒效果。目前很多顯示硬件可能不支持圖形反鋸齒,所以在創建渲染設備前應進行設備檢查,如果當前顯示硬件不支持,可以創建參考設備來測試圖形反鋸齒效果。在示例程序AntiAlisa運行時通過單擊鼠標左鍵,可以切換是否啟用圖形反鋸齒操作。

啟用反鋸齒

 

禁用反鋸齒

 

完整源代碼:

#include <d3d9.h>

#define CLASS_NAME    "GameApp"

#define release_com(p)    do { if(p) { (p)->Release(); (p) = NULL; } } while(0)

IDirect3D9
*                g_d3d;
IDirect3DDevice9
*        g_device;
IDirect3DVertexBuffer9
* g_vertex_buffer;
BOOL                    g_support_anti_aliasing 
= TRUE;

struct sCustomVertex
{
    
float x, y, z, rhw;
    DWORD color;
};

#define D3DFVF_CUSTOM_VERTEX (D3DFVF_XYZRHW | D3DFVF_DIFFUSE) 

void init_vertices()
{
    sCustomVertex vertices[] 
=
    {
        {  
50.0f250.0f0.5f1.0f0xffff0000, },
        { 
150.0f,  50.0f0.5f1.0f0xff00ff00, }, 
        { 
250.0f250.0f0.5f1.0f0xff0000ff, },        
    };

    
// push vertex data into vertex buffer

    g_device
->CreateVertexBuffer(sizeof(vertices), 0, D3DFVF_CUSTOM_VERTEX, D3DPOOL_DEFAULT, &g_vertex_buffer, NULL);

    
void* ptr;

    g_vertex_buffer
->Lock(0sizeof(vertices), (void**)&ptr, 0);
    memcpy(ptr, vertices, 
sizeof(vertices));
    g_vertex_buffer
->Unlock();
}

bool init_d3d(HWND hwnd)
{
    g_d3d 
= Direct3DCreate9(D3D_SDK_VERSION);

    
if(g_d3d == NULL)
        
return false;

    D3DPRESENT_PARAMETERS d3dpp;
    ZeroMemory(
&d3dpp, sizeof(d3dpp));

    d3dpp.Windowed            
= TRUE;
    d3dpp.SwapEffect        
= D3DSWAPEFFECT_DISCARD;    
    d3dpp.BackBufferFormat    
= D3DFMT_UNKNOWN;
    d3dpp.MultiSampleType    
= D3DMULTISAMPLE_4_SAMPLES;

    
if(FAILED(g_d3d->CheckDeviceMultiSampleType(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, D3DFMT_X8R8G8B8, FALSE,
                                                D3DMULTISAMPLE_4_SAMPLES, NULL)))
    {
        MessageBox(hwnd, 
"Hardware do not support antialiasing, use ref device!""ERROR", MB_OK);

        
if(FAILED(g_d3d->CreateDevice(D3DADAPTER_DEFAULT, D3DDEVTYPE_REF, hwnd, D3DCREATE_SOFTWARE_VERTEXPROCESSING,
                                      
&d3dpp, &g_device)))
        {
            
return false;
        }
    }
    
else
    {
        
if(FAILED(g_d3d->CreateDevice(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, hwnd, D3DCREATE_SOFTWARE_VERTEXPROCESSING,
                                      
&d3dpp, &g_device)))
        {
            
return false;
        }        
    }


    init_vertices();

    
return true;
}

void cleanup()
{    
    release_com(g_vertex_buffer);
    release_com(g_device);
    release_com(g_d3d);
}

void render()
{    
    g_device
->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS,  g_support_anti_aliasing);

    g_device
->Clear(0, NULL, D3DCLEAR_TARGET, D3DCOLOR_XRGB(555), 1.0f0);    

    g_device
->BeginScene();

    g_device
->SetStreamSource(0, g_vertex_buffer, 0sizeof(sCustomVertex));
    g_device
->SetFVF(D3DFVF_CUSTOM_VERTEX);    
    g_device
->DrawPrimitive(D3DPT_TRIANGLELIST, 01);

    g_device
->EndScene();

    g_device
->Present(NULL, NULL, NULL, NULL);
}

LRESULT WINAPI WinProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    
switch(msg)
    {
    
case WM_LBUTTONDOWN:
        g_support_anti_aliasing 
= !g_support_anti_aliasing;
        
break;

    
case WM_KEYDOWN:
        
switch(wParam)
        {    
        
case VK_ESCAPE:
            DestroyWindow(hwnd);
            
break;
        }    
        
break;

    
case WM_DESTROY:        
        PostQuitMessage(
0);
        
return 0;
    }

    
return DefWindowProc(hwnd, msg, wParam, lParam);
}

int WINAPI WinMain(HINSTANCE inst, HINSTANCE, LPSTR, INT)
{
    WNDCLASSEX wc;

    wc.cbSize            
= sizeof(WNDCLASSEX);
    wc.style            
= CS_CLASSDC;
    wc.lpfnWndProc        
= WinProc;
    wc.cbClsExtra        
= 0;
    wc.cbWndExtra        
= 0;
    wc.hInstance        
= inst;
    wc.hIcon            
= NULL;
    wc.hCursor            
= NULL;
    wc.hbrBackground    
= NULL;
    wc.lpszMenuName        
= NULL;
    wc.lpszClassName    
= CLASS_NAME;
    wc.hIconSm            
= NULL;

    
if(! RegisterClassEx(&wc))
        
return -1;

    HWND hwnd 
= CreateWindow(CLASS_NAME, "Direct3D App", WS_OVERLAPPEDWINDOW, 200100300300,
                             NULL, NULL, wc.hInstance, NULL);

    
if(hwnd == NULL)
        
return -1;

    
if(init_d3d(hwnd))
    {
        ShowWindow(hwnd, SW_SHOWMAXIMIZED);
        UpdateWindow(hwnd);

        MSG msg;
        ZeroMemory(
&msg, sizeof(msg));

        
while(msg.message != WM_QUIT)
        {
            
if(PeekMessage(&msg, NULL, 00, PM_REMOVE))
            {
                TranslateMessage(
&msg);
                DispatchMessage(
&msg);
            }
                
            render();
        }
    }

    cleanup();

    UnregisterClass(CLASS_NAME, wc.hInstance);    

    
return 0;
}

 

posted on 2008-05-01 12:28 lovedday 閱讀(2413) 評論(0)  編輯 收藏 引用

公告

導航

統計

常用鏈接

隨筆分類(178)

3D游戲編程相關鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲一线二线三线久久久| 欧美尤物巨大精品爽| 欧美日韩国产大片| 欧美成人午夜免费视在线看片| 久久视频在线视频| 麻豆精品视频在线观看| 欧美激情一级片一区二区| 欧美日韩免费观看一区二区三区| 欧美午夜视频在线| 国产日本欧美一区二区三区| 亚洲大片精品永久免费| 一区电影在线观看| 久久久久久久一区二区| 欧美大片专区| 在线亚洲伦理| 久久久91精品国产一区二区三区 | 亚洲电影免费| 免费久久精品视频| 亚洲裸体在线观看| 西西人体一区二区| 欧美大片第1页| 国产欧美亚洲日本| 99riav1国产精品视频| 午夜视频在线观看一区二区三区| 蜜臀av国产精品久久久久| 99视频一区二区| 久久成人免费视频| 欧美香蕉大胸在线视频观看| 合欧美一区二区三区| 午夜精品99久久免费| 欧美极品在线观看| 黑人一区二区三区四区五区| 日韩午夜电影av| 看片网站欧美日韩| 中文亚洲欧美| 欧美成人有码| 国内揄拍国内精品久久| 亚洲一区二区黄色| 亚洲高清在线视频| 久久精品国产精品亚洲综合| 欧美久久成人| 亚洲国产精品久久久久婷婷老年| 亚洲一区精品视频| 亚洲福利视频三区| 久久久噜噜噜久久| 国产伦精品一区二区| 在线一区二区三区做爰视频网站| 美女国内精品自产拍在线播放| 亚洲一区二区综合| 欧美三级特黄| 亚洲色在线视频| 亚洲欧洲日本国产| 欧美成人精品1314www| 一区二区三区在线视频观看| 久久av一区| 亚洲一区国产精品| 国产精品系列在线播放| 亚洲一品av免费观看| 亚洲精品色婷婷福利天堂| 欧美+亚洲+精品+三区| 国外精品视频| 久久久蜜臀国产一区二区| 亚洲免费网址| 国产美女在线精品免费观看| 欧美一区二区三区在| 午夜精品福利视频| 国产日韩精品在线播放| 久久精品国产清自在天天线| 亚洲欧美网站| 国产综合色产| 免费视频久久| 欧美精品在线看| 亚洲一二三区在线观看| 欧美国产丝袜视频| 欧美人成在线视频| 亚洲欧美影音先锋| 欧美在线视频日韩| 亚洲电影激情视频网站| 亚洲电影激情视频网站| 欧美日韩免费| 欧美中日韩免费视频| 久久久亚洲成人| 亚洲精品小视频在线观看| 99国产精品久久久久久久成人热| 亚洲视频久久| 国产亚洲一区二区三区在线观看| 久久免费高清| 欧美日韩喷水| 久久综合久久美利坚合众国| 亚洲精品一区二区在线观看| 欧美色道久久88综合亚洲精品| 久久国产精品亚洲77777| 美女久久一区| 欧美一区观看| 欧美久久视频| 美女在线一区二区| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ入口 | 欧美jjzz| 国产精品久久久对白| 久久久视频精品| 欧美另类综合| 亚洲国产一区二区三区在线播| 亚洲免费av片| 狠狠色丁香久久婷婷综合_中| 最新日韩精品| 国内精品99| 亚洲手机在线| 99re国产精品| 久久久一二三| 亚洲人成在线影院| 午夜精品三级视频福利| 亚洲精品一区二区三| 欧美在线电影| 亚洲欧美国产毛片在线| 美国十次了思思久久精品导航| 性欧美18~19sex高清播放| 欧美jjzz| 欧美成人久久| 精品成人国产在线观看男人呻吟| 99国产精品久久久久久久久久| 亚洲国产91| 久久久久久久久久久久久女国产乱| 亚洲一区三区视频在线观看| 欧美va天堂va视频va在线| 久久久久综合网| 国产精品人人爽人人做我的可爱| 亚洲精品1区| 亚洲国产精品va在线看黑人动漫 | 亚洲欧美在线免费观看| 一级成人国产| 欧美精品一卡二卡| 亚洲激情视频网站| 亚洲精品一区二区三区不| 久久一本综合频道| 免费欧美视频| 亚洲黄色在线看| 欧美大片免费观看在线观看网站推荐| 久久琪琪电影院| 激情综合色丁香一区二区| 香蕉成人久久| 久久黄色级2电影| 国产精品专区一| 午夜精彩视频在线观看不卡| 性欧美暴力猛交69hd| 国产精品一二三四区| 亚洲一区二区三区四区视频| 亚洲欧美三级在线| 国产精品人成在线观看免费 | 亚洲国产精品福利| 亚洲电影观看| 每日更新成人在线视频| 免费国产一区二区| 亚洲黄色影片| 欧美日韩在线高清| 在线亚洲精品| 久久久久久久久一区二区| 一区二区三区在线看| 欧美激情综合色| 亚洲免费在线观看| 久久综合久久综合这里只有精品| 亚洲激情成人在线| 欧美日韩综合网| 欧美一级一区| 91久久精品国产91久久性色| 亚洲欧美日韩综合国产aⅴ| 国产综合久久久久影院| 欧美高清视频在线观看| 亚洲欧美不卡| 欧美成人伊人久久综合网| 一区二区高清在线观看| 国产日韩欧美一区二区三区四区| 久久综合给合久久狠狠狠97色69| 亚洲精品一区二区网址| 久久精品欧美日韩精品| 亚洲精品乱码久久久久久按摩观| 国产精品美女久久久久久久| 久久久www| 一区二区冒白浆视频| 久久综合伊人77777麻豆| av不卡在线观看| 国语精品一区| 国产精品久久999| 欧美aa在线视频| 欧美一二三区精品| 亚洲精品一区中文| 久久亚洲欧美| 欧美亚洲自偷自偷| 日韩亚洲精品在线| 伊人久久综合97精品| 国产精品美女久久久久久免费| 女生裸体视频一区二区三区| 性娇小13――14欧美| 亚洲精品久久久一区二区三区| 久久久综合精品| 欧美一级视频| 亚洲综合首页| 国产精品无码永久免费888| 欧美成人在线网站| 久久综合伊人77777| 久久久精品国产一区二区三区|