From 1f18523edfb07455d5c8196170a513db7b3cae9f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 28 Sep 2017 13:39:32 +1000 Subject: Cleanup: switch fall-through warning --- source/blender/python/generic/bgl.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/python') diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c index ff6345cb6d6..9cf00192db5 100644 --- a/source/blender/python/generic/bgl.c +++ b/source/blender/python/generic/bgl.c @@ -485,8 +485,10 @@ static int gl_buffer_type_from_py_format_char(char *typestr) case 'b': case 'h': if (!byte_num) return GL_BYTE; + ATTR_FALLTHROUGH; case 'i': if (!byte_num) return GL_SHORT; + ATTR_FALLTHROUGH; case 'l': if (!byte_num || byte_num == '4') return GL_INT; if (byte_num == '1') return GL_BYTE; @@ -494,6 +496,7 @@ static int gl_buffer_type_from_py_format_char(char *typestr) break; case 'f': if (!byte_num) return GL_FLOAT; + ATTR_FALLTHROUGH; case 'd': if (!byte_num || byte_num == '8') return GL_DOUBLE; if (byte_num == '4') return GL_FLOAT; -- cgit v1.2.3