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

天行健 君子當自強而不息

紋理映射基礎(5)

多級漸進紋理過濾

多級漸進紋理由一組分辨率逐漸降低的紋理序列組成,每一級紋理寬度和高度都是上一級紋理寬度和高度的一半。寬和高不一定相等,也就是說,這些紋理不一定都是正方形。

Direct3D在紋理映射時,自動選擇一幅與物體大小最接近的紋理進行渲染。當物體離投影平面較遠時,Direct3D會選擇一張尺寸較小、分辨率較低的紋理進行渲染;當物體離投影平面較近時,Direct3D會選擇一張尺寸較大、分辨率較高的紋理進行渲染。Direct3D將紋理序列看成一條多級漸進紋理鏈。鏈頭處紋理的分辨率最高,下一級往后依次遞減,鏈尾處紋理的分辨率最低。

Direct3D能估計出多級漸進紋理鏈中哪幅紋理的分辨率最接近想要的輸出結果,然后它將像素映射到紋理空間。當最終顯示的圖形大小介于任意兩級紋理圖形之間時,Direct3D將兩級紋理的相應元素進行混合后顯示。

多級漸進紋理過濾能夠有效地提高圖形渲染速度,當物體離投影平面較遠時,Direct3D會選擇一張尺寸較小的紋理進行渲染,而無需經過復雜的諸如各項異性紋理過濾,并且由于這時紋理需要的顯存比不使用多級漸進紋理時小,因此能有效地減少紋理載入顯存的時間。

 

生成多級漸進紋理

可以通過調用Direct3D擴展實用庫函數D3DXCreateTextureFromFileEx()自動生成多級漸進紋理序列,該函數的聲明如下:

Creates a texture from a file. This is a more advanced function than D3DXCreateTextureFromFile.

HRESULT D3DXCreateTextureFromFileEx(
LPDIRECT3DDEVICE9 pDevice,
LPCTSTR pSrcFile,
UINT Width,
UINT Height,
UINT MipLevels,
DWORD Usage,
D3DFORMAT Format,
D3DPOOL Pool,
DWORD Filter,
DWORD MipFilter,
D3DCOLOR ColorKey,
D3DXIMAGE_INFO * pSrcInfo,
PALETTEENTRY * pPalette,
LPDIRECT3DTEXTURE9 * ppTexture
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device to be associated with the texture.
pSrcFile
[in] Pointer to a string that specifies the filename. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.
Width
[in] Width in pixels. If this value is zero or D3DX_DEFAULT, the dimensions are taken from the file and rounded up to a power of two. If the device supports non-power of 2 textures and D3DX_DEFAULT_NONPOW2 is specified, the size will not be rounded.
Height
[in] Height, in pixels. If this value is zero or D3DX_DEFAULT, the dimensions are taken from the file and rounded up to a power of two. If the device supports non-power of 2 textures and D3DX_DEFAULT_NONPOW2 is sepcified, the size will not be rounded.
MipLevels
[in] Number of mip levels requested. If this value is zero or D3DX_DEFAULT, a complete mipmap chain is created. If D3DX_FROM_FILE, the size will be taken exactly as it is in the file, and the call will fail if this violates device capabilities.
Usage
[in] 0, D3DUSAGE_RENDERTARGET, or D3DUSAGE_DYNAMIC. Setting this flag to D3DUSAGE_RENDERTARGET indicates that the surface is to be used as a render target. The resource can then be passed to the pNewRenderTarget parameter of the IDirect3DDevice9::SetRenderTarget method. If either D3DUSAGE_RENDERTARGET or D3DUSAGE_DYNAMIC is specified, Pool must be set to D3DPOOL_DEFAULT, and the application should check that the device supports this operation by calling IDirect3D9::CheckDeviceFormat. D3DUSAGE_DYNAMIC indicates that the surface should be handled dynamically. See Using Dynamic Textures.
Format
[in] Member of the D3DFORMAT enumerated type, describing the requested pixel format for the texture. The returned texture might have a different format from that specified by Format. Applications should check the format of the returned texture. If D3DFMT_UNKNOWN, the format is taken from the file. If D3DFMT_FROM_FILE, the format is taken exactly as it is in the file, and the call will fail if this violates device capabilities.
Pool
[in] Member of the D3DPOOL enumerated type, describing the memory class into which the texture should be placed.
Filter
[in] A combination of one or more D3DX_FILTER constants controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying D3DX_FILTER_TRIANGLE | D3DX_FILTER_DITHER.
MipFilter
[in] A combination of one or more D3DX_FILTER constants controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying D3DX_FILTER_BOX. In addition, use bits 27-31 to specify the number of mip levels to be skipped (from the top of the mipmap chain) when a .dds texture is loaded into memory; this allows you to skip up to 32 levels.
ColorKey
[in] D3DCOLOR value to replace with transparent black, or 0 to disable the color key. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.
pSrcInfo
[in, out] Pointer to a D3DXIMAGE_INFO structure to be filled in with a description of the data in the source image file, or NULL.
pPalette
[out] Pointer to a PALETTEENTRY structure, representing a 256-color palette to fill in, or NULL.
ppTexture
[out] Address of a pointer to an IDirect3DTexture9 interface, representing the created texture object.

Return Values

If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be one of the following: D3DERR_INVALIDCALL.

D3DERR_NOTAVAILABLED3DERR_OUTOFVIDEOMEMORYD3DXERR_INVALIDDATAE_OUTOFMEMORY

Remarks

The compiler setting also determines the function version. If Unicode is defined, the function call resolves to D3DXCreateTextureFromFileExW. Otherwise, the function call resolves to D3DXCreateTextureFromFileExA because ANSI strings are being used.

Use D3DXCheckTextureRequirements to determine if your device can support the texture given the current state.

This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See D3DXIMAGE_FILEFORMAT.

Mipmapped textures automatically have each level filled with the loaded texture. When loading images into mipmapped textures, some devices are unable to go to a 1x1 image and this function will fail. If this happens, then the images need to be loaded manually.

For the best performance when using D3DXCreateTextureFromFileEx:

  1. Doing image scaling and format conversion at load time can be slow. Store images in the format and resolution they will be used. If the target hardware requires power of 2 dimensions, then create and store images using power of 2 dimensions.
  2. For mipmap image creation at load time, filter using D3DX_FILTER_BOX. A box filter is much faster than other filter types such as D3DX_FILTER_TRIANGLE.
  3. Consider using DDS files. Since DDS files can be used to represent any Direct3D 9 texture format, they are very easy for D3DX to read. Also, they can store mipmaps, so any mipmap-generation algorithms can be used to author the images.

When skipping mipmap levels while loading a .dds file, use the D3DX_SKIP_DDS_MIP_LEVELS macro to generate the MipFilter value. This macro takes the number of levels to skip and the filter type and returns the filter value, which would then be passed into the MipFilter parameter.

參數Format是D3DFORMAT枚舉類型,指定紋理圖形的格式,還可以將它設置為D3DFMT_DXT1 ~ D3DFMT_DXT5的值之一,表示生成DXT壓縮紋理以節省空間。


Texture Constants

#define Description
D3DFMT_FROM_FILE Take the format exactly from a file.
D3DX_DEFAULT A default value.
D3DX_DEFAULT_NONPOW2 Do not round up numbers such as width or height to a power of two.
D3DX_FROM_FILE Take the texture dimensions exactly from a file.

These #defines are declared in d3dx9.h.


D3DXIMAGE_INFO

Returns a description of the original contents of an image file.

typedef struct D3DXIMAGE_INFO {
UINT Width;
UINT Height;
UINT Depth;
UINT MipLevels;
D3DFORMAT Format;
D3DRESOURCETYPE ResourceType;
D3DXIMAGE_FILEFORMAT ImageFileFormat;
} D3DXIMAGE_INFO, *LPD3DXIMAGE_INFO;

Members

Width
Width of original image in pixels.
Height
Height of original image in pixels.
Depth
Depth of original image in pixels.
MipLevels
Number of mip levels in original image.
Format
A value from the D3DFORMAT enumerated type that most closely describes the data in the original image.
ResourceType
Represents the type of the texture stored in the file. It is either D3DRTYPE_TEXTURE, D3DRTYPE_VOLUMETEXTURE, or D3DRTYPE_CubeTexture.
ImageFileFormat
Represents the format of the image file.

PALETTEENTRY

Specifies the color and usage of an entry in a logical palette.

typedef struct PALETTEENTRY {
BYTE peRed;
BYTE peGreen;
BYTE peBlue;
BYTE peFlags;
} PALETTEENTRY, *LPPALETTEENTRY;

Members

peRed
The red intensity value for the palette entry.
peGreen
The green intensity value for the palette entry.
peBlue
The blue intensity value for the palette entry.
peFlags
The alpha intensity value for the palette entry. Note that as of DirectX 8, this member is treated differently than documented in the Platform SDK.

 

設置多級漸進紋理過濾方式

當最終顯示的紋理貼圖大小介于任意兩級紋理之間時,Direct3D能夠取得兩級紋理元素進行混合后顯示,具體的混合方式由指定的多級漸進紋理過濾方式決定。可以調用函數IDirect3DDevice9::SetSamplerState()設置多級漸進紋理過濾方式,將第一個參數設為紋理層序號,第二個參數設為D3DSAMP_MIPFILTER表示多級漸進紋理過濾,第三個參數設為在相鄰紋理級之間的過濾方式,可取枚舉類型D3DTEXTUREFILTERTYPE的任意值。下面的示例代碼設置相鄰紋理級之間的過濾方式為線性過濾。

g_device->SetSamplerState(0, D3DSAMP_MIPFILTER, D3DTEXF_LINEAR);

如果將第三個參數設為D3DTEXF_NONE,那么就會一直使用最高一級的紋理,即禁用多級漸進紋理過濾。如果將其設為D3DTEXF_POINT,就會只使用與圖元大小最匹配的一級紋理。如果將其設為D3DTEXF_LINEAR,Direct3D就將與圖元大小最匹配的兩級紋理以線性方式混合。

需要注意的是,多級紋理過濾是縮小和放大過濾器的結合。例如,如果將縮小和方法過濾器設為線性過濾,但是多級紋理過濾方式設為最近點采樣,Direct3D就會選擇與要顯示的紋理貼圖大小最接近的紋理級別,在該級紋理上完成雙線性紋理過濾,并將結果作為像素的值。如果將縮小、放大過濾器和多級漸進紋理都設置為線性過濾,則Direct3D就會在兩個最接近的紋理級別上都進行雙線性紋理過濾,然后再對相鄰兩級紋理圖形上對應的兩個紋理顏色進行加權平均,最后的結果作為單個像素值。這種為了圖元中的一個像素,而結合了兩幅紋理,共8個像素的技術,稱為“三線性過濾”,因為它在紋理的三個方向----u、 v和紋理級別上都進行了線性過濾。

可以通過IDirect3DDevice9::SetSamplerState()函數設置實際渲染時紋理過濾的最大級數,其中需要將第二個參數設為D3DSAMP_MAXMIPLEVEL,第三個參數設為實際渲染時紋理過濾的最大級數。下面的示例代碼設置紋理層0的最大多級紋理過濾級數為16。

g_device->SetSamplerState(0, D3DSAMP_MAXMIPLEVEL, 16);

還可以通過將IDirect3DDevice9::SetSamplerState()的第二個參數設為D3DSAMP_MIPMAPLODBIAS,設置多級紋理映射級數偏移值。如果對某個紋理映射設置正偏移值,得到的圖形結果就會比原來的更清晰,但鋸齒更多;反之設為負偏移值,得到的圖形結果就會更模糊。

 

多級漸進紋理過濾示例程序

該程序創建了一幅多級漸進紋理和一幅單級別紋理,按下數字鍵“1”則使用多級漸進紋理,按下數字鍵“2”則使用單級別紋理。按下“↓”和“↑”則縮小和放大顯示的圖形,仔細觀察圖像的變化,可以看到多級漸進紋理的效果。

使用MipMap紋理過濾

 

使用單級紋理過濾(即禁用多級紋理過濾)

 

源程序:

#include <d3dx9.h>

#pragma warning(disable : 
4127)

#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;
IDirect3DTexture9
*        g_texture;
IDirect3DTexture9
*        g_mip_texture;
float                    g_distance = -10;    // distance from camera to image
bool                    g_use_mip_texture = true;

struct sCustomVertex
{
    
float x, y, z;
    
float u, v;
};

#define D3DFVF_CUSTOM_VERTEX (D3DFVF_XYZ | D3DFVF_TEX1) 

void setup_matrices()
{
    
// build world matrix
    
    D3DXMATRIX mat_world;
    D3DXMatrixIdentity(
&mat_world);
    g_device
->SetTransform(D3DTS_WORLD, &mat_world);

    
// setup view matrix

    D3DXVECTOR3 eye(
0.0f0.0f, g_distance);
    D3DXVECTOR3 at(
0.0f0.0f0.0f);
    D3DXVECTOR3 up(
0.0f1.0f0.0f);

    D3DXMATRIX mat_view;
    D3DXMatrixLookAtLH(
&mat_view, &eye, &at, &up);
    g_device
->SetTransform(D3DTS_VIEW, &mat_view);

    
// setup projection matrix

    D3DXMATRIX mat_proj;
    D3DXMatrixPerspectiveFovLH(
&mat_proj, D3DX_PI/41.0f1.0f100.0f);
    g_device
->SetTransform(D3DTS_PROJECTION, &mat_proj);
}

bool init_graphics()
{    
    
/*
    HRESULT D3DXCreateTextureFromFileEx(
      LPDIRECT3DDEVICE9 pDevice,
      LPCTSTR pSrcFile,
      UINT Width,
      UINT Height,
      UINT MipLevels,
      DWORD Usage,
      D3DFORMAT Format,
      D3DPOOL Pool,
      DWORD Filter,
      DWORD MipFilter,
      D3DCOLOR ColorKey,
      D3DXIMAGE_INFO * pSrcInfo,
      PALETTEENTRY * pPalette,
      LPDIRECT3DTEXTURE9 * ppTexture
    );
    
*/

    
// create mipmap texture object
    if(FAILED(D3DXCreateTextureFromFileEx(g_device, "texture.jpg"0000, D3DFMT_X8R8G8B8, D3DPOOL_MANAGED,
                                          D3DX_DEFAULT, D3DX_DEFAULT, 
0xFF000000, NULL, NULL, &g_mip_texture)))
    {
        MessageBox(NULL, 
"Create mipmap texture failed!""ERROR", MB_OK);
        
return false;
    }
    
    
// create normal texture object, set MipLevels as 1, disable mipmap.
    if(FAILED(D3DXCreateTextureFromFileEx(g_device, "texture.jpg"0010, D3DFMT_X8R8G8B8, D3DPOOL_MANAGED,
                                          D3DX_DEFAULT, D3DX_DEFAULT, 
0xFF000000, NULL, NULL, &g_texture)))
    {
        MessageBox(NULL, 
"Create texture failed!""ERROR", MB_OK);
        
return false;
    }

    sCustomVertex vertices[] 
=
    {
        { 
-3,   -3,  0.0f,  0.0f1.0f},   
        { 
-3,    3,  0.0f,  0.0f0.0f},    
        {  
3,   -3,  0.0f,  1.0f1.0f},    
        {  
3,    3,  0.0f,  1.0f0.0f }

    };

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

    
void* ptr;

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

    
return true;
}

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;

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

    g_device
->SetRenderState(D3DRS_LIGHTING, FALSE);
    g_device
->SetSamplerState(0, D3DSAMP_MIPFILTER, D3DTEXF_LINEAR);
    
    
return true;
}

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

void render()
{
    setup_matrices();

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

    g_device
->BeginScene();

    g_device
->SetTexture(0, g_use_mip_texture ? g_mip_texture : g_texture);

    g_device
->SetStreamSource(0, g_vertex_buffer, 0sizeof(sCustomVertex));
    g_device
->SetFVF(D3DFVF_CUSTOM_VERTEX);
    g_device
->DrawPrimitive(D3DPT_TRIANGLESTRIP, 02);

    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_KEYDOWN:
        
switch(wParam)
        {
        
case VK_ESCAPE:
            DestroyWindow(hwnd);
            
break;

        
case 49:    // press key "1", use mipmap texture filter mode
            g_use_mip_texture = true;
            
break;

        
case 50:    // press key "2", use normal texture filter mode
            g_use_mip_texture = false;
            
break;

        
case VK_DOWN:
            g_distance 
-= 0.1f;
            
break;

        
case VK_UP:
            g_distance 
+= 0.1f;
            
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, 200100800600,
                             NULL, NULL, wc.hInstance, NULL);    

    
if(hwnd == NULL)
        
return -1;

    
if(init_d3d(hwnd))
    {
        ShowWindow(hwnd, SW_SHOWDEFAULT);
        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();
            Sleep(
10);
        }
    }

    cleanup();
    UnregisterClass(CLASS_NAME, wc.hInstance);    

    
return 0;
}

 

posted on 2008-05-07 11:53 lovedday 閱讀(2315) 評論(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>
            久久动漫亚洲| 香蕉久久久久久久av网站| 免费国产一区二区| 久久精品一本久久99精品| 精品51国产黑色丝袜高跟鞋| 开心色5月久久精品| 久久视频一区二区| 亚洲欧洲精品一区二区三区不卡| 欧美高清在线视频| 欧美日韩视频一区二区三区| 亚洲一区尤物| 欧美一区二区三区日韩| 亚洲国产精品久久精品怡红院| 亚洲成色最大综合在线| 欧美精品成人在线| 亚洲专区欧美专区| 久久黄色级2电影| 亚洲国产一区二区精品专区| 亚洲精品乱码久久久久久黑人| 欧美午夜精品久久久久久孕妇 | 国产精品久久久久久久久借妻| 欧美一区二区三区免费看| 久久免费99精品久久久久久| 夜夜嗨av一区二区三区四区 | 麻豆成人综合网| 欧美日本在线一区| 久久精品主播| 欧美精品日韩一本| 久久久xxx| 欧美精品v日韩精品v韩国精品v | 亚洲国产精彩中文乱码av在线播放| 亚洲激情在线播放| 国产亚洲欧美一区在线观看| 亚洲国产毛片完整版| 国产精品一区二区视频| 欧美国产亚洲精品久久久8v| 国产欧美一区二区三区久久人妖 | 久久夜色精品国产欧美乱极品| 久久riav二区三区| 欧美bbbxxxxx| 久久精品国产2020观看福利| 欧美激情视频在线播放| 久久综合伊人77777| 欧美日韩亚洲三区| 亚洲国产精品999| 狠狠入ady亚洲精品经典电影| 99av国产精品欲麻豆| 在线观看一区欧美| 久久精品一区二区三区四区| 欧美一区二区三区在线看| 欧美视频导航| 99ri日韩精品视频| 99精品视频免费观看| 久久深夜福利| 欧美大片免费观看| 伊人狠狠色j香婷婷综合| 午夜精品剧场| 久久精品日产第一区二区| 国产精品久久久久久影视| 一区二区免费在线观看| av成人免费在线| 欧美日本中文字幕| 亚洲人久久久| 一卡二卡3卡四卡高清精品视频| 你懂的网址国产 欧美| 欧美不卡视频一区发布| 尤物九九久久国产精品的分类| 欧美一区日本一区韩国一区| 久久久99国产精品免费| 国产欧美在线视频| 欧美一区二区在线看| 久久久久久69| 最近看过的日韩成人| 欧美大片免费观看在线观看网站推荐| 欧美成人精品1314www| 91久久国产综合久久| 欧美韩日视频| 日韩午夜电影在线观看| 午夜精品久久久99热福利| 国产精品私拍pans大尺度在线 | 亚洲国产精品传媒在线观看| 亚洲老司机av| 国产精品国产自产拍高清av王其| 一本色道久久综合精品竹菊| 亚洲欧美制服另类日韩| 国产亚洲一级高清| 欧美福利视频在线| 亚洲主播在线观看| 欧美1区免费| 亚洲婷婷在线| 国产一区二区日韩精品欧美精品| 久久久久网址| av不卡在线| 久久久久久9999| 亚洲毛片在线看| 国产精品素人视频| 麻豆91精品| 亚洲午夜影视影院在线观看| 久久综合伊人| 亚洲影音先锋| 伊人精品久久久久7777| 欧美日韩一区二区在线 | 亚洲国产精品女人久久久| 亚洲婷婷国产精品电影人久久| 国产一区三区三区| 欧美日韩国产a| 久久久久久穴| 亚洲一区影院| 亚洲国产综合在线| 欧美日韩在线观看一区二区三区| 久久精品成人欧美大片古装| 91久久精品国产91久久性色| 久久九九全国免费精品观看| 一区二区成人精品| 一区二区亚洲欧洲国产日韩| 国产精品久久久久久久久久ktv | 欧美mv日韩mv亚洲| 欧美综合国产| 亚洲免费影视第一页| 91久久午夜| 嫩草国产精品入口| 久久久成人精品| 午夜一区二区三视频在线观看| 亚洲精品你懂的| 亚洲高清中文字幕| 好吊妞**欧美| 国产视频不卡| 国产精品亚洲网站| 欧美视频福利| 欧美日韩一区在线视频| 欧美久久九九| 欧美激情亚洲自拍| 欧美激情一区二区三区在线| 毛片精品免费在线观看| 久久久久久网站| 久久久久久香蕉网| 久久这里只有| 老妇喷水一区二区三区| 久久久午夜视频| 久久婷婷久久一区二区三区| 久久久久国产精品一区二区| 久久精品国产一区二区三区免费看| 午夜日韩激情| 久久精品三级| 久久综合图片| 欧美激情 亚洲a∨综合| 欧美日韩国产大片| 欧美调教视频| 国产欧美不卡| 好吊色欧美一区二区三区视频| 韩国成人福利片在线播放| 在线播放豆国产99亚洲| 亚洲人体影院| 亚洲特级毛片| 久久精品30| 欧美不卡视频一区| 亚洲精品久久嫩草网站秘色| 99精品热视频只有精品10| 亚洲一区二区三区精品视频| 午夜在线电影亚洲一区| 久久久久国产免费免费| 欧美高清在线视频观看不卡| 欧美日韩成人一区二区三区| 国产精品欧美日韩一区二区| 国产色产综合色产在线视频| 在线看视频不卡| 9l视频自拍蝌蚪9l视频成人| 亚洲欧美在线看| 美女免费视频一区| 日韩视频不卡| 欧美专区日韩视频| 欧美人在线观看| 国产色爱av资源综合区| 亚洲人屁股眼子交8| 亚洲欧美在线免费| 欧美国产国产综合| 亚洲男人的天堂在线| 久久色在线播放| 国产精品乱人伦一区二区| 在线观看亚洲精品| 亚洲四色影视在线观看| 免费视频一区二区三区在线观看| 日韩视频在线一区二区| 久久精品视频亚洲| 国产精品啊v在线| 黄色影院成人| 亚洲欧美日韩国产另类专区| 欧美高清在线视频| 午夜视频一区二区| 欧美日韩一区二区视频在线观看| 精品1区2区| 久久www免费人成看片高清| 亚洲国产三级网| 亚洲午夜精品久久久久久app| 久久五月激情| 亚洲欧美日本国产有色| 欧美精品xxxxbbbb| 亚洲精品男同| 欧美国产日韩视频| 久久久999|