reactos/modules/rostests/apitests/opengl32/testlist.c
Jérôme Gardou bb8a3f4e09 [APITESTS] Add tests for opengl32.dll
Ensure that our SW implementation exposes the same extensions and the same pixel formats than windows.
2019-01-19 14:23:54 +01:00

16 lines
300 B
C

#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
extern void func_sw_extensions(void);
extern void func_sw_pixelformat(void);
const struct test winetest_testlist[] =
{
{ "sw_extensions", func_sw_extensions },
{ "sw_pixelformat", func_sw_pixelformat },
{ 0, 0 }
};