diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-06-02 10:16:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-06-02 10:16:56 -0700 |
commit | 148de83015c295d185408fa0d4dfe15d74d33e63 (patch) | |
tree | c736ef680ea3f2417654cc8ee80906971eb212e1 /tests/runner.py | |
parent | 5f8fbb3431824f6c685ab51358dd97e91e14e828 (diff) |
scan indices when necessary to figure out what vertex data to push, when no buffers are being used. allows use of vertex data from arbitrary parts of the vertex data range, not just the beginning
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index b48e533f..0a07a0cb 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7669,7 +7669,10 @@ elif 'browser' in str(sys.argv): self.btest('cubegeom_normal.c', expected='752917084') def test_cubegeom_normal_dap(self): # draw is given a direct pointer to clientside memory, no element array buffer - self.btest('cubegeom_normal_dap.c', expected='752917084', args=['-s', 'GL_DEBUG=1']) + self.btest('cubegeom_normal_dap.c', expected='752917084') + + def test_cubegeom_normal_dap_far(self): # indices do nto start from 0 + self.btest('cubegeom_normal_dap_far.c', expected='752917084') def test_cubegeom_mt(self): self.btest('cubegeom_mt.c', expected='-457159152') # multitexture |