Changeset 34406 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Display
- Timestamp:
- Nov 26, 2010 4:45:34 PM (14 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispCm.cpp
r34345 r34406 180 180 EnterCriticalSection(&pSession->CritSect); 181 181 /* use any context for identifying the kernel CmSession. We're using the first one */ 182 PVBOXWDDMDISP_CONTEXT pContext = RTList NodeGetFirst(&pSession->CtxList, VBOXWDDMDISP_CONTEXT, ListNode);182 PVBOXWDDMDISP_CONTEXT pContext = RTListGetFirst(&pSession->CtxList, VBOXWDDMDISP_CONTEXT, ListNode); 183 183 if (pContext) 184 184 { … … 266 266 EnterCriticalSection(&pSession->CritSect); 267 267 /* use any context for identifying the kernel CmSession. We're using the first one */ 268 PVBOXWDDMDISP_CONTEXT pContext = RTList NodeGetFirst(&pSession->CtxList, VBOXWDDMDISP_CONTEXT, ListNode);268 PVBOXWDDMDISP_CONTEXT pContext = RTListGetFirst(&pSession->CtxList, VBOXWDDMDISP_CONTEXT, ListNode); 269 269 Assert(pContext); 270 270 if (pContext) -
trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3D.cpp
r34345 r34406 1766 1766 static VOID vboxWddmSwapchainDestroyAll(PVBOXWDDMDISP_DEVICE pDevice) 1767 1767 { 1768 PVBOXWDDMDISP_SWAPCHAIN pCur = RTList NodeGetFirst(&pDevice->SwapchainList, VBOXWDDMDISP_SWAPCHAIN, ListEntry);1768 PVBOXWDDMDISP_SWAPCHAIN pCur = RTListGetFirst(&pDevice->SwapchainList, VBOXWDDMDISP_SWAPCHAIN, ListEntry); 1769 1769 while (pCur) 1770 1770 { … … 2029 2029 { 2030 2030 /* first search for the swapchain the alloc might be added to */ 2031 PVBOXWDDMDISP_SWAPCHAIN pCur = RTList NodeGetFirst(&pDevice->SwapchainList, VBOXWDDMDISP_SWAPCHAIN, ListEntry);2031 PVBOXWDDMDISP_SWAPCHAIN pCur = RTListGetFirst(&pDevice->SwapchainList, VBOXWDDMDISP_SWAPCHAIN, ListEntry); 2032 2032 while (pCur) 2033 2033 { … … 6042 6042 EnterCriticalSection(&pDevice->DirtyAllocListLock); 6043 6043 6044 PVBOXWDDMDISP_ALLOCATION pAlloc = RTList NodeGetFirst(&pDevice->DirtyAllocList, VBOXWDDMDISP_ALLOCATION, DirtyAllocListEntry);6044 PVBOXWDDMDISP_ALLOCATION pAlloc = RTListGetFirst(&pDevice->DirtyAllocList, VBOXWDDMDISP_ALLOCATION, DirtyAllocListEntry); 6045 6045 if (pAlloc) 6046 6046 {
Note:
See TracChangeset
for help on using the changeset viewer.