Changeset 44775 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Feb 21, 2013 12:52:07 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83887
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_vreg.h
r44766 r44775 137 137 #define PVBOXVR_REG_FROM_ENTRY(_pEntry) ((PVBOXVR_REG)(((uint8_t*)(_pEntry)) - RT_OFFSETOF(VBOXVR_REG, ListEntry))) 138 138 139 DECLINLINE( const PRTRECT) VBoxVrListIterNext(PVBOXVR_LIST_ITERATOR pIter)139 DECLINLINE(PCRTRECT) VBoxVrListIterNext(PVBOXVR_LIST_ITERATOR pIter) 140 140 { 141 141 PRTLISTNODE pNextEntry = pIter->pNextEntry; 142 142 if (pNextEntry != &pIter->pList->ListHead) 143 143 { 144 const PRTRECT pRect = &(PVBOXVR_REG_FROM_ENTRY(pNextEntry)->Rect);144 PCRTRECT pRect = &(PVBOXVR_REG_FROM_ENTRY(pNextEntry)->Rect); 145 145 pIter->pNextEntry = pNextEntry->pNext; 146 146 return pRect;
Note:
See TracChangeset
for help on using the changeset viewer.