zoukankan      html  css  js  c++  java
  • (转)dds纹理

    要渲染看起来真实的场景,最好是使用高分辨率而且颜色丰富的纹理,但这样的纹理可能会耗费大量的内存,例如,一张每像素16位颜色的256 x 256纹理将使用128KB的内存。如果在该纹理中使用多级渐进纹理,还需要额外的43KB内存。一个使用50张这种纹理的场景将需要8MB的内存,如果需要更强的真实性,可以使用每像素32位颜色的512 x 512纹理,但那就需要8倍的内存。

    为了减少纹理消耗的系统带宽和内存空间,Direct3D支持纹理压缩和实时解压,即DXT纹理压缩。压缩后的纹理被存储在Direct3D纹理指针中,当Direct3D渲染物体时,Direct3D引擎自动对纹理进行解压。应用DXT压缩纹理不仅可以节省内存空间,而且能有效地降低纹理传输带宽,提高图形系统的整体性能。

    随着DirectX对纹理压缩格式的推广,目前大部分显卡都支持DXT压缩纹理,而且DXT压缩纹理在图形质量和运行速度之间取得了很好的平衡。

    DXT纹理压缩格式

    DXT是一种DirectDraw表面,它以压缩形式存储图形数据,该表面可以节省大量的系统带宽和内存。即使不直接使用DXT表面渲染,也可以通过DXT格式创建纹理的方法节省磁盘空间。Direct3D提供了D3DFMT_DXT1 ~ D3DFMT_DXT5共5种压缩纹理格式。其中,D3DFMT_DXT1支持15位RGB和1位alpha图形格式,D3DFMT_DXT2、D3DFMT_DXT3支持12位RGB和4位alpha,D3DFMT_DXT4、D3DFMT_DXT5则采取了线性插值方式生成alpha。

    DXT1格式的压缩比例是4 : 1(4x4块16位RGB纹理元素可压缩为64位,2个16位RGB565值和16个2位索引),这样的压缩比并不很高,但足以有效地将3D加速卡用于存储纹理的容量提高4倍,如下图所示:

    Direct3D支持5中DXT格式压缩:

    FOURCC Description Alpha premultiplied?
    DXT1 Opaque/1-bit alpha N/A
    DXT2 Explicit alpha Yes
    DXT3 Explicit alpha No
    DXT4 Interpolated alpha Yes
    DXT5 Interpolated alpha No

    使用DXT压缩纹理

    使用DXT压缩纹理前,必须先调用IDirect3D9::CheckDeviceFormat(),将表面格式设置为D3DFMT_DXT1 ~ D3DFMT_DXT5中的任意值,查询当前设备是否支持DXT压缩纹理:

    // check whether device support DXT compressed texture
    if(FAILED(pD3D->CheckDeviceFormat(pCaps->AdapterOrdinal, pCaps->DeviceType, AdapterFormat, 0, D3DRTYPE_TEXTURE,
    D3DFMT_DXT1)))
    return false;

    如果当前设备支持DXT压缩纹理,就可以直接创建DXT压缩纹理,并可以通过IDirect3DDevice9::SetTexture()函数设置DXT压缩纹理,将其映射到物体表面。如果当前设备不支持DXT压缩纹理,仍然可以DXT压缩格式存储纹理,但在使用该纹理渲染图形前,必须将DXT压缩格式的纹理转换为当前设备支持的格式。

    在使用函数IDirect3DDevice9::CreateTexture()创建纹理时,将参数Format设置为压缩纹理格式D3DFMT_DXT1 ~ D3DFMT_DXT5中的任意值,可以创建指定压缩格式的纹理,也可以通过函数D3DXCreateTextureFromFileEx()从磁盘文件中生成DXT压缩纹理:

    V_RETURN(D3DXCreateTextureFromFileExW(pd3dDevice, L"texture.jpg", 0, 0, 5, 0, D3DFMT_DXT1, D3DPOOL_MANAGED,
          D3DX_DEFAULT, D3DX_DEFAULT, 0xFF000000, NULL, NULL, &g_texture));

    可以通过DirectX SDK提供的纹理编辑工具"DirectX Texture Editor",创建压缩格式的纹理文件(后缀为DDS的纹理文件),或将其他格式的纹理文件转换为压缩格式的纹理文件。

    在创建好压缩纹理之后,就可以和前面一样设置纹理及各项纹理渲染状态,最后进行渲染。如果当前设备支持DXT压缩纹理,那么在使用DXT纹理渲染图形时,Direct3D引擎会自动进行纹理压缩,如果当前设备不支持DXT压缩纹理,这时使用DXT压缩纹理和使用普通的非压缩纹理完全相同。

    当使用大量纹理贴图渲染复杂场景时,通过使用DXT压缩纹理可以有效提高程序运行性能。

    纹理管理

    如果显卡中只有64MB的视频内存,就应该考虑将哪些纹理加载和保留在内存中。可以编写一个算法让计算机来自动考虑这些问题,那么这个算法的任务是什么呢?它需要跟踪可用的纹理内存总数,并了解哪些纹理是经常用到的,而哪些纹理是很少用到的。至少,这个纹理管理算法必须能决定哪些现有的纹理资源可以通过一张纹理图来重新加载,以及应该销毁哪些表面,然后由新的纹理资源取而代之。

    Direct3D有一个自动的纹理管理系统,当通过CreateTexture()创建一个纹理对象时,将Pool参数指定为D3DPOOL_MANAGED,就是向Direct3D请求该系统的支持。纹理管理器通过一个时间戳来跟踪纹理的使用情况,这个时间戳用于记录每个纹理对象最后被使用的时间。纹理管理器通过"最近最少使用"算法来决定哪些纹理应从视频内存中移除,若有两个纹理对象同时满足移除条件,则根据纹理属性来做进一步的判断。如果它们具有相同的优先级,则移除最近最少使用的纹理,如果它们具有相同的时间戳,则移除低优先级的纹理。

    通过为纹理表面调用IDirect3DResource9::SetPriority()函数,可以给托管的纹理赋予一个优先级,该函数声明如下:

    Assigns the resource-management priority for this resource.

    DWORD SetPriority(
    DWORD PriorityNew
    );

    Parameters

    PriorityNew
    [in] DWORD value that specifies the new resource-management priority for the resource.

    Return Values

    Returns the previous priority value for the resource.

    Remarks

    SetPriority is used for priority control of managed resources. This method returns 0 on non-managed resources.

    Priorities are used to determine when managed resources are to be removed from memory. A resource assigned a low priority is removed before a resource with a high priority. If two resources have the same priority, the resource that was used more recently is kept in memory; the other resource is removed. Managed resources have a default priority of 0.

    原图:

    DXT压缩后:

    主程序:

    #include "dxstdafx.h"
    #include 
    "resource.h"

    #pragma warning(disable : 
    4127)

    #define IDC_TOGGLE_FULLSCREEN        1
    #define IDC_TOGGLE_REF                2
    #define IDC_CHANGE_DEVICE            3

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

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

    #define D3DFVF_CUSTOM_VERTEX    (D3DFVF_XYZ | D3DFVF_TEX1)

    ID3DXFont
    *                    g_font;
    ID3DXSprite
    *                g_text_sprite;
    bool                        g_show_help;

    CDXUTDialogResourceManager    g_dlg_resource_manager;
    CD3DSettingsDlg                g_settings_dlg;
    CDXUTDialog                    g_button_dlg;

    IDirect3DVertexBuffer9
    *        g_vertex_buffer;
    IDirect3DTexture9
    *            g_texture;

    //--------------------------------------------------------------------------------------
    // Rejects any devices that aren't acceptable by returning false
    //--------------------------------------------------------------------------------------
    bool CALLBACK IsDeviceAcceptable( D3DCAPS9* pCaps, D3DFORMAT AdapterFormat, 
                                      D3DFORMAT BackBufferFormat, 
    bool bWindowed, void* pUserContext )
    {
        
    // Typically want to skip backbuffer formats that don't support alpha blending

        IDirect3D9
    * pD3D = DXUTGetD3DObject(); 

        
    if( FAILED( pD3D->CheckDeviceFormat( pCaps->AdapterOrdinal, pCaps->DeviceType, AdapterFormat, 
                        D3DUSAGE_QUERY_POSTPIXELSHADER_BLENDING, D3DRTYPE_TEXTURE, BackBufferFormat ) ) )
            
    return false;

        
    // check whether device support DXT compressed texture
        if(FAILED(pD3D->CheckDeviceFormat(pCaps->AdapterOrdinal, pCaps->DeviceType, AdapterFormat, 0, D3DRTYPE_TEXTURE, 
                                           D3DFMT_DXT1)))
            
    return false;

        
    return true;
    }


    //--------------------------------------------------------------------------------------
    // Before a device is created, modify the device settings as needed.
    //--------------------------------------------------------------------------------------
    bool CALLBACK ModifyDeviceSettings( DXUTDeviceSettings* pDeviceSettings, const D3DCAPS9* pCaps, void* pUserContext )
    {
        
    // If video card does not support hardware vertex processing, then uses sofaware vertex processing.
        if((pCaps->DevCaps & D3DDEVCAPS_HWTRANSFORMANDLIGHT) == 0)
            pDeviceSettings
    ->BehaviorFlags = D3DCREATE_SOFTWARE_VERTEXPROCESSING;

        
    static bool is_first_time = true;

        
    if(is_first_time)
        {
            is_first_time 
    = false;

            
    // if using reference device, then pop a warning message box.
            if(pDeviceSettings->DeviceType == D3DDEVTYPE_REF)
                DXUTDisplaySwitchingToREFWarning();
        }

        
    return true;
    }


    //--------------------------------------------------------------------------------------
    // Create any D3DPOOL_MANAGED resources here 
    //--------------------------------------------------------------------------------------
    HRESULT CALLBACK OnCreateDevice( IDirect3DDevice9* pd3dDevice, 
                                     
    const D3DSURFACE_DESC* pBackBufferSurfaceDesc, 
                                     
    void* pUserContext )
    {
        HRESULT    hr;

        V_RETURN(g_dlg_resource_manager.OnCreateDevice(pd3dDevice));
        V_RETURN(g_settings_dlg.OnCreateDevice(pd3dDevice));

        D3DXCreateFont(pd3dDevice, 
    180, FW_BOLD, 1, FALSE, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, DEFAULT_QUALITY,
                       DEFAULT_PITCH 
    | FF_DONTCARE, L"Arial"&g_font);

        V_RETURN(D3DXCreateTextureFromFileExW(pd3dDevice, L
    "texture.jpg"0050, D3DFMT_DXT1, D3DPOOL_MANAGED,
                                              D3DX_DEFAULT, D3DX_DEFAULT, 
    0xFF000000, NULL, NULL, &g_texture));

        
    // create vertex buffer and fill data

        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 }
        };

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

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

        
    return S_OK;
    }


    //--------------------------------------------------------------------------------------
    // Create any D3DPOOL_DEFAULT resources here 
    //--------------------------------------------------------------------------------------
    HRESULT CALLBACK OnResetDevice( IDirect3DDevice9* pd3dDevice, 
                                    
    const D3DSURFACE_DESC* pBackBufferSurfaceDesc, 
                                    
    void* pUserContext )
    {
        HRESULT hr;

        V_RETURN(g_dlg_resource_manager.OnResetDevice());
        V_RETURN(g_settings_dlg.OnResetDevice());
        V_RETURN(g_font
    ->OnResetDevice());
        V_RETURN(D3DXCreateSprite(pd3dDevice, 
    &g_text_sprite));

        
    // set dialog position and size

        g_button_dlg.SetLocation(pBackBufferSurfaceDesc
    ->Width - 1700);
        g_button_dlg.SetSize(
    170170);

        
    // setup view matrix

        D3DXMATRIX mat_view;
        D3DXVECTOR3 eye(
    0.0f0.0f-8.0f);
        D3DXVECTOR3  at(
    0.0f0.0f,  0.0f);
        D3DXVECTOR3  up(
    0.0f1.0f,  0.0f);

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

        
    // set projection matrix
        D3DXMATRIX mat_proj;
        
    float aspect = (float)pBackBufferSurfaceDesc->Width / pBackBufferSurfaceDesc->Height;
        D3DXMatrixPerspectiveFovLH(
    &mat_proj, D3DX_PI/4, aspect, 1.0f100.0f);
        pd3dDevice
    ->SetTransform(D3DTS_PROJECTION, &mat_proj);

        
    // set texture and texture stage state and sample state
        pd3dDevice->SetTexture(0, g_texture);
        pd3dDevice
    ->SetTextureStageState(0, D3DTSS_COLORARG1,    D3DTA_TEXTURE);
        pd3dDevice
    ->SetTextureStageState(0, D3DTSS_COLOROP,        D3DTOP_SELECTARG1);
        pd3dDevice
    ->SetTextureStageState(0, D3DTSS_ALPHAOP,        D3DTOP_DISABLE);    
        pd3dDevice
    ->SetSamplerState(0, D3DSAMP_MIPFILTER, D3DTEXF_LINEAR);    

        pd3dDevice
    ->SetStreamSource(0, g_vertex_buffer, 0sizeof(sCustomVertex));
        pd3dDevice
    ->SetFVF(D3DFVF_CUSTOM_VERTEX);

        
    return S_OK;
    }

    //--------------------------------------------------------------------------------------
    // Release resources created in the OnResetDevice callback here 
    //--------------------------------------------------------------------------------------
    void CALLBACK OnLostDevice( void* pUserContext )
    {
        g_dlg_resource_manager.OnLostDevice();
        g_settings_dlg.OnLostDevice();
        g_font
    ->OnLostDevice();

        release_com(g_text_sprite);
    }


    //--------------------------------------------------------------------------------------
    // Release resources created in the OnCreateDevice callback here
    //--------------------------------------------------------------------------------------
    void CALLBACK OnDestroyDevice( void* pUserContext )
    {
        g_dlg_resource_manager.OnDestroyDevice();
        g_settings_dlg.OnDestroyDevice();    

        release_com(g_font);
        release_com(g_vertex_buffer);
        release_com(g_texture);
    }

    //--------------------------------------------------------------------------------------
    // Handle updates to the scene
    //--------------------------------------------------------------------------------------
    void CALLBACK OnFrameMove( IDirect3DDevice9* pd3dDevice, double fTime, float fElapsedTime, void* pUserContext )
    {
    }

    //--------------------------------------------------------------------------------------
    // Render the helper information
    //--------------------------------------------------------------------------------------
    void RenderText()
    {
        CDXUTTextHelper text_helper(g_font, g_text_sprite, 
    20);
        
        text_helper.Begin();

        
    // show frame and device states
        text_helper.SetInsertionPos(55);
        text_helper.SetForegroundColor( D3DXCOLOR(
    1.0f0.475f0.0f1.0f) );
        text_helper.DrawTextLine( DXUTGetFrameStats(
    true) );
        text_helper.DrawTextLine( DXUTGetDeviceStats() );

        
    // show helper information
        
        
    const D3DSURFACE_DESC* surface_desc = DXUTGetBackBufferSurfaceDesc();

        
    if(g_show_help)
        {
            text_helper.SetInsertionPos(
    10, surface_desc->Height - 15 * 6);
            text_helper.SetForegroundColor( D3DXCOLOR(
    1.0f0.475f0.0f1.0f) );
            text_helper.DrawTextLine(L
    "Controls (F1 to hide):");
            
            text_helper.SetInsertionPos(
    40, surface_desc->Height - 15 * 4);
            text_helper.DrawTextLine(L
    "Quir: ESC");
        }
        
    else
        {
            text_helper.SetInsertionPos(
    10, surface_desc->Height - 15 * 4);
            text_helper.SetForegroundColor( D3DXCOLOR(
    1.0f1.0f1.0f1.0f) );
            text_helper.DrawTextLine(L
    "Press F1 for help");
        }

        text_helper.End();
    }

    //--------------------------------------------------------------------------------------
    // Render the scene 
    //--------------------------------------------------------------------------------------
    void CALLBACK OnFrameRender( IDirect3DDevice9* pd3dDevice, double fTime, float fElapsedTime, void* pUserContext )
    {
        HRESULT hr;

        
    if(g_settings_dlg.IsActive())
        {
            g_settings_dlg.OnRender(fElapsedTime);
            
    return;
        }

        
    // Clear the render target and the zbuffer 
        V( pd3dDevice->Clear(0, NULL, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, D3DCOLOR_ARGB(0000), 1.0f0) );

        
    // Render the scene
        if( SUCCEEDED( pd3dDevice->BeginScene() ) )
        {        
            pd3dDevice
    ->DrawPrimitive(D3DPT_TRIANGLESTRIP, 02);
            RenderText();
            V(g_button_dlg.OnRender(fElapsedTime));

            V( pd3dDevice
    ->EndScene() );
        }
    }


    //--------------------------------------------------------------------------------------
    // Handle messages to the application 
    //--------------------------------------------------------------------------------------
    LRESULT CALLBACK MsgProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, 
                              
    bool* pbNoFurtherProcessing, void* pUserContext )
    {
        
    *pbNoFurtherProcessing = g_dlg_resource_manager.MsgProc(hWnd, uMsg, wParam, lParam);
        
    if(*pbNoFurtherProcessing)
            
    return 0;

        
    if(g_settings_dlg.IsActive())
        {
            g_settings_dlg.MsgProc(hWnd, uMsg, wParam, lParam);
            
    return 0;
        }

        
    *pbNoFurtherProcessing = g_button_dlg.MsgProc(hWnd, uMsg, wParam, lParam);
        
    if(*pbNoFurtherProcessing)
            
    return 0;

        
    return 0;
    }


    //--------------------------------------------------------------------------------------
    // Handle keybaord event
    //--------------------------------------------------------------------------------------
    void CALLBACK OnKeyboardProc(UINT charater, bool is_key_down, bool is_alt_down, void* user_context)
    {
        
    if(is_key_down)
        {
            
    switch(charater)
            {
            
    case VK_F1:
                g_show_help 
    = !g_show_help;
                
    break;
            }
        }
    }

    //--------------------------------------------------------------------------------------
    // Handle events for controls
    //--------------------------------------------------------------------------------------
    void CALLBACK OnGUIEvent(UINT eventint control_id, CDXUTControl* control, void* user_context)
    {
        
    switch(control_id)
        {
        
    case IDC_TOGGLE_FULLSCREEN:
            DXUTToggleFullScreen();
            
    break;

        
    case IDC_TOGGLE_REF:
            DXUTToggleREF();
            
    break;

        
    case IDC_CHANGE_DEVICE:
            g_settings_dlg.SetActive(
    true);
            
    break;
        }
    }

    //--------------------------------------------------------------------------------------
    // Initialize dialogs
    //--------------------------------------------------------------------------------------
    void InitDialogs()
    {
        g_settings_dlg.Init(
    &g_dlg_resource_manager);
        g_button_dlg.Init(
    &g_dlg_resource_manager);

        g_button_dlg.SetCallback(OnGUIEvent);

        
    int x = 35, y = 10, width = 125, height = 22;

        g_button_dlg.AddButton(IDC_TOGGLE_FULLSCREEN, L
    "Toggle full screen", x, y,         width, height);
        g_button_dlg.AddButton(IDC_TOGGLE_REF,          L
    "Toggle REF (F3)",     x, y += 24, width, height);
        g_button_dlg.AddButton(IDC_CHANGE_DEVICE,      L
    "Change device (F2)", x, y += 24, width, height, VK_F2);    
    }

    //--------------------------------------------------------------------------------------
    // Initialize everything and go into a render loop
    //--------------------------------------------------------------------------------------
    INT WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
    {
        
    // Enable run-time memory check for debug builds.
    #if defined(DEBUG) | defined(_DEBUG)
        _CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF 
    | _CRTDBG_LEAK_CHECK_DF );
    #endif

        
    // Set the callback functions
        DXUTSetCallbackDeviceCreated( OnCreateDevice );
        DXUTSetCallbackDeviceReset( OnResetDevice );
        DXUTSetCallbackDeviceLost( OnLostDevice );
        DXUTSetCallbackDeviceDestroyed( OnDestroyDevice );
        DXUTSetCallbackMsgProc( MsgProc );
        DXUTSetCallbackFrameRender( OnFrameRender );
        DXUTSetCallbackFrameMove( OnFrameMove );
        DXUTSetCallbackKeyboard(OnKeyboardProc);
       
        
    // TODO: Perform any application-level initialization here
        InitDialogs();

        
    // Initialize DXUT and create the desired Win32 window and Direct3D device for the application
        DXUTInit( truetruetrue ); // Parse the command line, handle the default hotkeys, and show msgboxes
        DXUTSetCursorSettings( truetrue ); // Show the cursor and clip it when in full screen
        DXUTCreateWindow( L"TEX Compressed Texture" );
        DXUTCreateDevice( D3DADAPTER_DEFAULT, 
    true800600, IsDeviceAcceptable, ModifyDeviceSettings );

        
    // Start the render loop
        DXUTMainLoop();

        
    // TODO: Perform any application-level cleanup here

        
    return DXUTGetExitCode();
    }
  • 相关阅读:
    navBar
    strong ,weak
    Linux基础-07-系统的初始化和服务
    Linux基础-06-vi编辑器
    Linux基础-05-正文处理、tar、解压缩
    Linux基础-04-权限
    Linux基础-03-用户、群组
    Linux基础-02-目录文件管理
    Linux基础-01-Linux基础命令
    oh my zsh 安装
  • 原文地址:https://www.cnblogs.com/lancidie/p/1870019.html
Copyright © 2011-2022 走看看