diff options
author | Brian <brian@yutani.localnet.net> | 2007-03-13 16:31:30 -0600 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-03-13 16:31:30 -0600 |
commit | 5186529e57bfab6d70a94329e8265e64095b328e (patch) | |
tree | 31b1ae42c1b80759a592d79e4f5a3f93beb2a320 /src | |
parent | fdf513e07ab5d157dab7b3c776bc75b064cdb2a9 (diff) |
remove bogus assertion
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/shader/prog_parameter.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/shader/prog_parameter.c b/src/mesa/shader/prog_parameter.c index 14b272c2c5..4633015de2 100644 --- a/src/mesa/shader/prog_parameter.c +++ b/src/mesa/shader/prog_parameter.c @@ -88,7 +88,6 @@ _mesa_add_parameter(struct gl_program_parameter_list *paramList, const GLuint sz4 = (size + 3) / 4; /* no. of new param slots needed */ assert(size > 0); - assert(size <= 16); /* XXX anything larger than a matrix??? */ if (oldNum + sz4 > paramList->Size) { /* Need to grow the parameter list array (alloc some extra) */ |