Gamebryo—Texturing

Texturing

一、 纹理基本常识

1. 简介

GB纹理系统包括:多纹理、投影纹理(Projected texture)、动态纹理、渲染纹理。

2. 纹理的基本使用

要想使用和标准材质一起使用纹理,应用程序必须做以下两件事:为数据流定义纹理坐标;挂载纹理属性(包括纹理资源、和纹理的处理方式)。

3. 纹理属性及其组成部分

纹理属性包括两大部分信息:

(1) 一个或多个Map,该Map定义每个纹理相关的设置。不同的Map代表不同类型的纹理特效。其中,Base Map(或者Diffuse Map)代表了物体的顶点自发光颜色。

(2) 纹理的挂载模式(texture-apply mode).定义了一组纹理如何影响顶点的最终颜色,一个NiTexturingProperty只能包含一个挂载模式。

NiTexturingProperty::Map包含了绘制绘制一个纹理到对象上的所有信息。该信息包括:

(1)一个指向纹理图像的指针

(2)纹理寻址模式。

(3)过滤模式。

(4)纹理坐标索引。

处理Base Map:NiTexturingProperty::GetBaseMap and SetBaseMap. NiTexturingProperty::GetBaseTexture, SetBaseTexture, GetBaseClampMode, SetBaseClampMode, GetBaseFilterMode, SetBaseFilterMode, GetBaseTextureIndex, and SetBaseTextureIndex.

4. 纹理对象

纹理对象基类:NiTexture

(1) NiSourceTexture:代表了从资源创建的纹理图,既包括标准的图像文件,或者RAM中的一块存储区域(buffer)。

(2) NiDynamicTexture :每一帧改变纹理内容的纹理。

(3) NiRenderedTexture :代表了从渲染场景创建的纹理图。该纹理图像来保存渲染场景,从而产生各种特效:倒影、阴影、内部电视机

(4)NiSourceCubeMap :使用立方体,三位的纹理坐标,而不是矩形、二维来代表纹理。

(5) NiRenderedCubeMap

5. GB纹理的特性

6. 纹理坐标的寻址

Wrapping

Clamping

7. 纹理过滤

The following are the two filtering methods within a mipmap level:

· Nearest neighbor—picks the color of the closest texture pixel (texel) and uses it.

· Bilinear interpolation—linearly interpolates between the four texels that enclose the texture coordinate.

8. 纹理的和顶点颜色的混合方式

clip_image002

9. 基本Alpha混合和Alpha测试

无论使用Alpha混合还是Alpha测试,纹理必须具有Alpha通道。

Alpha混合

同时,应用程序必须包含如下条件:

(1)向对象添加NiAlphaProperty

(2)打开Alpha混合NiAlphaProperty::SetAlphaBlending(true)

(3) 确保Base Map纹理、顶点颜色、材质颜色含有相应的Alpha值

(4)设置原和目的Alpha混合函数::SetSrcBlendMode and SetDestBlendMode.

clip_image004

Alpha测试

Alpha测试必须保证混合模式为ALPHA_SRCALPHA, ALPHA_INVSRCALPHA即标准混合模式。Alpha测试会打开帧缓冲和深度缓冲区的写。

Alpha测试允许纹理的Alpha通道和全局值进行测试,当测试失败,则该像素将不会被写入帧缓冲区和深度缓冲区,从而避免了对该对象进行排序。

Alpha测试的要求

clip_image006

二、 多纹理

1. 简介

GB的接口没有限制多纹理的数量,但是渲染器却限制了。

GB支持两种多纹理处理:

(1)静态多纹理(static):只是对几何体表面进行描述,静态多纹理一Map的方式被挂载到NiTexturingProperty上。使用纹理坐标映射到几何体上。

(2)投影多纹理(projected):描述空间现象,如倒影、光柱…。投影多纹理被多个几何体接受,通过动态顶点光照,在低级别renderer通过动态生成纹理坐标来映射到几何体上。

clip_image008

2. 多纹理的硬件支持

3. 静态多纹理

每一种静态多纹理在NiTexturingProperty中拥有一个Map,Map对象会定义静态多纹理怎么加载到几何体上。

Dark Map(暗纹理)

Decal Map(贴花纹理)

Detail Map(细节纹理)

Gloss Map(高光纹理)

Bump Map(凹凸纹理)

Normal Map(发现纹理)

Parallax Map(四叉纹理)

Shader Map(着色纹理)

4. 投影多纹理(Projected Multitextures)

投影多纹理类似与光照,事实上,NiLight和NiTextureEffect(实现投影多纹理)都继承与NiDnamicEffect。

投影多纹理的类型决定了纹理的寻址模式和采样模式。

Environment Map

Light Map

Shadow Map

Fog Map

三、 使用静态多纹理

四、 使用投影多纹理

五、 纹理图

clip_image010

1. 使用NiSourceTexture对象

该纹理数据来自于:图像文件和存储区像素数据

图像文件支持:BMP、SGI RGB、TGA以及NIF

可以通过PixelData来创建NiSourceTexture,从而可以实现修改指定像素值的目的。

2. 使用NiRenderTexture对象

在生成NiRenderTexture对象时每一帧都需进行如下操作:

(1)使用Rendering to Texture来更新纹理内容

(2)绘制包含当前场景的纹理

3. 使用NiDynamicTexutre对象

动态纹理的差生不是通过rendering而是其它方法。

4. 创建NiSourceTexture对象

(1)通过纹理图创建

一旦NiSourceTexture被创建,文件名不能被改变,因为NiSourceTexutre在整个周期内使用文件名来代表该纹理资源。图像文件最好时2的次方大小。默认情况下系统不会为该它开辟一个单独的内存区域,应为它本省就有个baking store。

(2)通过NiPersistentSrcTendererData创建

(3)通过NiPixelData来创建

创建成功后NiSourceTexture只是保存了一个NiPiexelData的引用而不是拷贝数据

(4)格式(Format Preference)

FormatePrefs代表了纹理的格式如颜色信息、Alpha通道行为(none、on/off、smooth)以及是否需要多级处理(mipmapping)

(5)预加载载NiSourceTexture

载预加载模式下,纹理资源创建后是放在各自的存储区的,而不是显存。

(6)任意大小的纹理资源:GB支持

5. 创建NiRenderTexture对象

6. 创建NiDynamicTexture对象

7. 使用NiTexture纹理化几何体

8. 动态改变NiTexure

9. 动态改变NiSourceTexture

10. 动态改变NiRenderTexture

11. 动态改变NiDynamicTexture

12. 例子:更新NiRenderTexture

13. 预加载NiSourceTexture

六、 纹理格式

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
附件为链接文件 Gamebryo.3.0 LightSpeed 详情请自行搜索,该资源 来源于互联网。 安装后目录,大小为10G左右 ├─Build │ ├─CoreRuntime │ │ └─Win32 │ │ ├─VC80 │ │ │ └─Property Sheets │ │ └─VC90 │ │ └─Property Sheets │ ├─Foundation │ │ └─Win32 │ │ ├─VC80 │ │ │ ├─efd │ │ │ ├─efdLogService │ │ │ ├─efdNetwork │ │ │ └─efdPhysX │ │ └─VC90 │ │ ├─efd │ │ ├─efdLogService │ │ ├─efdNetwork │ │ └─efdPhysX │ ├─GameFramework │ │ └─Win32 │ │ ├─VC80 │ │ │ ├─ecr │ │ │ ├─ecrInput │ │ │ ├─ecrLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─ecrPhysX │ │ │ ├─ecrPhysXLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egf │ │ │ ├─egfLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egfPhysX │ │ │ ├─egfPhysXLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egfPython │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egmAnimation │ │ │ ├─egmAnimationLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egmPhysXRagdoll │ │ │ ├─egmPhysXTerrain │ │ │ ├─egmTerrain │ │ │ ├─egmTerrainLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egmToolServices │ │ │ ├─egmVisualizers │ │ │ └─egmVisualTracker │ │ └─VC90 │ │ ├─ecr │ │ ├─ecrInput │ │ ├─ecrLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─ecrPhysX │ │ ├─ecrPhysXLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egf │ │ ├─egfLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egfPhysX │ │ ├─egfPhysXLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egfPython │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egmAnimation │ │ ├─egmAnimationLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egmPhysXRagdoll │ │ ├─egmPhysXTerrain │ │ ├─egmTerrain │ │ ├─egmTerrainLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egmToolServices │ │ ├─egmVisualizers │ │ └─egmVisualTracker │ ├─Samples │ │ └─Win32 │ │ ├─VC80 │ │ │ ├─BaseGame │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Scripts │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─CustomTypeExample1 │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─CustomTypeExample2 │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ └─HelloWorld │ │ │ └─Scripts │ │ └─VC90 │ │ ├─BaseGame │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Scripts │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─CustomTypeExample1 │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─CustomTypeExample2 │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ └─HelloWorld │ │ └─Scripts │ └─Tools │ └─Win32 │ ├─VC80 │ │ ├─AssetController │ │ ├─ChannelServer │ │ └─DDEHeaderGen │ └─VC90 │ ├─AssetController │ ├─ChannelServer │ └─DDEHeaderGen ├─Documentation │ └─HTML │ ├─Art │ │ ├─Max │ │ │ └─images │ │ ├─Maya │ │ │ └─images │ │ ├─Other │ │ │ └─images │ │ └─XSI │ │ └─images │ ├─Convert │ │ ├─Announce │ │ └─Previous │ ├─GetStart │ │ ├─All │ │ ├─Architecture │ │ │ └─images │ │ ├─PC │ │ └─Xbox │ ├─Home │ ├─Learn │ │ ├─Demos │ │ │ └─images │ │ ├─FullDemos │ │ │ └─images │ │ ├─MangledMetal │ │ │ └─images │ │ ├─ProductTour │ │ │ └─images │ │ └─Tutorials │ │ └─images │ ├─Programmer │ │ ├─AssetRuntimeService │ │ │ └─images │ │ ├─Behaviors │ │ ├─Build │ │ ├─Builtins │ │ ├─Categories │ │ ├─CoreRuntimeServices │ │ ├─Entities │ │ ├─Entity_Interaction │ │ ├─Entity_Properties │ │ ├─Foundation │ │ ├─Frame_Rendering_System │ │ ├─Game_Initialization │ │ │ └─images │ │ ├─General_Topics │ │ │ └─images │ │ ├─Logging │ │ ├─Messages │ │ ├─Models │ │ │ └─images │ │ ├─NiFloodgate │ │ │ └─images │ │ ├─NiMaterial │ │ │ └─images │ │ ├─NiMesh │ │ │ └─images │ │ ├─NiMetrics │ │ ├─NiParticle │ │ │ └─images │ │ ├─NiPhysX │ │ ├─NiProgramLauncher │ │ ├─NiSceneGraphUpdateService │ │ ├─NiShader │ │ │ └─images │ │ ├─NiTerrain │ │ │ └─images │ │ ├─Object_Systems │ │ │ └─images │ │ ├─Scheduler │ │ ├─Scripting │ │ ├─Shadowing_System │ │ ├─SystemServices │ │ ├─Texturing │ │ │ └─images │ │ └─Toolbench │ │ └─images │ ├─Reference │ │ ├─ecr │ │ │ └─images │ │ ├─ecrInput │ │ │ └─images │ │ ├─ecrPhysX │ │ │ └─images │ │ ├─efd │ │ │ └─images │ │ ├─efdLogService │ │ │ └─images │ │ ├─efdNetwork │ │ │ └─images │ │ ├─efdPhysX │ │ │ └─images │ │ ├─egf │ │ │ └─images │ │ ├─egfLua │ │ │ └─images │ │ ├─egfPhysX │ │ │ └─images │ │ ├─egfPython │ │ │ └─images │ │ ├─egmAnimation │ │ │ └─images │ │ ├─egmPhysXRagdoll │ │ │ └─images │ │ ├─egmPhysXTerrain │ │ │ └─images │ │ ├─egmTerrain │ │ │ └─images │ │ ├─egmToolServices │ │ │ └─images │ │ ├─egmVisualizers │ │ │ └─images │ │ ├─egmVisualTracker │ │ │ └─images │ │ ├─MangledMetal │ │ │ └─images │ │ ├─Namespaces │ │ ├─NiAnimation │ │ │ └─images │ │ ├─NiAnimationCompression │ │ ├─NiApplication │ │ │ └─images │ │ ├─NiAudio │ │ ├─NiBinaryShaderLib │ │ ├─NiCgShaderLib │ │ ├─NiCollision │ │ │ └─images │ │ ├─NiCommonMaterialLibrary │ │ ├─NiControllerExtractor │ │ ├─NiCursor │ │ │ └─images │ │ ├─NiD3D10BinaryShaderLib │ │ ├─NiD3D10EffectShaderLib │ │ ├─NiD3D10Renderer │ │ │ └─images │ │ ├─NiD3DXEffectShaderLib │ │ ├─NiDevImageQuantizer │ │ ├─NiDX9Renderer │ │ │ └─images │ │ ├─NiEntity │ │ ├─NiFloodgate │ │ │ └─images │ │ ├─NiFont │ │ ├─NiFXLShaderLib │ │ ├─NiHDRReader │ │ ├─NiInput │ │ │ └─images │ │ ├─NiMain │ │ │ └─images │ │ ├─NiMaterialNodeXMLLibraryReader │ │ ├─NiMesh │ │ │ └─images │ │ ├─NiMeshProfileProcessor │ │ │ └─images │ │ ├─NiMeshProfileXMLParser │ │ │ └─images │ │ ├─NiMeshTools │ │ ├─NiMetricsOutput │ │ ├─NiNBTGenerator │ │ ├─NiOpenEXRReader │ │ ├─NiOptimization │ │ ├─NiParticle │ │ │ └─images │ │ ├─NiPhysX │ │ │ └─images │ │ ├─NiPhysXFluid │ │ │ └─Images │ │ ├─NiPhysXParticle │ │ │ └─Images │ │ ├─NiPhysXSharedData │ │ ├─NiPhysXTools │ │ ├─NiPluginToolkit │ │ │ └─images │ │ ├─NiPNGReader │ │ ├─NiPortal │ │ │ └─images │ │ ├─NiProgramLauncher │ │ │ └─images │ │ ├─NiSample │ │ ├─NiSceneGraphUpdateService │ │ │ └─images │ │ ├─NiStandardSharedData │ │ ├─NiStripify │ │ ├─NiSystem │ │ ├─NiTerrain │ │ │ └─images │ │ ├─NiTerrainComponent │ │ │ └─images │ │ ├─NiTerrainPhysX │ │ │ └─images │ │ ├─NiUserInterface │ │ ├─NiViewMath │ │ ├─NiVisualTracker │ │ ├─NSBShaderLib │ │ ├─NSFParserLib │ │ ├─QuickRef_Behaviors │ │ ├─QuickRef_Builtins │ │ ├─QuickRef_Config │ │ ├─QuickRef_Models │ │ ├─QuickRef_Services │ │ └─Tool_Plug_ins │ │ └─images │ ├─RelNotes │ │ ├─All │ │ ├─PC │ │ └─Xbox │ ├─shared │ ├─ThirdPartyCode │ │ └─All │ ├─Tools │ │ ├─Animation_Tool │ │ │ └─images │ │ ├─AssetController │ │ ├─Asset_Viewer │ │ │ └─images │ │ ├─ColladaToNSFConverter │ │ ├─CubeMapMaker │ │ │ └─images │ │ ├─DataDrivenEnum │ │ ├─DynamicCgCompiler │ │ ├─EntityModelingTool │ │ │ └─images │ │ ├─ImageGenerator │ │ ├─MeshProfileCompiler │ │ ├─NiFontCreator │ │ │ └─images │ │ ├─NifViewer │ │ │ └─images │ │ ├─NiMaterialNodeXMLLibraryParser │ │ ├─NiThumbnailExtractor │ │ │ └─images │ │ ├─NSFParserUtility │ │ │ └─images │ │ ├─PhysX_Nif_Viewer │ │ ├─PhysX_Scene_Graph_Printer │ │ ├─Scene_Designer │ │ │ └─images │ │ ├─Scene_Graph_Printer │ │ ├─ScriptDebugger │ │ │ └─images │ │ ├─Toolbench │ │ │ └─images │ │ ├─Tool_Plug_in_Batch_Tool │ │ ├─Tool_Plug_in_Testbed │ │ │ └─images │ │ └─WorldBuilder │ │ ├─icons │ │ └─images │ └─Tutorials │ ├─Base_Game │ │ ├─images │ │ └─templates │ ├─Hello_World │ │ ├─images │ │ └─templates │ └─Rapid_Iteration ├─Media │ ├─asset-web-config │ ├─asset-web-metadata │ ├─Enums │ ├─PhysXModelLibrary │ ├─Samples │ │ ├─GameFramework │ │ │ ├─BaseGame │ │ │ ├─CustomTypeExample1 │ │ │ ├─CustomTypeExample2 │ │ │ ├─HelloWorld │ │ │ └─RapidPrototyping │ │ │ ├─Exported │ │ │ └─RapidPrototypingWorld │ │ ├─Graphics │ │ │ └─Art Files │ │ └─SampleUI │ ├─Shaders │ │ └─Data │ │ ├─D3D10 │ │ ├─DX9 │ │ ├─Generated │ │ │ └─NiStandardMaterial │ │ └─Textures │ ├─StandardModelLibrary │ │ └─Media │ └─ToolPluginsData │ └─MeshProfiles ├─others │ ├─Addons │ │ ├─GamebryoExporter │ │ │ ├─Application │ │ │ │ ├─Plugins │ │ │ │ └─toolbars │ │ │ └─Data │ │ │ └─Scripts │ │ └─GamebryoMaterial │ │ ├─Application │ │ │ ├─bin │ │ │ │ └─nt-x86 │ │ │ ├─spdl │ │ │ └─toolbars │ │ └─Data │ │ ├─DSPresets │ │ │ └─Shaders │ │ │ └─Realtime │ │ └─Scripts │ ├─bin │ │ └─plug-ins │ │ └─Gamebryo Scripts │ ├─Icons │ ├─plugins │ │ └─MaxImmerse │ │ └─Scripts │ ├─scripts │ │ ├─Gamebryo │ │ ├─others │ │ └─startup │ └─ui │ ├─Icons │ └─macroscripts ├─Samples │ ├─GameDemos │ │ ├─DodgeBall │ │ │ ├─Art_Files │ │ │ ├─DATA │ │ │ │ └─WIN32 │ │ │ │ ├─Menu │ │ │ │ ├─MILES │ │ │ │ └─SOUNDS │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─LenguinsOnIce │ │ │ ├─Art Files │ │ │ │ ├─Baby │ │ │ │ ├─Fx │ │ │ │ ├─Level │ │ │ │ └─Moma │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ ├─BABY │ │ │ │ ├─Fx │ │ │ │ ├─LEVELS │ │ │ │ ├─Miles │ │ │ │ ├─MOMMA │ │ │ │ ├─ScreenOverlay │ │ │ │ ├─SHADERS │ │ │ │ │ ├─DX9 │ │ │ │ │ └─Generated │ │ │ │ │ └─NiStandardMaterial │ │ │ │ └─SOUNDS │ │ │ ├─NiMenu │ │ │ ├─Tools │ │ │ │ └─MESHDICER │ │ │ │ └─Win32 │ │ │ │ ├─VC80 │ │ │ │ └─VC90 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MangledMetal │ │ │ ├─Art Files │ │ │ │ ├─Export │ │ │ │ │ ├─Characters │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ ├─Pedestrians │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ └─.mayaSwatches │ │ │ │ │ ├─FX │ │ │ │ │ └─Props │ │ │ │ ├─Export_Manual │ │ │ │ │ ├─Characters │ │ │ │ │ │ └─DeathRipper │ │ │ │ │ ├─Props │ │ │ │ │ └─Proxies │ │ │ │ ├─ToolScripts │ │ │ │ │ ├─Max │ │ │ │ │ │ ├─plugins │ │ │ │ │ │ │ └─MaxImmerse │ │ │ │ │ │ │ └─Scripts │ │ │ │ │ │ └─UI │ │ │ │ │ │ └─MacroScripts │ │ │ │ │ └─Maya │ │ │ │ │ ├─bin │ │ │ │ │ │ └─plug-ins │ │ │ │ │ │ └─Gamebryo Scripts │ │ │ │ │ └─scripts │ │ │ │ │ └─others │ │ │ │ └─TriggersLibrary │ │ │ ├─Data │ │ │ │ ├─asset-web-config │ │ │ │ ├─asset-web-metadata │ │ │ │ ├─Enums │ │ │ │ ├─Exported │ │ │ │ ├─HUD │ │ │ │ ├─MangledMetal │ │ │ │ │ ├─EntityModels │ │ │ │ │ ├─FlatModels │ │ │ │ │ ├─GamebryoData │ │ │ │ │ │ ├─D3D10 │ │ │ │ │ │ │ ├─Characters │ │ │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ │ ├─FX │ │ │ │ │ │ │ ├─Props │ │ │ │ │ │ │ ├─Proxies │ │ │ │ │ │ │ └─Terrain │ │ │ │ │ │ ├─DX9 │ │ │ │ │ │ │ ├─Characters │ │ │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ │ ├─FX │ │ │ │ │ │ │ ├─Props │ │ │ │ │ │ │ ├─Proxies │ │ │ │ │ │ │ └─Terrain │ │ │ │ │ │ └─Generic │ │ │ │ │ │ ├─Characters │ │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ │ ├─Pedestrians │ │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ ├─FX │ │ │ │ │ │ ├─Props │ │ │ │ │ │ ├─Proxies │ │ │ │ │ │ └─Terrain │ │ │ │ │ │ ├─Level01 │ │ │ │ │ │ │ └─Sector_0_0 │ │ │ │ │ │ └─Level03 │ │ │ │ │ │ └─Sector_0_0 │ │ │ │ │ └─Scripts │ │ │ │ ├─PhysXModelLibrary │ │ │ │ ├─Shaders │ │ │ │ │ ├─DX9 │ │ │ │ │ ├─NiDirShadowWriteMat │ │ │ │ │ ├─NiStandardMaterial │ │ │ │ │ └─NiTerrainMaterial │ │ │ │ ├─StandardModelLibrary │ │ │ │ │ └─Media │ │ │ │ └─TriggersLibrary │ │ │ │ ├─EntityModels │ │ │ │ ├─FlatModels │ │ │ │ ├─GamebryoData │ │ │ │ │ └─Generic │ │ │ │ │ └─Props │ │ │ │ └─Scripts │ │ │ ├─Tools │ │ │ │ └─BlockFilter │ │ │ │ ├─bin │ │ │ │ └─Win32 │ │ │ │ └─VC80 │ │ │ └─Win32 │ │ │ ├─ResourceFiles │ │ │ ├─VC80 │ │ │ │ ├─Release │ │ │ │ └─Shipping │ │ │ └─VC90 │ │ │ ├─Release │ │ │ └─Shipping │ │ ├─MetalWars │ │ │ ├─Art Files │ │ │ │ └─Textures Win32 │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ ├─Killbot │ │ │ │ ├─Miles │ │ │ │ ├─Scene │ │ │ │ ├─Shaders │ │ │ │ │ └─Generated │ │ │ │ │ ├─ColorDepthMaterial │ │ │ │ │ └─NiStandardMaterial │ │ │ │ └─Sound │ │ │ ├─Menu │ │ │ ├─Sound │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MOUT │ │ │ ├─Art Files │ │ │ │ ├─DesertTown │ │ │ │ │ └─textures │ │ │ │ └─Soldier │ │ │ ├─Data │ │ │ │ ├─DesertTown │ │ │ │ ├─Shaders │ │ │ │ │ ├─Common │ │ │ │ │ └─D3D10 │ │ │ │ └─Soldier │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─SceneApp │ │ ├─Data │ │ │ └─Win32 │ │ │ └─Shaders │ │ │ └─Generated │ │ │ ├─NiDirShadowWriteMat │ │ │ ├─NiSpotShadowWriteMat │ │ │ └─NiStandardMaterial │ │ ├─ShadowMaterialNodeLibrary │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─GameFrameworkTechDemos │ │ ├─BaseGame │ │ ├─CustomTypeExample1 │ │ ├─CustomTypeExample2 │ │ ├─Emergent.Toolbench.CustomType │ │ │ ├─bin │ │ │ │ └─Shipping │ │ │ │ └─Emergent.Toolbench.CustomType │ │ │ ├─Editors │ │ │ ├─obj │ │ │ │ └─Shipping │ │ │ │ └─Editors │ │ │ ├─Properties │ │ │ ├─References │ │ │ └─Types │ │ └─HelloWorld │ ├─GraphicsTechDemos │ │ ├─BackgroundLoad │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─WIN32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─BadSushi │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CharacterAnimationDemo │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CharacterPerformanceDemo │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ ├─D3D10 │ │ │ │ └─DX9 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CollisionTestDynamic │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CollisionTestStatic │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CubeMap │ │ │ ├─ArtFiles │ │ │ │ └─Textures_Win32 │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─DX9MSAATextures │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─DynamicTexture │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─InputDemo │ │ │ ├─Actions │ │ │ ├─DATA │ │ │ │ └─WIN32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─LogoApplication │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MeshCreation │ │ │ ├─Art_Files │ │ │ │ └─Water_Height │ │ │ ├─Data │ │ │ ├─Kernels │ │ │ │ └─NiWaterKernel │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MeshInstancing │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXFluids │ │ │ ├─ArtFiles │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXParticles │ │ │ ├─ArtFiles │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXParticlesInCode │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXTerrainDemo │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ ├─NIFs │ │ │ │ ├─Palettes │ │ │ │ ├─Terrain │ │ │ │ │ └─Sector_0_0 │ │ │ │ └─WaterNormalMaps │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXTiming │ │ │ ├─ArtFiles │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─Picking │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─Shaders │ │ │ │ ├─D3D10 │ │ │ │ └─DX9 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ProfileSample │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ShaderSample │ │ │ ├─Data │ │ │ │ ├─Art Files │ │ │ │ └─Shaders │ │ │ │ ├─D3D10 │ │ │ │ ├─DX9 │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ ├─sdk │ │ │ │ └─Win32 │ │ │ │ ├─Include │ │ │ │ └─Lib │ │ │ │ ├─vc80 │ │ │ │ │ ├─debug │ │ │ │ │ ├─debugdll │ │ │ │ │ ├─release │ │ │ │ │ ├─releasedll │ │ │ │ │ ├─shipping │ │ │ │ │ └─shippingdll │ │ │ │ └─VC90 │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─ShaderLibrary │ │ │ │ └─Win32 │ │ │ │ ├─VC80 │ │ │ │ └─VC90 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ShadowMap │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Shaders │ │ │ │ ├─DX9 │ │ │ │ └─Generated │ │ │ │ ├─NiDirShadowWriteMat │ │ │ │ ├─NiSpotShadowWriteMat │ │ │ │ ├─NiStandardMaterial │ │ │ │ └─NiVSMBlurMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─SimpleApp │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─SoftParticles │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─StandardMaterial │ │ │ ├─Art_Files │ │ │ │ └─Textures_Win32 │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─StencilShadow │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─TerrainDemo │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ ├─NIFs │ │ │ │ ├─Palettes │ │ │ │ ├─terrain │ │ │ │ │ └─Sector_0_0 │ │ │ │ └─WaterNormalMaps │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─UnicodeCharacterSets │ │ │ ├─Data │ │ │ │ └─Font │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─VertexLightingPipeline │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─VideoTexture │ │ ├─Data │ │ │ └─Miles │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─Models │ │ ├─AnimationToolExamples │ │ │ ├─BabyLenguin │ │ │ │ └─Max │ │ │ ├─CyberMonkey │ │ │ │ └─Art_Files │ │ │ │ └─.mayaSwatches │ │ │ ├─DestroyerBot │ │ │ │ └─Maya │ │ │ ├─Killbot │ │ │ │ ├─Killbot Default_Pipeline │ │ │ │ │ └─Max │ │ │ │ │ └─maps │ │ │ │ └─Max │ │ │ │ └─maps │ │ │ ├─ROCKY │ │ │ │ └─Max │ │ │ ├─Skeleton │ │ │ ├─Slim │ │ │ ├─Soldier │ │ │ │ └─Max │ │ │ │ └─textures │ │ │ └─Tutorials │ │ │ ├─Blacksmith │ │ │ │ └─Max │ │ │ └─Redcoat │ │ │ └─Max │ │ ├─Collision │ │ │ ├─MAX │ │ │ │ └─1900 MISC Hierarchy (Girl) │ │ │ ├─MAYA │ │ │ │ └─2900 MISC Hierarchy (Robot) │ │ │ └─NIF │ │ ├─Max Artist Examples │ │ │ ├─PhysX │ │ │ │ └─Art Files │ │ │ └─Textures │ │ ├─Maya Artist Examples │ │ │ ├─Animation │ │ │ ├─Geometry │ │ │ ├─Material │ │ │ ├─Misc │ │ │ ├─Particle │ │ │ ├─PhysX │ │ │ └─Shaders │ │ ├─SceneDesignerExamples │ │ │ ├─Holodeck │ │ │ │ ├─Data │ │ │ │ │ └─Max │ │ │ │ └─Palettes │ │ │ ├─MadLab │ │ │ │ ├─Art Files │ │ │ │ │ └─MadLab Materials │ │ │ │ ├─Palettes │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ └─Ruins │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Palettes │ │ └─XSI Artist Examples │ │ ├─Pictures │ │ └─Scenes │ │ └─Exported │ ├─SampleLibs │ │ ├─SamplePluginsDLL │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─SceneDesignerPlugins │ │ ├─SamplePluginCpp │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─SamplePluginCs │ │ ├─bin │ │ │ └─ShippingDLL │ │ └─obj │ │ └─ShippingDLL │ └─Tutorials │ ├─Graphics │ │ ├─01-Renderers │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─02-NIFFiles │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─03-Shaders │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─04-SceneAttachment │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─05-Transforms │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─06-TimeControllers │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─07-UserInput │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─08-ScreenTexture │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─09-RenderedTexture │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ArtFiles │ │ └─Data │ │ └─Shaders │ │ ├─Common │ │ └─D3D10 │ └─PhysX │ ├─01_Initializing │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─02_BallInBox │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─03_Kinematic │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─04_Asynchronous │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─ArtFiles │ │ ├─Models │ │ └─Textures │ └─Data │ └─Win32 ├─sdk │ └─Win32 │ ├─Bin │ │ └─VC90 │ │ └─Shipping │ │ ├─Data │ │ ├─Plugins │ │ │ ├─Emergent.Toolbench.Actions │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.Assets │ │ │ ├─Emergent.Toolbench.Assets.Framework │ │ │ ├─Emergent.Toolbench.CodeEditor │ │ │ │ ├─Compilers │ │ │ │ ├─Icons │ │ │ │ └─Syntax │ │ │ ├─Emergent.Toolbench.Collections.Test │ │ │ ├─Emergent.Toolbench.Connections │ │ │ │ └─Images │ │ │ ├─Emergent.Toolbench.ConsoleLogger │ │ │ ├─Emergent.Toolbench.ContentExporter │ │ │ ├─Emergent.Toolbench.ContentService │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.EntityModeling │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.EntityModeling.UI │ │ │ │ ├─Icons │ │ │ │ └─Resources │ │ │ │ └─Images │ │ │ ├─Emergent.Toolbench.EntityModeling.UI.ModelFactory │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.FileAssociator │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.FileAssociator.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.FileSystemMonitor │ │ │ ├─Emergent.Toolbench.Foundation.Interop │ │ │ ├─Emergent.Toolbench.Framework │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.Gamebryo │ │ │ ├─Emergent.Toolbench.GameSolution │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.GameSolution.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.MigrationService │ │ │ ├─Emergent.Toolbench.OutputView │ │ │ │ ├─Icons │ │ │ │ ├─Resources │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.PluginBrowser │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.PropertyType │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.ScriptDebugger │ │ │ ├─Emergent.Toolbench.ScriptDebugger.Messaging │ │ │ ├─Emergent.Toolbench.ScriptDebugger.UI │ │ │ │ └─Images │ │ │ ├─Emergent.Toolbench.Settings │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.Settings.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.ShortcutEditor │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.TestAutomater │ │ │ ├─Emergent.Toolbench.TestRunner │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.TextEditor │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.TypeService │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.UI │ │ │ ├─Emergent.Toolbench.UI.Common │ │ │ ├─Emergent.Toolbench.UI.ContentDialogs │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.UI.EditableService │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.UI.Help │ │ │ ├─Emergent.Toolbench.UI.Menus │ │ │ ├─Emergent.Toolbench.UI.Undo │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.UI.Workbench │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.WorldBuilder │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.WorldBuilder.Framework │ │ │ ├─Emergent.Toolbench.WorldBuilder.Messaging │ │ │ ├─Emergent.Toolbench.WorldBuilder.Terrain │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.WorldBuilder.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.WorldBuilder.UI.EmbeddedViewer │ │ │ ├─Emergent.Toolbench.WorldBuilder.UI.Gamebryo │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ └─Emergent.Toolbench.WorldBuilder.UI.RenderModes │ │ └─Schemas │ ├─DLL │ │ ├─ShaderLibs │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─ToolPlugins │ │ ├─ConsoleViewers │ │ │ └─SceneViewerD3DData │ │ ├─ImageGenerator │ │ │ ├─Debug │ │ │ └─Release │ │ ├─VC80 │ │ └─VC90 │ ├─Include │ │ ├─ecr │ │ ├─ecrInput │ │ ├─ecrPhysX │ │ ├─efd │ │ │ └─Win32 │ │ ├─efdLogService │ │ ├─efdNetwork │ │ │ └─Win32 │ │ ├─efdPhysX │ │ ├─egf │ │ ├─egfLua │ │ ├─egfPhysX │ │ ├─egfPython │ │ ├─egmAnimation │ │ ├─egmPhysXRagdoll │ │ ├─egmPhysXTerrain │ │ ├─egmTerrain │ │ ├─egmToolServices │ │ ├─egmVisualizers │ │ └─egmVisualTracker │ ├─Lib │ │ ├─vc80 │ │ │ ├─debug │ │ │ ├─DebugDLL │ │ │ ├─release │ │ │ ├─ReleaseDLL │ │ │ ├─shipping │ │ │ └─ShippingDLL │ │ └─VC90 │ │ ├─Debug │ │ ├─DebugDLL │ │ ├─Release │ │ ├─ReleaseDLL │ │ ├─Shipping │ │ └─ShippingDLL │ ├─Lua │ ├─Python │ └─Resource └─Source ├─3rdParty │ ├─Bison │ │ └─Bison2.1 │ │ ├─bin │ │ ├─contrib │ │ │ └─bison │ │ │ └─2.1 │ │ │ ├─bison-2.1 │ │ │ └─bison-2.1-src │ │ │ ├─data │ │ │ └─doc │ │ ├─doc │ │ │ ├─bison │ │ │ │ └─2.1 │ │ │ │ └─bison-2.1 │ │ │ ├─Open Group Base Specifications Issue 6 │ │ │ └─UnixV7 │ │ ├─include │ │ ├─info │ │ ├─lib │ │ ├─man │ │ │ ├─cat1 │ │ │ ├─html │ │ │ ├─man1 │ │ │ ├─pdf │ │ │ └─ps │ │ ├─manifest │ │ └─share │ │ ├─aclocal │ │ ├─bison │ │ │ └─m4sugar │ │ └─locale │ │ ├─da │ │ │ └─LC_MESSAGES │ │ ├─de │ │ │ └─LC_MESSAGES │ │ ├─es │ │ │ └─LC_MESSAGES │ │ ├─et │ │ │ └─LC_MESSAGES │ │ ├─fr │ │ │ └─LC_MESSAGES │ │ ├─ga │ │ │ └─LC_MESSAGES │ │ ├─hr │ │ │ └─LC_MESSAGES │ │ ├─id │ │ │ └─LC_MESSAGES │ │ ├─it │ │ │ └─LC_MESSAGES │ │ ├─ja │ │ │ └─LC_MESSAGES │ │ ├─ms │ │ │ └─LC_MESSAGES │ │ ├─nb │ │ │ └─LC_MESSAGES │ │ ├─nl │ │ │ └─LC_MESSAGES │ │ ├─pl │ │ │ └─LC_MESSAGES │ │ ├─pt_BR │ │ │ └─LC_MESSAGES │ │ ├─ro │ │ │ └─LC_MESSAGES │ │ ├─ru │ │ │ └─LC_MESSAGES │ │ ├─rw │ │ │ └─LC_MESSAGES │ │ ├─sv │ │ │ └─LC_MESSAGES │ │ ├─tr │ │ │ └─LC_MESSAGES │ │ └─vi │ │ └─LC_MESSAGES │ ├─DockPanel │ │ └─WinFormsUI │ │ └─VC80 │ ├─enet │ │ ├─docs │ │ └─include │ │ └─enet │ ├─Flex │ │ └─Flex2.5.4a │ │ ├─bin │ │ ├─contrib │ │ │ └─flex │ │ │ └─2.5.4a │ │ │ └─flex-2.5.4a │ │ │ └─MISC │ │ │ ├─Borland │ │ │ ├─fastwc │ │ │ └─MVS │ │ ├─man │ │ │ └─cat1 │ │ └─manifest │ ├─LibPNG │ │ ├─Installer │ │ ├─NiProject │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ │ ├─Debug │ │ │ │ ├─Release │ │ │ │ └─Shipping │ │ │ └─VC90 │ │ │ ├─Debug │ │ │ ├─Release │ │ │ └─Shipping │ │ └─Package │ │ ├─contrib │ │ │ ├─gregbook │ │ │ ├─pngminus │ │ │ ├─pngsuite │ │ │ └─visupng │ │ ├─projects │ │ │ ├─beos │ │ │ ├─cbuilder5 │ │ │ ├─visualc6 │ │ │ └─visualc71 │ │ └─scripts │ ├─Lua │ │ ├─doc │ │ ├─Installer │ │ │ ├─LNUM │ │ │ └─Lua │ │ └─Package │ │ ├─etc │ │ ├─Porting │ │ ├─Profiler │ │ │ └─analyzer │ │ ├─src │ │ └─test │ ├─OpenEXR │ │ ├─Installer │ │ ├─NiProject │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ │ ├─Debug_Half │ │ │ │ ├─Debug_Iex │ │ │ │ ├─Debug_IlmImf │ │ │ │ ├─Debug_IlmThread │ │ │ │ ├─Debug_Imath │ │ │ │ ├─Release_Half │ │ │ │ ├─Release_Iex │ │ │ │ ├─Release_IlmImf │ │ │ │ ├─Release_IlmThread │ │ │ │ ├─Release_Imath │ │ │ │ ├─Shipping_Half │ │ │ │ ├─Shipping_Iex │ │ │ │ ├─Shipping_IlmImf │ │ │ │ ├─Shipping_IlmThread │ │ │ │ └─Shipping_Imath │ │ │ └─VC90 │ │ │ ├─Debug_Half │ │ │ ├─Debug_Iex │ │ │ ├─Debug_IlmImf │ │ │ ├─Debug_IlmThread │ │ │ ├─Debug_Imath │ │ │ ├─Release_Half │ │ │ ├─Release_Iex │ │ │ ├─Release_IlmImf │ │ │ ├─Release_IlmThread │ │ │ ├─Release_Imath │ │ │ ├─Shipping_Half │ │ │ ├─Shipping_Iex │ │ │ ├─Shipping_IlmImf │ │ │ ├─Shipping_IlmThread │ │ │ └─Shipping_Imath │ │ └─Package │ │ ├─ILMBase │ │ │ ├─config │ │ │ ├─config.windows │ │ │ ├─Half │ │ │ ├─HalfTest │ │ │ ├─Iex │ │ │ ├─IexTest │ │ │ ├─IlmThread │ │ │ ├─Imath │ │ │ ├─ImathTest │ │ │ ├─m4 │ │ │ └─vc │ │ │ ├─createDLL │ │ │ ├─vc7 │ │ │ │ └─IlmBase │ │ │ │ ├─createDLL │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─debug │ │ │ │ ├─Half │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─HalfTest │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─Iex │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─IexTest │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─IlmThread │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─Imath │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─ImathTest │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ └─release │ │ │ └─vc8 │ │ │ └─IlmBase │ │ │ ├─createDLL │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─debug │ │ │ ├─Half │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─HalfTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─Iex │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─IexTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─IlmThread │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─Imath │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─ImathTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ └─release │ │ └─OpenEXR │ │ ├─config │ │ ├─config.windows │ │ ├─doc │ │ ├─exrenvmap │ │ ├─exrheader │ │ ├─exrmakepreview │ │ ├─exrmaketiled │ │ ├─exrstdattr │ │ ├─IlmImf │ │ ├─IlmImfExamples │ │ ├─IlmImfFuzzTest │ │ ├─IlmImfTest │ │ ├─m4 │ │ └─vc │ │ ├─vc7 │ │ │ └─OpenEXR │ │ │ ├─debug │ │ │ ├─exrenvmap │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─exrheader │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─exrmakepreview │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─exrmaketiled │ │ │ │ └─Debug │ │ │ ├─exrstdattr │ │ │ │ └─Debug │ │ │ ├─IlmImf │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─IlmImfExamples │ │ │ │ ├─CVS │ │ │ │ ├─Debug │ │ │ │ │ └─CVS │ │ │ │ └─Release │ │ │ │ └─CVS │ │ │ ├─IlmImfTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ └─release │ │ └─vc8 │ │ └─OpenEXR │ │ ├─debug │ │ ├─exrenvmap │ │ │ ├─Debug │ │ │ └─Release │ │ ├─exrheader │ │ │ ├─Debug │ │ │ └─Release │ │ ├─exrmakepreview │ │ │ ├─Debug │ │ │ └─Release │ │ ├─exrmaketiled │ │ │ └─Debug │ │ ├─exrstdattr │ │ │ └─Debug │ │ ├─IlmImf │ │ │ ├─Debug │ │ │ └─Release │ │ ├─IlmImfExamples │ │ │ ├─CVS │ │ │ ├─Debug │ │ │ │ └─CVS │ │ │ └─Release │ │ │ └─CVS │ │ ├─IlmImfTest │ │ │ ├─Debug │ │ │ └─Release │ │ └─release │ ├─Python │ │ ├─Grammar │ │ ├─Include │ │ ├─Lib │ │ │ ├─bsddb │ │ │ │ └─test │ │ │ ├─compiler │ │ │ ├─ctypes │ │ │ │ ├─macholib │ │ │ │ └─test │ │ │ ├─curses │ │ │ ├─distutils │ │ │ │ ├─command │ │ │ │ └─tests │ │ │ ├─email │ │ │ │ ├─mime │ │ │ │ └─test │ │ │ │ └─data │ │ │ ├─encodings │ │ │ ├─hotshot │ │ │ ├─idlelib │ │ │ │ └─Icons │ │ │ ├─lib-tk │ │ │ ├─logging │ │ │ ├─msilib │ │ │ ├─site-packages │ │ │ ├─sqlite3 │ │ │ │ └─test │ │ │ ├─wsgiref │ │ │ └─xml │ │ │ ├─dom │ │ │ ├─etree │ │ │ ├─parsers │ │ │ └─sax │ │ ├─Linux │ │ │ ├─bin │ │ │ ├─include │ │ │ │ └─python2.5 │ │ │ │ ├─core │ │ │ │ ├─module │ │ │ │ ├─pickling │ │ │ │ └─platf │ │ │ ├─lib │ │ │ │ └─python2.5 │ │ │ │ ├─bsddb │ │ │ │ │ └─test │ │ │ │ ├─compiler │ │ │ │ ├─config │ │ │ │ ├─ctypes │ │ │ │ │ ├─macholib │ │ │ │ │ └─test │ │ │ │ ├─curses │ │ │ │ ├─db-packages │ │ │ │ │ ├─twisted │ │ │ │ │ │ ├─application │ │ │ │ │ │ ├─conch │ │ │ │ │ │ │ ├─client │ │ │ │ │ │ │ ├─insults │ │ │ │ │ │ │ ├─openssh_compat │ │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ │ ├─ssh │ │ │ │ │ │ │ ├─test │ │ │ │ │ │ │ └─ui │ │ │ │ │ │ ├─cred │ │ │ │ │ │ ├─enterprise │ │ │ │ │ │ ├─internet │ │ │ │ │ │ │ ├─cfsupport │ │ │ │ │ │ │ └─iocpreactor │ │ │ │ │ │ ├─lore │ │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─mail │ │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─manhole │ │ │ │ │ │ │ └─ui │ │ │ │ │ │ ├─names │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─news │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─persisted │ │ │ │ │ │ │ └─journal │ │ │ │ │ │ ├─plugins │ │ │ │ │ │ ├─protocols │ │ │ │ │ │ │ ├─gps │ │ │ │ │ │ │ └─mice │ │ │ │ │ │ ├─python │ │ │ │ │ │ │ └─zsh │ │ │ │ │ │ ├─runner │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ ├─spread │ │ │ │ │ │ │ └─ui │ │ │ │ │ │ ├─tap │ │ │ │ │ │ ├─test │ │ │ │ │ │ ├─trial │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─web │ │ │ │ │ │ │ ├─test │ │ │ │ │ │ │ └─woven │ │ │ │ │ │ └─words │ │ │ │ │ │ ├─im │ │ │ │ │ │ ├─protocols │ │ │ │ │ │ │ └─jabber │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ ├─test │ │ │ │ │ │ └─xish │ │ │ │ │ └─zope │ │ │ │ │ └─interface │ │ │ │ │ ├─common │ │ │ │ │ └─tests │ │ │ │ ├─distutils │ │ │ │ │ ├─command │ │ │ │ │ └─tests │ │ │ │ ├─email │ │ │ │ │ ├─mime │ │ │ │ │ └─test │ │ │ │ │ └─data │ │ │ │ ├─encodings │ │ │ │ ├─hotshot │ │ │ │ ├─idlelib │ │ │ │ │ └─Icons │ │ │ │ ├─lib-dynload │ │ │ │ ├─lib-tk │ │ │ │ ├─logging │ │ │ │ ├─msilib │ │ │ │ ├─site-packages │ │ │ │ │ ├─wx-2.8-msw-unicode │ │ │ │ │ │ ├─docs │ │ │ │ │ │ │ └─licence │ │ │ │ │ │ ├─wx │ │ │ │ │ │ │ ├─build │ │ │ │ │ │ │ ├─lib │ │ │ │ │ │ │ │ ├─analogclock │ │ │ │ │ │ │ │ │ └─lib_setup │ │ │ │ │ │ │ │ ├─art │ │ │ │ │ │ │ │ ├─colourchooser │ │ │ │ │ │ │ │ ├─editor │ │ │ │ │ │ │ │ ├─floatcanvas │ │ │ │ │ │ │ │ │ └─Utilities │ │ │ │ │ │ │ │ ├─masked │ │ │ │ │ │ │ │ ├─mixins │ │ │ │ │ │ │ │ └─ogl │ │ │ │ │ │ │ ├─loca

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值