Changeset 82117 in vbox
- Timestamp:
- Nov 22, 2019 11:31:45 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134927
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r82115 r82117 1508 1508 * @param pDevIns The device instance. 1509 1509 * @param pThis The shared VGA/VMSVGA state. 1510 * @param pThisC 1510 * @param pThisCC The VGA/VMSVGA state for the current context. 1511 1511 * @param u32 Value to write 1512 1512 */ … … 3126 3126 * @param pSVGAState Pointer to the ring-3 only SVGA state data. For 3127 3127 * statistics collection. 3128 * @param pDevIns The device instance. 3128 3129 */ 3129 3130 static void *vmsvgaR3FifoGetCmdPayload(uint32_t cbPayloadReq, uint32_t RT_UNTRUSTED_VOLATILE_GUEST *pFIFO, … … 5832 5833 * @returns VBox status code. 5833 5834 * @param pThis The shared VGA/VMSVGA instance data. 5835 * @param pThisCC The VGA/VMSVGA state for ring-3. 5834 5836 */ 5835 5837 static void vmsvgaR3InitCaps(PVGASTATE pThis, PVGASTATECC pThisCC) -
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r82115 r82117 3379 3379 * 3380 3380 * @returns VBox status code. 3381 * @param pThis VGA device structure 3381 * @param pThis The shared VGA instance data. 3382 * @param pThisCC The VGA instance data for the current context. 3382 3383 * @param pvUser User argument - ignored. 3383 3384 * @param GCPhysAddr Physical address of memory to write. … … 3944 3945 * @returns VBox status code. 3945 3946 * 3946 * @param pThis The VGA instance data.3947 * @param pThisCC The VGA instance data for ring-3. 3947 3948 */ 3948 3949 static int vbeR3ParseBitmap(PVGASTATECC pThisCC) … … 4796 4797 * @interface_method_impl{PDMIDISPLAYCONNECTOR,pfnResize} 4797 4798 */ 4798 static DECLCALLBACK(int) vgaR3DummyResize(PPDMIDISPLAYCONNECTOR pInterface, uint32_t bpp, void *pvVRAM,4799 static DECLCALLBACK(int) vgaR3DummyResize(PPDMIDISPLAYCONNECTOR pInterface, uint32_t cBits, void *pvVRAM, 4799 4800 uint32_t cbLine, uint32_t cx, uint32_t cy) 4800 4801 { 4801 RT_NOREF(pInterface, bpp, pvVRAM, cbLine, cx, cy);4802 RT_NOREF(pInterface, cBits, pvVRAM, cbLine, cx, cy); 4802 4803 return VINF_SUCCESS; 4803 4804 } … … 5772 5773 * 5773 5774 * @param pHlp The device helpers (for SSM functions). 5774 * @param pThis The VGA instance data.5775 * @param pThis The shared VGA instance data. 5775 5776 * @param pSSM The saved state handle. 5776 5777 */
Note:
See TracChangeset
for help on using the changeset viewer.