VirtualBox

Ignore:
Timestamp:
Jun 25, 2013 4:09:37 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
86715
Message:

wddm/crOpenGL: more TexPresent impl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp

    r46656 r46783  
    891891
    892892                svcFreeBuffer(pSvcBuffer);
     893            }
     894
     895            break;
     896        }
     897
     898        case SHCRGL_GUEST_FN_GET_CAPS:
     899        {
     900            Log(("svcCall: SHCRGL_GUEST_FN_GET_CAPS\n"));
     901
     902            /* Verify parameter count and types. */
     903            if (cParms != SHCRGL_CPARMS_GET_CAPS)
     904            {
     905                rc = VERR_INVALID_PARAMETER;
     906            }
     907            else
     908            if (paParms[0].type != VBOX_HGCM_SVC_PARM_32BIT)
     909            {
     910                rc = VERR_INVALID_PARAMETER;
     911            }
     912            else
     913            {
     914                /* Execute the function. */
     915                rc = crVBoxServerClientGetCaps(u32ClientID, &paParms[0].u.uint32);
     916                AssertRC(rc);
    893917            }
    894918
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette