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

天行健 君子當自強而不息

坐標系與基本圖元(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>
            欧美一区激情| 国产中文一区二区三区| 宅男精品视频| 日韩午夜免费| 中文国产一区| 欧美自拍偷拍午夜视频| 久久免费国产精品| 乱码第一页成人| 欧美激情综合五月色丁香| 亚洲成色www久久网站| 久久夜色精品一区| 久久夜色精品国产欧美乱极品| 久久综合五月| 午夜综合激情| 亚洲欧美日韩区| 久久精品国产99国产精品| 久久久久久网站| 欧美日韩国产成人在线免费 | 亚洲福利国产精品| 亚洲第一网站免费视频| 亚洲破处大片| 亚洲天堂免费观看| 欧美中文字幕久久| 亚洲国产另类精品专区| 亚洲综合日本| 欧美福利专区| 激情综合网激情| 亚洲视频免费观看| 欧美h视频在线| 亚洲伊人色欲综合网| 久久一区亚洲| 国产欧美一区二区精品秋霞影院| 欧美成人影音| 国产日韩欧美自拍| 国产精品99久久久久久久vr| 久久亚洲精品伦理| 亚洲午夜精品网| 欧美激情一区二区三区四区 | 欧美成人一区二免费视频软件| 一区二区欧美亚洲| 久久久久久9999| 亚洲欧美日韩专区| 欧美三级午夜理伦三级中文幕| 免费在线欧美黄色| 国产亚洲福利社区一区| 亚洲欧美成人一区二区在线电影| 一区二区三区.www| 你懂的国产精品永久在线| 亚洲二区免费| 久久免费视频一区| 激情一区二区| 国产一二精品视频| 亚洲欧美清纯在线制服| 亚洲黄色片网站| 久久婷婷国产麻豆91天堂| 国产一区激情| 久久在线播放| 久久久在线视频| 在线成人中文字幕| 久久亚洲综合网| 久久9热精品视频| 韩国av一区二区三区| 久久精品夜夜夜夜久久| 校园春色国产精品| 国产一区二区三区视频在线观看 | 亚洲自拍16p| 亚洲国产精品久久久久| 久久在线播放| 在线免费不卡视频| 欧美成人精品一区| 欧美电影免费观看大全| 99re6热只有精品免费观看 | 亚洲一区二区三区国产| 亚洲欧洲日本mm| 欧美日韩播放| 亚洲欧美一区在线| 欧美亚洲一区三区| 亚洲第一久久影院| 亚洲美女视频网| 国产美女诱惑一区二区| 久久久999精品| 欧美成人一区二区三区在线观看| 国产精品www994| 欧美在线视频免费| 久久精品国产综合精品| 在线观看一区| 日韩视频一区二区三区| 国产精品男gay被猛男狂揉视频| 亚洲第一页中文字幕| 91久久国产综合久久| 欧美视频第二页| 久久久国产视频91| 欧美人交a欧美精品| 欧美一区二区三区精品 | 久久久欧美一区二区| 亚洲国产影院| 一区二区欧美在线| 精品99一区二区三区| 亚洲黄色小视频| 国产午夜精品一区二区三区视频| 亚洲视频一二区| 欧美一区二区三区啪啪| 亚洲国产三级| 午夜精品亚洲| 亚洲作爱视频| 久久久亚洲影院你懂的| 亚洲一区国产精品| 免费试看一区| 久久久久久穴| 国产精品免费看久久久香蕉| 欧美激情一区在线观看| 国产一区二区三区久久 | 日韩视频在线一区二区三区| 亚洲午夜电影网| 一本色道精品久久一区二区三区 | 亚洲黄网站黄| 亚洲手机成人高清视频| 亚洲精品一级| 久久精品日产第一区二区| 午夜精品免费在线| 久久久亚洲高清| 国内伊人久久久久久网站视频| 欧美另类高清视频在线| 中日韩美女免费视频网站在线观看| 欧美成人精品在线观看| 欧美视频一区二| 亚洲国产天堂久久综合| 极品av少妇一区二区| 亚洲最快最全在线视频| 亚洲精品视频在线观看免费| 久久久www成人免费无遮挡大片| 国产综合色在线| 99综合在线| 一区二区三区你懂的| 欧美激情网友自拍| 最新中文字幕亚洲| 一本色道久久综合狠狠躁篇的优点| 亚洲人体偷拍| 亚洲精品在线观看视频| 美女图片一区二区| 亚洲电影av在线| 99这里有精品| 欧美性猛交视频| 亚洲一区欧美一区| 欧美一区在线看| 国产精品一区二区久久精品 | 国产欧美二区| 在线综合视频| 久久本道综合色狠狠五月| 国产精品国产三级国产普通话蜜臀| 亚洲综合第一| 国产精品国产一区二区| 亚洲综合三区| 蜜臀久久99精品久久久久久9| 久久久久九九视频| 久久精品亚洲一区二区| 狠狠色2019综合网| 免费h精品视频在线播放| 欧美激情乱人伦| 一区电影在线观看| 国产精品中文字幕在线观看| 性欧美大战久久久久久久免费观看 | 久久一区二区三区四区| 在线精品一区二区| 欧美精品久久99久久在免费线| 欧美亚洲一区二区在线| 国产日韩在线看| 欧美激情aaaa| 午夜激情综合网| 亚洲国产岛国毛片在线| 午夜精品国产精品大乳美女| 国内一区二区三区| 欧美性猛片xxxx免费看久爱 | 亚洲视频播放| 久久久久国内| 一区二区精品国产| 激情综合在线| 欧美精品性视频| 久久不射2019中文字幕| 亚洲精品视频二区| 蜜桃av一区二区| 亚洲免费福利视频| 你懂的视频一区二区| 日韩手机在线导航| 国产中文一区二区三区| 欧美日韩国产色站一区二区三区| 久久国产视频网| 亚洲欧洲另类| 国产亚洲第一区| 欧美日韩精品福利| 久久这里有精品15一区二区三区| 欧美亚洲一区二区在线| 亚洲人体影院| 黄色日韩网站视频| 国产精品热久久久久夜色精品三区| 日韩视频在线观看| 欧美成人a视频| 久久天天躁狠狠躁夜夜av| 亚洲在线一区| 亚洲一区二区三区高清 |