Commit 0057357f authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

wined3d: Move struct wined3d_rendertarget_info to wined3d_gl.h.

parent ca954a05
......@@ -550,4 +550,18 @@ struct wined3d_pipeline_statistics_query
BOOL started;
};
struct wined3d_gl_view
{
GLenum target;
GLuint name;
};
struct wined3d_rendertarget_info
{
struct wined3d_gl_view gl_view;
struct wined3d_resource *resource;
unsigned int sub_resource_idx;
unsigned int layer_count;
};
#endif /* __WINE_WINED3D_GL */
......@@ -1882,29 +1882,15 @@ struct wined3d_query
bool poll_in_cs;
};
#include "wined3d_gl.h"
#define WINED3D_QUERY_POOL_SIZE 256
struct wined3d_gl_view
{
GLenum target;
GLuint name;
};
struct wined3d_range
{
unsigned int offset;
unsigned int size;
};
struct wined3d_rendertarget_info
{
struct wined3d_gl_view gl_view;
struct wined3d_resource *resource;
unsigned int sub_resource_idx;
unsigned int layer_count;
};
#include "wined3d_gl.h"
struct wined3d_fb_state
{
......
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