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

天行健 君子當(dāng)自強(qiáng)而不息

XFile網(wǎng)格的應(yīng)用(2)


本篇是XFile網(wǎng)格的應(yīng)用(1)的續(xù)篇。

.X文件的數(shù)據(jù)裝入

在上一篇的.X文件中,主場景框架 Scene_Root提供了一個變換矩陣和一個子框架Quad。這個Quad具有一個Mesh網(wǎng)格(包括頂點(diǎn),材質(zhì),紋理等數(shù)據(jù)),其中 Scene_Root框架的變換矩陣(實(shí)際為單位矩陣)說明了Quad子框架的Mesh網(wǎng)格數(shù)據(jù)應(yīng)做的變換,以正確擺放在父框架的空間中(這里指世界空間)。對于僅含有單一網(wǎng)格的.X文件來說,利用D3DXLoadMeshFromX函數(shù)可實(shí)現(xiàn)簡單網(wǎng)格數(shù)據(jù)的加載。

來看看D3DXLoadMeshFromX的具體使用說明:

Loads a mesh from a DirectX .x file.

 HRESULT D3DXLoadMeshFromX( 
LPCTSTR pFilename ,
DWORD Options ,
LPDIRECT3DDEVICE9 pD3DDevice ,
LPD3DXBUFFER * ppAdjacency ,
LPD3DXBUFFER * ppMaterials ,
LPD3DXBUFFER * ppEffectInstances ,
DWORD * pNumMaterials ,
LPD3DXMESH * ppMesh
);

Parameters

pFilename
[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.
Options
[in] Combination of one or more flags from the D3DXMESH enumeration, which specifies creation options for the mesh.
pD3DDevice
[in] Pointer to an IDirect3DDevice9 interface, the device object associated with the mesh.
ppAdjacency
[out] Pointer to a buffer that contains adjacency data. The adjacency data contains an array of three DWORDs per face that specify the three neighbors for each face in the mesh. For more information about accessing the buffer, see ID3DXBuffer.
ppMaterials
[out] Pointer to a buffer containing materials data. The buffer contains an array of D3DXMATERIAL structures, containing information from the DirectX file. For more information about accessing the buffer, see ID3DXBuffer .
ppEffectInstances
[out] Pointer to a buffer containing an array of effect instances, one per attribute group in the returned mesh. An effect instance is a particular instance of state information used to initialize an effect. See D3DXEFFECTINSTANCE. For more information about accessing the buffer, see ID3DXBuffer .
pNumMaterials
[out] Pointer to the number of D3DXMATERIAL structures in the ppMaterials array, when the method returns.
ppMesh
[out] Address of a pointer to an ID3DXMesh interface, representing the loaded mesh.

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 values: D3DERR_INVALIDCALL, E_OUTOFMEMORY.

Remarks

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

All the meshes in the file will be collapsed into one output mesh. If the file contains a frame hierarchy, all the transformations will be applied to the mesh.

For mesh files that do not contain effect instance information, default effect instances will be generated from the material information in the .x file. A default effect instance will have default values that correspond to the members of the D3DMATERIAL9 structure.

The default texture name is also filled in, but is handled differently. The name will be Texture0@Name, which corresponds to an effect variable by the name of "Texture0" with an annotation called "Name." This will contain the string file name for the texture.


來看看參數(shù)Option可以指定的網(wǎng)格創(chuàng)建模式:

Flags used to specify creation options for a mesh.

typedef enum D3DXMESH
{
D3DXMESH_32BIT = 0x001,
D3DXMESH_DONOTCLIP = 0x002,
D3DXMESH_POINTS = 0x004,
D3DXMESH_RTPATCHES = 0x008,
D3DXMESH_NPATCHES = 0x4000,
D3DXMESH_VB_SYSTEMMEM = 0x010,
D3DXMESH_VB_MANAGED = 0x020,
D3DXMESH_VB_WRITEONLY = 0x040,
D3DXMESH_VB_DYNAMIC = 0x080,
D3DXMESH_VB_SOFTWAREPROCESSING = 0x8000,
D3DXMESH_IB_SYSTEMMEM = 0x100,
D3DXMESH_IB_MANAGED = 0x200,
D3DXMESH_IB_WRITEONLY = 0x400,
D3DXMESH_IB_DYNAMIC = 0x800,
D3DXMESH_IB_SOFTWAREPROCESSING = 0x10000,
D3DXMESH_VB_SHARE = 0x1000,
D3DXMESH_USEHWONLY = 0x2000,
D3DXMESH_SYSTEMMEM = 0x110,
D3DXMESH_MANAGED = 0x220,
D3DXMESH_WRITEONLY = 0x440,
D3DXMESH_DYNAMIC = 0x880,
D3DXMESH_SOFTWAREPROCESSING = 0x18000,
} D3DXMESH, *LPD3DXMESH;

Constants

D3DXMESH_32BIT
The mesh has 32-bit indices instead of 16-bit indices. See Remarks.
D3DXMESH_DONOTCLIP
Use the D3DUSAGE_DONOTCLIP usage flag for vertex and index buffers.
D3DXMESH_POINTS
Use the D3DUSAGE_POINTS usage flag for vertex and index buffers.
D3DXMESH_RTPATCHES
Use the D3DUSAGE_RTPATCHES usage flag for vertex and index buffers.
D3DXMESH_NPATCHES
Specifying this flag causes the vertex and index buffer of the mesh to be created with D3DUSAGE_NPATCHES flag. This is required if the mesh object is to be rendered using N-patch enhancement using Direct3D.
D3DXMESH_VB_SYSTEMMEM
Use the D3DPOOL_SYSTEMMEM usage flag for vertex buffers.
D3DXMESH_VB_MANAGED
Use the D3DPOOL_MANAGED usage flag for vertex buffers.
D3DXMESH_VB_WRITEONLY
Use the D3DUSAGE_WRITEONLY usage flag for vertex buffers.
D3DXMESH_VB_DYNAMIC
Use the D3DUSAGE_DYNAMIC usage flag for vertex buffers.
D3DXMESH_VB_SOFTWAREPROCESSING
Use the D3DUSAGE_SOFTWAREPROCESSING usage flag for vertex buffers.
D3DXMESH_IB_SYSTEMMEM
Use the D3DPOOL_SYSTEMMEM usage flag for index buffers.
D3DXMESH_IB_MANAGED
Use the D3DPOOL_MANAGED usage flag for index buffers.
D3DXMESH_IB_WRITEONLY
Use the D3DUSAGE_WRITEONLY usage flag for index buffers.
D3DXMESH_IB_DYNAMIC
Use the D3DUSAGE_DYNAMIC usage flag for index buffers.
D3DXMESH_IB_SOFTWAREPROCESSING
Use the D3DUSAGE_SOFTWAREPROCESSING usage flag for index buffers.
D3DXMESH_VB_SHARE
Forces the cloned meshes to share vertex buffers.
D3DXMESH_USEHWONLY
Use hardware processing only. For mixed-mode device, this flag will cause the system to use hardware (if supported in hardware) or will default to software processing.
D3DXMESH_SYSTEMMEM
Equivalent to specifying both D3DXMESH_VB_SYSTEMMEM and D3DXMESH_IB_SYSTEMMEM.
D3DXMESH_MANAGED
Equivalent to specifying both D3DXMESH_VB_MANAGED and D3DXMESH_IB_MANAGED.
D3DXMESH_WRITEONLY
Equivalent to specifying both D3DXMESH_VB_WRITEONLY and D3DXMESH_IB_WRITEONLY.
D3DXMESH_DYNAMIC
Equivalent to specifying both D3DXMESH_VB_DYNAMIC and D3DXMESH_IB_DYNAMIC.
D3DXMESH_SOFTWAREPROCESSING
Equivalent to specifying both D3DXMESH_VB_SOFTWAREPROCESSING and D3DXMESH_IB_SOFTWAREPROCESSING.

Remarks

A 32-bit mesh (D3DXMESH_32BIT) can theoretically support (2^32)-1 faces and vertices. However, allocating memory for a mesh that large on a 32-bit operating system is not practical.


參數(shù)ppAdjacency, ppMaterials, ppEffectInstances的類型都是LPD3DXBUFFER,它實(shí)際上是指向ID3DXBUFFER的指針:

The ID3DXBuffer interface is used as a data buffer, storing vertex, adjacency, and material information during mesh optimization and loading operations. The buffer object is used to return arbitrary length data. Also, buffer objects are used to return object code and error messages in methods that assemble vertex and pixel shaders.

ID3DXBuffer Members

Method Description
ID3DXBuffer::GetBufferPointer Retrieves a pointer to the data in the buffer.
ID3DXBuffer::GetBufferSize Retrieves the total size of the data in the buffer.

Remarks

The ID3DXBuffer interface is obtained by calling the D3DXCreateBuffer function.

The LPD3DXBUFFER type is defined as a pointer to the ID3DXBuffer interface.

typedef interface ID3DXBuffer ID3DXBuffer;
typedef interface ID3DXBuffer *LPD3DXBUFFER;

來看看ID3DXBuffer提供的兩個方法,先來看看GetBufferPointer的具體使用信息:
 
Retrieves a pointer to the data in the buffer.

LPVOID GetBufferPointer();

Parameters
None.

Return Values
Returns a pointer to the data in the buffer.

 

再來看看GetBufferSize的具體使用信息:

Retrieves the total size of the data in the buffer.

DWORD GetBufferSize();

Parameters
None.

Return Values
Returns the total size of the data in the buffer, in bytes.


ID3DXBuffer可利用DirectX API函數(shù)D3DXCreateBuffer來創(chuàng)建,不過,一般不需要直接創(chuàng)建,下面是該函數(shù)的具體使用信息:

Creates a buffer object.

HRESULT D3DXCreateBuffer(
  DWORD NumBytes,
  LPD3DXBUFFER * ppBuffer
);

Parameters

NumBytes
[in] Size of the buffer to create, in bytes.

ppBuffer
[out] Address of a pointer to an ID3DXBuffer interface, representing the created buffer 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: E_OUTOFMEMORY.


利用pNumMaterials指針參數(shù)可獲得網(wǎng)格mesh所使用的材質(zhì)的數(shù)量,ppMesh參數(shù)則是返回的一個ID3DXMESH 接口的指針地址,利用ID3DXMESH 接口提供的方法,可對裝入的網(wǎng)格數(shù)據(jù)進(jìn)行讀取,優(yōu)化和渲染等。

由于利用D3DXLoadMeshFromX函數(shù)裝入的材質(zhì)和紋理貼圖文件名被封裝在一個擴(kuò)展的D3DXMATERIAL結(jié)構(gòu)體內(nèi),因此通常需要將材質(zhì)取出,放入材質(zhì)數(shù)組中,將紋理貼圖文件名取出,創(chuàng)建相應(yīng)的紋理對象,再將這些紋理對象放入紋理對象數(shù)組中,以方便后續(xù)的紋理網(wǎng)格渲染。

來看看D3DXMATERIAL的具體信息:
 
Returns material information saved in Direct3D (.x) files.

typedef struct D3DXMATERIAL {
    D3DMATERIAL9 MatD3D;
    LPSTR pTextureFilename;
} D3DXMATERIAL, *LPD3DXMATERIAL;

Members

MatD3D
D3DMATERIAL9 structure that describes the material properties.

pTextureFilename
Pointer to a string that specifies the file name of the texture.

Remarks

The D3DXLoadMeshFromX and D3DXLoadMeshFromXof functions return an array of D3DXMATERIAL structures that specify the material color and name of the texture for each material in the mesh. The application is then required to load the texture.

The LPD3DXMATERIAL type is defined as a pointer to the D3DXMATERIAL structure.

typedef struct D3DXMATERIAL* LPD3DXMATERIAL;

 

其中用到了結(jié)構(gòu)體D3DMATERIAL9,它的具體定義是:
 
Specifies material properties.

typedef struct D3DMATERIAL9 {
    D3DCOLORVALUE Diffuse;
    D3DCOLORVALUE Ambient;
    D3DCOLORVALUE Specular;
    D3DCOLORVALUE Emissive;
    float Power;
} D3DMATERIAL9, *LPD3DMATERIAL9;

Members

Diffuse
Value specifying the diffuse color of the material. See D3DCOLORVALUE.

Ambient
Value specifying the ambient color of the material. See D3DCOLORVALUE.

Specular
Value specifying the specular color of the material. See D3DCOLORVALUE.

Emissive
Value specifying the emissive color of the material. See D3DCOLORVALUE.

Power
Floating-point value specifying the sharpness of specular highlights. The higher the value, the sharper the highlight.

Remarks

To turn off specular highlights, set D3DRS_SPECULARENABLE to FALSE, using D3DRENDERSTATETYPE. This is the fastest option because no specular highlights will be calculated.

For more information about using the lighting engine to calculate specular lighting, see Specular Lighting (Direct3D 9).
 

下面的代碼演示了怎樣加載.X文件,以及加載后怎樣獲得相應(yīng)的數(shù)據(jù)。
 IDirect3D9*         _d3d;
 IDirect3DDevice9*   _d3d_device;
 ID3DXBuffer*        _adjacency_buffer;
 ID3DXBuffer*        _material_buffer;
 D3DMATERIAL9*       _material_array;
 IDirect3DTexture9** _texture_array;
 DWORD               _num_materials;
 ID3DXMesh*          _mesh;
//------------------------------------------------------------------------------------
// Load .X file
//------------------------------------------------------------------------------------
bool BASIC_XFILE::Load_XFile(char* x_filename)
{
    // Loads a mesh from a DirectX .x file
    if(FAILED(D3DXLoadMeshFromX(
        x_filename,             // Pointer to a string that specifies the filename
        D3DXMESH_MANAGED,       // specifies creation options for the mesh
        _d3d_device,            // Pointer to an IDirect3DDevice9 interface
        &_adjacency_buffer,     // Pointer to a buffer that contains adjacency data
        &_material_buffer,      // Pointer to a buffer containing materials data
        NULL,                   // Pointer to a buffer containing an array of effect instances
        &_num_materials,        // Pointer to the number of D3DXMATERIAL structures 
        &_mesh)))               // Address of a pointer to an ID3DXMesh interface
    {
        MessageBox(NULL, "Load .X file failed.", "ERROR", MB_OK);
        return false;
    }
    // invalid data
    if(_material_buffer == NULL || _num_materials == 0)
        return false;
    // retrieves a pointer to the data in the buffer
    D3DXMATERIAL* material = (D3DXMATERIAL*) _material_buffer->GetBufferPointer();
    if(material != NULL)
    {
        // allocate memory for material array and texture array
        _material_array = new D3DMATERIAL9[_num_materials];
        _texture_array  = new IDirect3DTexture9*[_num_materials];    
        for(DWORD i = 0; i < _num_materials; i++)
        {
            // assign material to array
            _material_array[i] = material[i].MatD3D;
            if(material[i].pTextureFilename != NULL)
            {
                if(FAILED(D3DXCreateTextureFromFile(_d3d_device, material[i].pTextureFilename, &_texture_array[i])))
                    _texture_array[i] = NULL;
            }
        }
    }
    // Generates a mesh with reordered faces and vertices to optimize drawing performance. 
    // This method reorders the existing mesh.
    _mesh->OptimizeInplace(D3DXMESHOPT_COMPACT | D3DXMESHOPT_ATTRSORT | D3DXMESHOPT_VERTEXCACHE,
        (DWORD*) _adjacency_buffer->GetBufferPointer(), NULL, NULL, NULL);
    _material_buffer->Release();
    _adjacency_buffer->Release();
    return true;
}

Mesh數(shù)據(jù)的處理

執(zhí)行D3DXLoadMeshFromX函數(shù)完成.X文件的加載后,Mesh的各種數(shù)據(jù)將存放在頂點(diǎn)緩沖區(qū),頂點(diǎn)索引緩沖區(qū),材質(zhì)緩沖區(qū),鄰接頂點(diǎn)緩沖區(qū),特效屬性緩沖區(qū),網(wǎng)格緩沖區(qū)中。其中,材質(zhì)緩沖區(qū)(包含材質(zhì)信息和紋理貼圖文件名信息),鄰接頂點(diǎn)緩沖區(qū)以及特效屬性緩沖區(qū)的地址由 D3DXLoadMeshFromX函數(shù)成功執(zhí)行后返回,其他的緩沖區(qū)地址可利用ID3DXMesh接口函數(shù)來獲得。

.X網(wǎng)格的渲染和優(yōu)化就是使用上面緩沖區(qū)的數(shù)據(jù)來進(jìn)行的。頂點(diǎn)緩沖區(qū)給出了整個網(wǎng)格的頂點(diǎn)坐標(biāo)列表(包括頂點(diǎn)坐標(biāo)和頂點(diǎn)紋理坐標(biāo)),頂點(diǎn)索引緩沖區(qū)給出了每個三角形面的頂點(diǎn)構(gòu)成信息(三個頂點(diǎn)的索引值),從而間接給出了整個網(wǎng)格的所有三角形面的頂點(diǎn)信息說明,屬性緩沖區(qū)為每個三角形面的一個網(wǎng)格子集編號,即給出了網(wǎng)格的每個三角形面的分組號。具有同一個Subset編號的三角形,將使用相同的材質(zhì)和紋理對象進(jìn)行渲染。

Mesh網(wǎng)格的渲染,可以用一個for循環(huán)來進(jìn)行,循環(huán)的次數(shù)為總的材質(zhì)數(shù)。每一次循環(huán)都將那些具有相同Subset子集號的三角形面渲染出來,即渲染每個子集Subset。不過每次循環(huán)首先要設(shè)置渲染管道線的材質(zhì)和紋理對象,如下所示:
//------------------------------------------------------------------------------------
// Render mesh.
//------------------------------------------------------------------------------------
void BASIC_XFILE::Render()
{
    // Clear a render target and the depth buffer
    _d3d_device->Clear(0, NULL, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, D3DCOLOR_XRGB(0, 0, 0), 1.0f, 0);
    _d3d_device->BeginScene();
    // draw all face in the mesh
    for(DWORD i = 0; i < _num_materials; i++)
    {
        // Sets the material properties for the device
        _d3d_device->SetMaterial(&_material_array[i]);
        // Assigns a texture to a stage for a device
        _d3d_device->SetTexture(0, _texture_array[i]);
        // Draws a subset of a mesh
        _mesh->DrawSubset(i);
    }
    _d3d_device->EndScene();
    // Presents the contents of the next buffer in the sequence of back buffers owned by the device
    _d3d_device->Present(NULL, NULL, NULL, NULL);
}

上面的代碼中使用Clear對Z緩沖區(qū)進(jìn)行了清除,因此必須在初始化D3D設(shè)備時,開啟Z緩沖區(qū),否則該函數(shù)調(diào)用失敗并且屏幕將出現(xiàn)重影。

D3DPRESENT_PARAMETERS present_param;

present_param.EnableAutoDepthStencil = TRUE;


如果沒有加入上面的代碼,則出現(xiàn)重影,如下圖所示:



Render函數(shù)中使用DrawSubset函數(shù)來渲染每一個Mesh子集,該函數(shù)只需要指定一個子集號,就可將網(wǎng)格中具有該子集號的三角形面渲染出來,下面是該函數(shù)的具體使用信息:
 
Draws a subset of a mesh.

HRESULT DrawSubset(
  DWORD AttribId
);

Parameters

AttribId
[in] DWORD that specifies which subset of the mesh to draw. This value is used to differentiate faces in a mesh as belonging to one or more attribute groups.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.

Remarks

The subset that is specified by AttribId will be rendered by the IDirect3DDevice9::DrawIndexedPrimitive method, using the D3DPT_TRIANGLELIST primitive type, so an index buffer must be properly initialized.

An attribute table is used to identify areas of the mesh that need to be drawn with different textures, render states, materials, and so on. In addition, the application can use the attribute table to hide portions of a mesh by not drawing a given attribute identifier (AttribId) when drawing the frame.

 
閱讀下篇:XFile網(wǎng)格的應(yīng)用(3)

 

posted on 2007-05-18 20:05 lovedday 閱讀(2062) 評論(4)  編輯 收藏 引用

評論

# re: XFile網(wǎng)格的應(yīng)用(2) 2007-07-26 00:07 小禹

看了您的文章,感覺寫的很清楚明了。在此感謝。

有一個問題,我一直沒有解決。就是如何導(dǎo)入多個.X文件。一般的書或文章都是教導(dǎo)入一個文件,可是現(xiàn)實(shí)開發(fā)中肯定要導(dǎo)入多個的。怎么辦呢?謝謝了

  回復(fù)  更多評論   

# re: XFile網(wǎng)格的應(yīng)用(2) 2007-07-26 01:11 lovedday

我也不知道,DX我也是初學(xué)者,邊學(xué)邊寫的。 :)  回復(fù)  更多評論   

# re: XFile網(wǎng)格的應(yīng)用(2) 2008-04-27 12:05 無名劍

@小禹
能夠?qū)胍粋€也就能導(dǎo)入多個嘛,你多創(chuàng)建幾個對象然后一個個導(dǎo)入不就是多個了嗎?  回復(fù)  更多評論   

# re: XFile網(wǎng)格的應(yīng)用(2) 2008-06-17 00:31 help

你好 請問下如何 在父空間旋轉(zhuǎn)模型呢?  回復(fù)  更多評論   


只有注冊用戶登錄后才能發(fā)表評論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


公告

導(dǎo)航

統(tǒng)計

常用鏈接

隨筆分類(178)

3D游戲編程相關(guān)鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲欧洲一区二区三区| 一本一道久久综合狠狠老精东影业 | 亚洲黄色视屏| 午夜久久久久久| 亚洲欧洲日本一区二区三区| 久久看片网站| 狠狠色狠狠色综合| 久久久久一区二区三区| 亚洲在线观看免费视频| 欧美性开放视频| 亚洲图片欧美一区| 亚洲精品国产精品国自产在线| 久久视频这里只有精品| 黄色成人免费观看| 久热re这里精品视频在线6| 欧美亚洲在线观看| 国产一区在线视频| 久久综合狠狠| 老**午夜毛片一区二区三区| 亚洲第一毛片| 亚洲人成网站777色婷婷| 欧美精品一区二区三| av成人激情| 一区二区日韩| 国产亚洲精品bt天堂精选| 久久久久久久久岛国免费| 久久久久久九九九九| 亚洲黄色性网站| 亚洲美女视频在线观看| 欧美视频中文一区二区三区在线观看| 国产精品99久久不卡二区| 亚洲一区二区少妇| 激情视频一区二区三区| 亚洲第一色中文字幕| 欧美三级精品| 久久久久久有精品国产| 欧美成人首页| 午夜精品剧场| 狼人社综合社区| 亚洲欧美色婷婷| 久久久亚洲影院你懂的| 亚洲精品一区二区三区在线观看 | 免费久久99精品国产| 99re8这里有精品热视频免费| 一区二区高清在线观看| 国内精品久久久久久久97牛牛| 欧美成人午夜激情| 欧美日韩一级片在线观看| 久久久夜夜夜| 国产精品高潮呻吟| 欧美jizz19hd性欧美| 欧美特黄一级| 欧美高清在线观看| 国产精品视频九色porn| 欧美激情影院| 国产日韩欧美自拍| 亚洲人成欧美中文字幕| 国产主播在线一区| 亚洲视频一区二区免费在线观看| 久久精品国产2020观看福利| 久久精品麻豆| 欧美影片第一页| 在线欧美日韩精品| 最新日韩在线| 国产欧美精品一区二区三区介绍| 久久一区二区三区四区五区| 欧美精品一二三| 久久精品在线播放| 欧美日韩精品一区二区三区四区| 久久久久久有精品国产| 欧美性久久久| 日韩视频中文字幕| 亚洲乱码国产乱码精品精98午夜| 久久精品国产久精国产思思| 先锋资源久久| 国产精品福利在线观看| 日韩亚洲成人av在线| 亚洲美女精品成人在线视频| 久久久91精品国产| 久久午夜电影| 极品中文字幕一区| 亚洲精美视频| 国产精品人人爽人人做我的可爱 | 亚洲一区二区免费在线| 久久免费少妇高潮久久精品99| 亚洲精品系列| 久久尤物视频| 美女国产一区| 一区二区视频免费完整版观看| 亚洲影院色在线观看免费| 日韩亚洲国产欧美| 欧美不卡在线| 亚洲国产欧美一区二区三区丁香婷| 国产一区二区三区久久悠悠色av | 一区二区日韩免费看| 亚洲天堂av图片| 欧美四级伦理在线| 亚洲一区二区视频在线| 欧美在现视频| 一区精品在线播放| 免费不卡欧美自拍视频| 亚洲电影在线| 一区二区三区av| 国产精品美女主播| 欧美一区成人| 欧美激情一区二区三区在线视频观看| 亚洲青涩在线| 欧美网站大全在线观看| 亚洲欧美日韩在线一区| 久久综合图片| 亚洲人成艺术| 欧美日韩午夜视频在线观看| 一本一道久久综合狠狠老精东影业 | 在线观看日韩专区| 亚洲自拍另类| 久久久另类综合| 伊人久久综合| 欧美国产精品中文字幕| 亚洲欧美日韩国产一区二区三区| 一区二区欧美亚洲| 欧美午夜剧场| 欧美综合第一页| 欧美激情视频一区二区三区不卡| 日韩午夜高潮| 国产精品亚洲аv天堂网| 久久久91精品国产一区二区精品| 欧美成人国产| 亚洲欧美日韩精品久久亚洲区| 国产亚洲va综合人人澡精品| 乱中年女人伦av一区二区| 99re6这里只有精品| 久久久久久9| 一区二区三区不卡视频在线观看 | 国产日韩一区二区| 欧美福利网址| 久久精品免费观看| 99天天综合性| 欧美/亚洲一区| 欧美一级久久久| 亚洲精品自在久久| 国产欧美日韩伦理| 欧美日韩情趣电影| 久久视频在线免费观看| 亚洲欧美日韩专区| 亚洲免费高清| 欧美高清影院| 久久免费午夜影院| 亚洲在线视频一区| 最新成人av在线| 国内一区二区三区| 国产精品夜夜嗨| 欧美性猛交一区二区三区精品| 久久久精品视频成人| 亚洲视频狠狠| 99精品热视频| 亚洲日本中文字幕| 欧美国产日韩在线| 免费在线一区二区| 乱码第一页成人| 久久久噜噜噜久久中文字免| 午夜精品婷婷| 亚洲少妇中出一区| 一区二区免费看| 亚洲免费高清视频| 欧美福利小视频| 久久婷婷国产麻豆91天堂| 销魂美女一区二区三区视频在线| 日韩一区二区精品在线观看| 亚洲国产欧美久久| 亚洲国产高清一区| 欧美a级在线| 欧美高清在线播放| 欧美一区二视频在线免费观看| 亚洲理伦在线| 亚洲人成久久| 亚洲三级性片| 亚洲三级免费电影| 亚洲精品免费电影| 亚洲国产精品一区二区久| 一区二区三区自拍| 在线精品高清中文字幕| 亚洲电影视频在线| 91久久综合| 一区二区三区国产精品| 一区二区三区精品在线| 亚洲一二三四区| 亚洲欧美亚洲| 久久精品视频在线播放| 另类综合日韩欧美亚洲| 欧美二区乱c少妇| 亚洲三级观看| 亚洲视频一区在线| 羞羞视频在线观看欧美| 久久久久久噜噜噜久久久精品| 国产精品美女www爽爽爽| 欧美另类一区| 国产精品女主播| 国产婷婷精品| 精品福利免费观看| 亚洲最新视频在线|