diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-26 14:40:37 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-26 14:40:37 -0700 |
commit | a6d653dcbbee3158f9ea7b284bdeb1a8432f0fcb (patch) | |
tree | b1d493ec7b95cb5f070b9f588b1abeccad17eb27 /glsl_types.h | |
parent | 40176e249f72b6090204611873b19aed3da67c71 (diff) |
Replace remaining uses of is_numeric_base_type with glsl_type::is_numeric
Diffstat (limited to 'glsl_types.h')
-rw-r--r-- | glsl_types.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/glsl_types.h b/glsl_types.h index 9af8e9d3f8..64c6cef669 100644 --- a/glsl_types.h +++ b/glsl_types.h @@ -39,9 +39,6 @@ #define GLSL_TYPE_VOID 8 #define GLSL_TYPE_ERROR 9 -#define is_numeric_base_type(b) \ - (((b) >= GLSL_TYPE_UINT) && ((b) <= GLSL_TYPE_FLOAT)) - #define is_error_type(t) ((t)->base_type == GLSL_TYPE_ERROR) enum glsl_sampler_dim { |