浏览代码

progs/tests: Fix MSVC build.

Signed-off-by: Brian Paul <brianp@vmware.com>
tags/mesa_7_6_1_rc1
Vinson Lee 16 年前
父节点
当前提交
60c328db2d
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5
    1
      progs/tests/shader_api.c

+ 5
- 1
progs/tests/shader_api.c 查看文件

@@ -8,6 +8,10 @@
#include <GL/glew.h>
#include <GL/glut.h>

#ifndef APIENTRY
#define APIENTRY
#endif

static void assert_test(const char *file, int line, int cond, const char *msg)
{
if (!cond)
@@ -42,7 +46,7 @@ static void assert_error_test(const char *file, int line, GLenum expect)

#define assert_error(err) assert_error_test(__FILE__, __LINE__, (err))

static void check_status(GLuint id, GLenum pname, void (*query)(GLuint, GLenum, GLint *))
static void check_status(GLuint id, GLenum pname, void (APIENTRY *query)(GLuint, GLenum, GLint *))
{
GLint status;


正在加载...
取消
保存