You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
495 B
12 lines
495 B
|
|
#ifndef __SRVSIZE_H__
|
|
#define __SRVSIZE_H__
|
|
|
|
#ifndef _CLIENTSIDE_
|
|
GLint __glReadPixels_size ( GLenum format, GLenum type, GLint w, GLint h);
|
|
GLint __glGetTexImage_size ( GLenum target, GLint level, GLenum format, GLenum type );
|
|
GLint __glDrawPixels_size ( GLenum Format, GLenum Type, GLint Width, GLint Height );
|
|
GLint __glTexImage_size ( GLint Level, GLint Components, GLsizei Width, GLsizei Height, GLint Border, GLenum Format, GLenum Type );
|
|
#endif
|
|
|
|
#endif /* !__SRVSIZE_H__ */
|