diff options
author | Brian Paul <[email protected]> | 2015-10-12 10:53:59 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-10-13 08:28:23 -0600 |
commit | 7f67bfaa7471ac297ec86be122f251b271cea2ca (patch) | |
tree | 750e5fb76dc6f09b5a2ceb383d451c22325e3950 /src/mesa/vbo/vbo_exec_api.c | |
parent | 3491ec5930b15d5417bdf17b2a70fedaada969f1 (diff) |
vbo: add assertion in ATTR_UNION macro
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_exec_api.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec_api.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_exec_api.c b/src/mesa/vbo/vbo_exec_api.c index 9de2886c499..3943523b702 100644 --- a/src/mesa/vbo/vbo_exec_api.c +++ b/src/mesa/vbo/vbo_exec_api.c @@ -423,6 +423,9 @@ vbo_exec_fixup_vertex(struct gl_context *ctx, GLuint attr, GLuint newSize, GLenu do { \ struct vbo_exec_context *exec = &vbo_context(ctx)->exec; \ int sz = (sizeof(C) / sizeof(GLfloat)); \ + \ + assert(sz == 1 || sz == 2); \ + \ if (unlikely(!(ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT))) { \ vbo_exec_BeginVertices(ctx); \ } \ |