| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2010, Google Inc. | 2 * Copyright 2010, Google Inc. |
| 3 * All rights reserved. | 3 * All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 var paramObjects = [ | 92 var paramObjects = [ |
| 93 transform, | 93 transform, |
| 94 drawElement, | 94 drawElement, |
| 95 element, | 95 element, |
| 96 material, | 96 material, |
| 97 effect, | 97 effect, |
| 98 o3d.Param.SAS | 98 o3d.Param.SAS |
| 99 ]; | 99 ]; |
| 100 | 100 |
| 101 material.effect.searchForParams(paramObjects); | 101 material.effect.searchForParams_(paramObjects); |
| 102 element.render(); | 102 element.render(); |
| 103 } | 103 } |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 | 106 |
| OLD | NEW |