Changeset 54766 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Mar 15, 2015 6:22:17 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98945
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r54765 r54766 21 21 *******************************************************************************/ 22 22 /* Enable to disassemble defined shaders. (Windows host only) */ 23 #if defined(RT_OS_WINDOWS) && defined(DEBUG) 23 #if defined(RT_OS_WINDOWS) && defined(DEBUG) && 0 /* Disabled as we don't have the DirectX SDK avaible atm. */ 24 24 # define DUMP_SHADER_DISASSEMBLY 25 25 #endif … … 7468 7468 #ifdef DUMP_SHADER_DISASSEMBLY 7469 7469 LPD3DXBUFFER pDisassembly; 7470 7471 7470 HRESULT hr = D3DXDisassembleShader((const DWORD *)pShaderData, FALSE, NULL, &pDisassembly); 7472 7471 if (hr == D3D_OK) -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-win.cpp
r54765 r54766 48 48 49 49 /* Enable to disassemble defined shaders. */ 50 #if def DEBUG50 #if defined(DEBUG) && 0 /* Disabled as we don't have the DirectX SDK avaible atm. */ 51 51 #define DUMP_SHADER_DISASSEMBLY 52 52 #endif … … 5763 5763 #ifdef DUMP_SHADER_DISASSEMBLY 5764 5764 LPD3DXBUFFER pDisassembly; 5765 5766 5765 hr = D3DXDisassembleShader((const DWORD *)pShaderData, FALSE, NULL, &pDisassembly); 5767 5766 if (hr == D3D_OK) … … 5771 5770 } 5772 5771 #endif 5772 5773 5773 switch (type) 5774 5774 {
Note:
See TracChangeset
for help on using the changeset viewer.