http://aras-p.info/texts/D3D9GPUHacks.html

格式 用法 资源 描述 NVIDIA GeForce AMD Radeon 英特尔
阴影映射
D3DFMT_D16 DS TEX 样本深度缓冲区直接作为阴影贴图 。 2001(GF3) 2006(HD2xxx) 2006(965)
D3DFMT_D24X8 DS TEX 2001(GF3) 2006(HD2xxx) 2006(965)
深度缓冲区作为纹理
DF16 DS TEX 读深度缓冲区作为纹理 。   2002(9500) 2008(G45)
DF24 DS TEX   2005(X1300) 2011(Gen6)
INTZ DS TEX 2006(GF8) 2008(HD4xxx) 2008(G45)
RAWZ DS TEX 只有GF6&7    
抗锯齿相关
RESZ RT 冲浪 将MSAA的深度模板表面解析为非MSAA的深度纹理。   2008(HD4xxx) 2008(G45)
ATOC 0 冲浪 透明度抗锯齿 。 2005(GF7)   2011(Gen6)
SSAA 0 冲浪 2005(GF7)    
所有AMD DX9 +硬件   2002(9500)  
N / A     覆盖采样抗锯齿[5] 2006(GF8)    
纹理
ATI1 0 TEX ATI1n&ATI2n纹理压缩格式。 2006(GF8) 2005(X1300) 2008(G45)
ATI2 0 TEX 2004(GF6) 2002(9500) 2008(G45)
DF24 DS TEX 取4:当采样1通道纹理时,返回四个触摸的纹素值[1] 。 检查DF24支持。   2005(X1300) 2011(Gen6)
杂项
空值 RT 冲浪 虚拟渲染不消耗视频内存的目标曲面。 2004(GF6) 2008(HD4xxx) 2010(Gen5)
NVDB 0 冲浪 深度测试 2004(GF6)    
R2VB 0 冲浪 渲染到顶点缓冲区 。 只有GF6&7 2002(9500)  
INST 0 冲浪 在前SM3.0硬件上的几何实例 。   2002(9500)

被墙了 只能看翻译了

INTZ的depth可以拿来做srv

if(CheckResourceFormatSupport(m_D3D, devCaps, displayMode, intZFormat,
D3DRTYPE_TEXTURE, D3DUSAGE_DEPTHSTENCIL) == D3D_OK)这种可以check这些format

DXHardwareCapabilities

INTZ DX format的更多相关文章

  1. ANN神经网络——Sigmoid 激活函数编程练习 (Python实现)

    # ---------- # # There are two functions to finish: # First, in activate(), write the sigmoid activa ...

  2. 用tensorflow求偏导

    # coding:utf-8 from __future__ import absolute_import from __future__ import unicode_literals from _ ...

  3. Dx 1 error; aborting Conversion to Dalvik format failed with error 1

    Dx 1 error; aborting Conversion to Dalvik format failed with error 1 问题实质是工程中android.jar包大于一个: 保留一个a ...

  4. OpenCascade BRep Format Description

    OpenCascade BRep Format Description eryar@163.com 摘要Abstract:本文结合OpenCascade的BRep格式描述文档和源程序,对BRep格式进 ...

  5. Dx unsupported class file version 52.0

    最近用ADT时遇到这个bug,折腾了好几天. 报错信息: Dx unsupported class file version 52.0 Conversion to Dalvik format fail ...

  6. VMWare File Format Learning && Use VHD File To Boot VMWare && CoreOS Docker Configuration And Running

    目录 . Virtual Machine Introduce . Vmware Image File Format . VHD File Format . Convert VHD File Into ...

  7. dx wpf的各种坑

    这篇随笔总结dx wpf使用中的各种坑,持续更新~ LookUpEdit里内嵌的DXGrid的名字必须是"PART_GridControl",不能不写.也不能写错.我对比了2个小时 ...

  8. faster rcnn test demo ---repaired for video input and save the image, label, score et al. into .mat format

    faster rcnn test demo ---repaired for video input and save the image, label, score et al. into .mat ...

  9. DX 绘制位图

    简单地学习了四个API: HRESULT CreateOffscreenPlainSurface( [in] UINT Width, // 宽度 [in] UINT Height, // 高度 [in ...

随机推荐

  1. 【bzoj2324】[ZJOI2011]营救皮卡丘 最短路-Floyd+有上下界费用流

    原文地址:http://www.cnblogs.com/GXZlegend/p/6832504.html 题目描述 皮卡丘被火箭队用邪恶的计谋抢走了!这三个坏家伙还给小智留下了赤果果的挑衅!为了皮卡丘 ...

  2. hdu 2993 斜率dp

    思路:直接通过斜率优化进行求解. #include<iostream> #include<cstdio> #include<algorithm> #include& ...

  3. 染色 color

    染色 color 题目描述 有一块矩阵平板,分成n*m个格子,一开始全是白色.在这上面进行k次染色,每次染色按照如下步骤:1. 随机选择一个格子,称为A.2. 随机选择一个格子,称为B.3. 将由A ...

  4. php 字符串重要函数

    1.chop() 从字符串右端移除字符 chop(string,charlist) $str="hello world~"; echo chop($str,"ld~&qu ...

  5. linux和shell关系

    坚持知识分享,该文章由Alopex编著, 转载请注明源地址: http://www.cnblogs.com/alopex/   索引: 什么是shell shell的分类 shell脚本的执行方式   ...

  6. Java中Collections的frequency方法

    注:调用此方法时需要根据自己的须由复写Objects的equals方法 创建复写了equals方法的对象类 public class Student { private String name; pr ...

  7. ACdream 1210 Chinese Girls' Amusement(高精度)

     Chinese Girls' Amusement Time Limit:1000MS     Memory Limit:64000KB     64bit IO Format:%lld & ...

  8. Python 求最大公因式~辗转相除法

    从错误中学python(4)——最小公约数与辗转相除法 网上看到一篇很简洁辗转相除法的写法:不用判断a,b的大小 def gcp(a, b): while(b%a!=0): a,b=b%a,a ret ...

  9. Mac下Lua环境搭建

    lua源文件下载安装 到官网安装了lua包,我安装的是 lua-5.3.1 解压之后,命令行cd进入到src目录下,输入make macosx 完成后cd ..到上一层目录, 输入sudo make ...

  10. Fastjson.tojsonString中$ref对象重复引用问题

    import java.util.ArrayList; import java.util.List; import com.alibaba.fastjson.JSON; import com.alib ...