diff options
author | Marek Olšák <[email protected]> | 2018-06-21 22:16:07 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-06-25 18:33:58 -0400 |
commit | 2d64a68c6f38b6dab8f0d2b8968e009c25bcc9f5 (patch) | |
tree | bc4f6fa0b10c01713ad0bee290a2fce454afa1c2 /src/gallium/drivers/radeonsi/si_texture.c | |
parent | 218e133695301acdfddc48d7c1d0120e8a8c1dbd (diff) |
radeonsi: rename r600_surface -> si_surface
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_texture.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_texture.c b/src/gallium/drivers/radeonsi/si_texture.c index cba758aec2e..cb6cf196148 100644 --- a/src/gallium/drivers/radeonsi/si_texture.c +++ b/src/gallium/drivers/radeonsi/si_texture.c @@ -2019,7 +2019,7 @@ struct pipe_surface *si_create_surface_custom(struct pipe_context *pipe, unsigned width0, unsigned height0, unsigned width, unsigned height) { - struct r600_surface *surface = CALLOC_STRUCT(r600_surface); + struct si_surface *surface = CALLOC_STRUCT(si_surface); if (!surface) return NULL; |