Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(447)

Side by Side Diff: ppapi/native_client/tests/ppapi_browser/ppb_graphics3d/ppapi_ppb_graphics3d.html

Issue 10290006: Update gl2.h and gl2ext.h headers from Khronos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html> 3 <html>
4 <!-- Copyright (c) 2011 Google Inc. All rights reserved. --> 4 <!-- Copyright (c) 2011 Google Inc. All rights reserved. -->
5 <head> 5 <head>
6 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> 6 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
7 <META HTTP-EQUIV="Expires" CONTENT="-1" /> 7 <META HTTP-EQUIV="Expires" CONTENT="-1" />
8 <script type="text/javascript" src="nacltest.js"></script> 8 <script type="text/javascript" src="nacltest.js"></script>
9 <script type="application/x-javascript"> 9 <script type="application/x-javascript">
10 //<![CDATA[ 10 //<![CDATA[
(...skipping 20 matching lines...) Expand all
31 }); 31 });
32 tester.addAsyncTest('PPB_Graphics3D::IsGraphics3D', function(test) { 32 tester.addAsyncTest('PPB_Graphics3D::IsGraphics3D', function(test) {
33 testAndAssertStatus(test, 'TestIsGraphics3D'); 33 testAndAssertStatus(test, 'TestIsGraphics3D');
34 }); 34 });
35 tester.addAsyncTest('glInitializePPAPI', function(test) { 35 tester.addAsyncTest('glInitializePPAPI', function(test) {
36 testAndAssertStatus(test, 'Test_glInitializePPAPI'); 36 testAndAssertStatus(test, 'Test_glInitializePPAPI');
37 }); 37 });
38 tester.addAsyncTest('Basic Setup', function(test) { 38 tester.addAsyncTest('Basic Setup', function(test) {
39 testAndAssertStatus(test, 'TestBasicSetup'); 39 testAndAssertStatus(test, 'TestBasicSetup');
40 }); 40 });
41 tester.addAsyncTest('Basic Extensions', function(test) {
42 testAndAssertStatus(test, 'TestBasicExtensions');
43 });
41 tester.addAsyncTest('PPB_Graphics3D::SwapBuffers', function(test) { 44 tester.addAsyncTest('PPB_Graphics3D::SwapBuffers', function(test) {
42 testAndAssertStatus(test, 'TestSwapBuffers', 'TestSwapCallback:PASSED'); 45 testAndAssertStatus(test, 'TestSwapBuffers', 'TestSwapCallback:PASSED');
43 }); 46 });
44 tester.addAsyncTest('PPB_Graphics3D::ResizeBuffers', function(test) { 47 tester.addAsyncTest('PPB_Graphics3D::ResizeBuffers', function(test) {
45 testAndAssertStatus(test, 'TestResizeBuffersWithoutDepthBuffer', 48 testAndAssertStatus(test, 'TestResizeBuffersWithoutDepthBuffer',
46 'TestResizeAndSwapCallback:PASSED'); 49 'TestResizeAndSwapCallback:PASSED');
47 }); 50 });
48 tester.addAsyncTest('PPB_Graphics3D::ResizeBuffers w/ Depth', function(test) { 51 tester.addAsyncTest('PPB_Graphics3D::ResizeBuffers w/ Depth', function(test) {
49 testAndAssertStatus(test, 'TestResizeBuffersWithDepthBuffer', 52 testAndAssertStatus(test, 'TestResizeBuffersWithDepthBuffer',
50 'TestResizeAndSwapCallback:PASSED'); 53 'TestResizeAndSwapCallback:PASSED');
(...skipping 23 matching lines...) Expand all
74 <script type="text/javascript"> 77 <script type="text/javascript">
75 //<![CDATA[ 78 //<![CDATA[
76 var tester = new Tester(); 79 var tester = new Tester();
77 setupTests(tester, $('test_nexe')); 80 setupTests(tester, $('test_nexe'));
78 tester.waitFor($('test_nexe')); 81 tester.waitFor($('test_nexe'));
79 tester.run(); 82 tester.run();
80 //]]> 83 //]]>
81 </script> 84 </script>
82 </body> 85 </body>
83 </html> 86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698