diff options
Diffstat (limited to 'src/VBox/GuestHost/OpenGL/packer/pack_feedback.c')
-rw-r--r-- | src/VBox/GuestHost/OpenGL/packer/pack_feedback.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/VBox/GuestHost/OpenGL/packer/pack_feedback.c b/src/VBox/GuestHost/OpenGL/packer/pack_feedback.c new file mode 100644 index 00000000..159428ef --- /dev/null +++ b/src/VBox/GuestHost/OpenGL/packer/pack_feedback.c @@ -0,0 +1,46 @@ +/* Copyright (c) 2001, Stanford University + * All rights reserved + * + * See the file LICENSE.txt for information on redistributing this software. + */ + +#include "packer.h" +#include "cr_error.h" + +void PACK_APIENTRY crPackFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer ) +{ + (void) size; + (void) type; + (void) buffer; + + crWarning("Packer wont pass FeedbackBuffer()\n"); + crWarning("Try using the feedbackspu\n"); +} + +void PACK_APIENTRY crPackFeedbackBufferSWAP( GLsizei size, GLenum type, GLfloat *buffer ) +{ + (void) size; + (void) type; + (void) buffer; + + crWarning("Packer wont pass FeedbackBuffer()\n"); + crWarning("Try using the feedbackspu\n"); +} + +void PACK_APIENTRY crPackSelectBuffer( GLsizei size, GLuint *buffer ) +{ + (void) size; + (void) buffer; + + crWarning("Packer wont pass SelectBuffer()\n"); + crWarning("Try using the feedbackspu\n"); +} + +void PACK_APIENTRY crPackSelectBufferSWAP( GLsizei size, GLuint *buffer ) +{ + (void) size; + (void) buffer; + + crWarning("Packer wont pass SelectBuffer()\n"); + crWarning("Try using the feedbackspu\n"); +} |