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

« back to all changes in this revision

Viewing changes to src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa.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:
200
200
    cocoaBindFramebufferEXT(target, framebuffer);
201
201
}
202
202
 
 
203
void renderspu_SystemCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type)
 
204
{
 
205
    cocoaCopyPixels(x, y, width, height, type);
 
206
}
 
207
 
 
208
void renderspu_SystemGetIntegerv(GLenum pname, GLint * params)
 
209
{
 
210
    cocoaGetIntegerv(pname, params);
 
211
}
 
212
 
 
213
void renderspu_SystemReadBuffer(GLenum mode)
 
214
{
 
215
    cocoaReadBuffer(mode);
 
216
}
 
217
 
 
218
void renderspu_SystemDrawBuffer(GLenum mode)
 
219
{
 
220
    cocoaDrawBuffer(mode);
 
221
}
 
222