diff options
author | Dylan Baker <[email protected]> | 2018-09-14 12:57:32 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2020-04-21 11:09:04 -0700 |
commit | 8e3696137f2cb7b4f5a3824f26186ecbb06f9282 (patch) | |
tree | 4494df8d138aaf2bab2feafa832f68e9fdf9bfb1 /src/mesa/main/texstorage.c | |
parent | 289f02d1d5990e052e21eb250f6d40b47d6eb12f (diff) |
remove final imports.h and imports.c bits
This moves the fi_types to a new mesa_private.h and removes the
imports.c file. The vast majority of this patch is just removing
pound includes of imports.h and fixing up the recursive includes.
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Kristian H. Kristensen <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3024>
Diffstat (limited to 'src/mesa/main/texstorage.c')
-rw-r--r-- | src/mesa/main/texstorage.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/texstorage.c b/src/mesa/main/texstorage.c index 5f2d78e07d4..932308c6471 100644 --- a/src/mesa/main/texstorage.c +++ b/src/mesa/main/texstorage.c @@ -30,7 +30,7 @@ #include "glheader.h" #include "context.h" #include "enums.h" -#include "util/imports.h" + #include "macros.h" #include "teximage.h" #include "texobj.h" @@ -744,7 +744,7 @@ _mesa_TextureStorage1DEXT(GLuint texture, GLenum target, GLsizei levels, GLsizei width) { GET_CURRENT_CONTEXT(ctx); - /* 'texture' must always be initialized, even if the call to + /* 'texture' must always be initialized, even if the call to * glTextureStorage1DEXT will generate an error. */ if (!_mesa_lookup_or_create_texture(ctx, target, texture, false, true, @@ -761,7 +761,7 @@ _mesa_TextureStorage2DEXT(GLuint texture, GLenum target, GLsizei levels, GLsizei width, GLsizei height) { GET_CURRENT_CONTEXT(ctx); - /* 'texture' must always be initialized, even if the call to + /* 'texture' must always be initialized, even if the call to * glTextureStorage2DEXT will generate an error. */ if (!_mesa_lookup_or_create_texture(ctx, target, texture, false, true, @@ -778,7 +778,7 @@ _mesa_TextureStorage3DEXT(GLuint texture, GLenum target, GLsizei levels, GLsizei width, GLsizei height, GLsizei depth) { GET_CURRENT_CONTEXT(ctx); - /* 'texture' must always be initialized, even if the call to + /* 'texture' must always be initialized, even if the call to * glTextureStorage3DEXT will generate an error. */ if (!_mesa_lookup_or_create_texture(ctx, target, texture, false, true, |