Commit a56c5b18 authored by Alexandre Julliard's avatar Alexandre Julliard

opengl32: Don't substitute OpenGL types that are already defined in wgl.h.

parent cf2b981c
......@@ -196,16 +196,7 @@ sub ConvertType($)
{
my ($type) = @_;
my %hash = ( "GLstring" => "const GLubyte *",
"GLintptrARB" => "INT_PTR",
"GLsizeiptrARB" => "INT_PTR",
"GLintptr" => "INT_PTR",
"GLsizeiptr" => "INT_PTR",
"GLhandleARB" => "unsigned int",
"GLcharARB" => "char",
"GLchar" => "char",
"GLhalfNV" => "unsigned short",
"GLvdpauSurfaceNV" => "INT_PTR",
my %hash = (
"struct _cl_context" => "void",
"struct _cl_event" => "void",
"HGLRC" => "struct wgl_context *",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment