diff options
author | Corbin Simpson <[email protected]> | 2009-12-02 12:16:19 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-12-02 12:58:15 -0800 |
commit | 4f77b0103d5f150845300ee8bddcef20d11a9820 (patch) | |
tree | ddf5593941e213ed4319e037de16d548454c4977 /src/gallium/drivers/r300/r300_screen.h | |
parent | dad193d516422a9e330e58148822735b0decb8da (diff) |
r300g, radeong: De-specialize r300_winsys into radeon_winsys.
There's like five good reasons for this, I swear.
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.h b/src/gallium/drivers/r300/r300_screen.h index 1ce5ff3904b..2217988addd 100644 --- a/src/gallium/drivers/r300/r300_screen.h +++ b/src/gallium/drivers/r300/r300_screen.h @@ -27,7 +27,7 @@ #include "r300_chipset.h" -struct r300_winsys; +struct radeon_winsys; struct r300_screen { /* Parent class */ @@ -58,6 +58,6 @@ r300_transfer(struct pipe_transfer* transfer) } /* Creates a new r300 screen. */ -struct pipe_screen* r300_create_screen(struct r300_winsys* r300_winsys); +struct pipe_screen* r300_create_screen(struct radeon_winsys* radeon_winsys); #endif /* R300_SCREEN_H */ |