儲存庫 vbox 的更動 62935
- 時間撮記:
- 2016-8-3 下午05:37:54 (8 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Devices/Graphics/shaderlib/utils.c
r62514 r62935 19 19 #include <iprt/mem.h> 20 20 #include <iprt/assert.h> 21 #include < windows.h>21 #include <iprt/win/windows.h> 22 22 #include "wined3d_private.h" 23 23 … … 80 80 void select_shader_mode(const struct wined3d_gl_info *gl_info, int *ps_selected, int *vs_selected) 81 81 { 82 RT_NOREF(gl_info); 82 83 *vs_selected = SHADER_GLSL; 83 84 *ps_selected = SHADER_GLSL; … … 103 104 void dump_color_fixup_desc(struct color_fixup_desc fixup) 104 105 { 106 RT_NOREF(fixup); 105 107 } 106 108 107 109 void context_release(struct wined3d_context *context) 108 110 { 111 RT_NOREF(context); 109 112 } 110 113 … … 118 121 LPVOID WINAPI VBoxHeapAlloc(HANDLE hHeap, DWORD heaptype,SIZE_T size) 119 122 { 123 RT_NOREF(hHeap, heaptype); 120 124 return RTMemAllocZ(size); 121 125 } … … 123 127 BOOL WINAPI VBoxHeapFree(HANDLE hHeap, DWORD heaptype,LPVOID ptr) 124 128 { 129 RT_NOREF(hHeap, heaptype); 125 130 RTMemFree(ptr); 126 131 return TRUE; 127 132 } 128 133 129 LPVOID WINAPI VBoxHeapReAlloc(HANDLE hHeap, DWORD heaptype,LPVOID ptr ,SIZE_T size)134 LPVOID WINAPI VBoxHeapReAlloc(HANDLE hHeap, DWORD heaptype, LPVOID ptr, SIZE_T size) 130 135 { 136 RT_NOREF(hHeap, heaptype); 131 137 return RTMemRealloc(ptr, size); 132 138 } 133 139 134 void VBoxDebugBreak( )140 void VBoxDebugBreak(void) 135 141 { 136 142 AssertFailed();
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器