Commit a7c9c793 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Get rid of the WINED3DVECTOR typedef.

parent 18a7653c
...@@ -1525,12 +1525,12 @@ struct wined3d_color ...@@ -1525,12 +1525,12 @@ struct wined3d_color
float a; float a;
}; };
typedef struct _WINED3DVECTOR struct wined3d_vec3
{ {
float x; float x;
float y; float y;
float z; float z;
} WINED3DVECTOR; };
typedef struct _WINED3DMATRIX typedef struct _WINED3DMATRIX
{ {
...@@ -1553,8 +1553,8 @@ typedef struct _WINED3DLIGHT ...@@ -1553,8 +1553,8 @@ typedef struct _WINED3DLIGHT
struct wined3d_color Diffuse; struct wined3d_color Diffuse;
struct wined3d_color Specular; struct wined3d_color Specular;
struct wined3d_color Ambient; struct wined3d_color Ambient;
WINED3DVECTOR Position; struct wined3d_vec3 Position;
WINED3DVECTOR Direction; struct wined3d_vec3 Direction;
float Range; float Range;
float Falloff; float Falloff;
float Attenuation0; float Attenuation0;
......
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