diff options
author | Andreas Boll <[email protected]> | 2015-12-09 17:25:40 +0100 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2015-12-09 18:29:24 +0100 |
commit | f876346cdd2e5d0357ed260eec642beaaa389948 (patch) | |
tree | 1a6c0ebb9da372cd86c0c7672584371e8c4778c9 | |
parent | 0560e835f3836e16577bb7040f4e338512d65b99 (diff) |
mesa: Fix a typo in a comment
s/suports/supports/
Signed-off-by: Andreas Boll <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
-rw-r--r-- | src/mesa/main/extensions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.h b/src/mesa/main/extensions.h index 1615e1cc0a4..b5e03507231 100644 --- a/src/mesa/main/extensions.h +++ b/src/mesa/main/extensions.h @@ -88,7 +88,7 @@ enum { }; -/** Checks if the context suports a user-facing extension */ +/** Checks if the context supports a user-facing extension */ #define EXT(name_str, driver_cap, ...) \ static inline bool \ _mesa_has_##name_str(const struct gl_context *ctx) \ |