blob: 159428efcd2eaa94c335bfab1b5990b5fd5c1b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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");
}
|