~ubuntu-branches/ubuntu/precise/virtualbox/precise-updates

« back to all changes in this revision

Viewing changes to src/VBox/HostServices/SharedOpenGL/render/renderspu.c

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-07-04 13:02:31 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20110704130231-l843es6wqhx614n7
Tags: 4.0.10-dfsg-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add Apport hook.
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Drop *-source packages.
* Add the Modaliases control field manually for maximum backportability.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1076
1076
{
1077
1077
    renderspu_SystemBindFramebufferEXT(target, framebuffer);
1078
1078
}
 
1079
 
 
1080
void renderspuCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type)
 
1081
{
 
1082
    renderspu_SystemCopyPixels(x, y, width, height, type);
 
1083
}
 
1084
 
 
1085
void renderspuGetIntegerv(GLenum pname, GLint * params)
 
1086
{
 
1087
    renderspu_SystemGetIntegerv(pname, params);
 
1088
}
 
1089
 
 
1090
void renderspuDrawBuffer(GLenum mode)
 
1091
{
 
1092
    renderspu_SystemDrawBuffer(mode);
 
1093
}
 
1094
 
 
1095
void renderspuReadBuffer(GLenum mode)
 
1096
{
 
1097
    renderspu_SystemReadBuffer(mode);
 
1098
}
1079
1099
# endif
1080
1100
#endif
1081
1101
 
1120
1140
    FILLIN( "Flush", renderspuFlush );
1121
1141
    FILLIN( "Finish", renderspuFinish );
1122
1142
    FILLIN( "BindFramebufferEXT", renderspuBindFramebufferEXT );
 
1143
    FILLIN( "CopyPixels", renderspuCopyPixels );
 
1144
    FILLIN( "GetIntegerv", renderspuGetIntegerv );
 
1145
    FILLIN( "ReadBuffer", renderspuReadBuffer );
 
1146
    FILLIN( "DrawBuffer", renderspuDrawBuffer );
1123
1147
# endif
1124
1148
#endif
1125
1149
    return i;