diff options
author | Vinson Lee <vlee@freedesktop.org> | 2014-08-06 16:51:29 -0700 |
---|---|---|
committer | Vinson Lee <vlee@freedesktop.org> | 2014-08-07 22:49:57 -0700 |
commit | 0f938aa00f34d5dd5577d3ec65028faa4977f5ff (patch) | |
tree | 11fe66b7ea5b78a35a8f816582da6b3fad02d530 /tests/egl | |
parent | 0f69c63928390e6ef4d27e49efd95fb8e2c546e5 (diff) |
egl-create-context-valid-flag-debug-gles: Add missing break.
Fixes Coverity "Missing break in switch" defect.
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'tests/egl')
-rw-r--r-- | tests/egl/spec/egl_khr_create_context/valid-flag-debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/egl/spec/egl_khr_create_context/valid-flag-debug.c b/tests/egl/spec/egl_khr_create_context/valid-flag-debug.c index 2c25d4847..27033357d 100644 --- a/tests/egl/spec/egl_khr_create_context/valid-flag-debug.c +++ b/tests/egl/spec/egl_khr_create_context/valid-flag-debug.c @@ -126,6 +126,7 @@ try_debug_flag(EGLenum context_api, EGLenum context_bit) * glGetIntegerv(). */ dispatch_api = PIGLIT_DISPATCH_ES2; + break; case EGL_OPENGL_ES2_BIT: case EGL_OPENGL_ES3_BIT_KHR: dispatch_api = PIGLIT_DISPATCH_ES2; |