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

Unified Diff: content/test/gpu/gpu_tests/depth_capture_integration_test.py

Issue 2556943002: WebGL2 & 16-bit depth capture: Upload video to GL_RED float texture. (Closed)
Patch Set: --enable-es3-apis is required for WebGL2 on Android. Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/data/media/getusermedia-depth-capture.html ('k') | media/renderers/skcanvas_video_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/gpu_tests/depth_capture_integration_test.py
diff --git a/content/test/gpu/gpu_tests/depth_capture_integration_test.py b/content/test/gpu/gpu_tests/depth_capture_integration_test.py
index 5cfafc24a5609c61870d7e48846690cca2ead9d7..86805b0d8219bfb5a67261c2b48861af794756d4 100644
--- a/content/test/gpu/gpu_tests/depth_capture_integration_test.py
+++ b/content/test/gpu/gpu_tests/depth_capture_integration_test.py
@@ -53,10 +53,9 @@ class DepthCaptureIntegrationTest(gpu_integration_test.GpuIntegrationTest):
@classmethod
def CustomizeOptions(cls):
options = cls._finder_options.browser_options
- options.AppendExtraBrowserArgs(
- '--disable-domain-blocking-for-3d-apis')
- options.AppendExtraBrowserArgs(
- '--use-fake-ui-for-media-stream')
+ options.AppendExtraBrowserArgs('--disable-domain-blocking-for-3d-apis')
+ options.AppendExtraBrowserArgs('--enable-es3-apis')
+ options.AppendExtraBrowserArgs('--use-fake-ui-for-media-stream')
options.AppendExtraBrowserArgs(
'--use-fake-device-for-media-stream=device-count=2')
# Required for about:gpucrash handling from Telemetry.
@@ -67,7 +66,9 @@ class DepthCaptureIntegrationTest(gpu_integration_test.GpuIntegrationTest):
tests = (('DepthCapture_depthStreamToRGBAUint8Texture',
'getusermedia-depth-capture.html?query=RGBAUint8'),
('DepthCapture_depthStreamToRGBAFloatTexture',
- 'getusermedia-depth-capture.html?query=RGBAFloat'))
+ 'getusermedia-depth-capture.html?query=RGBAFloat'),
+ ('DepthCapture_depthStreamToR32FloatTexture',
+ 'getusermedia-depth-capture.html?query=R32Float'))
for t in tests:
yield (t[0], t[1], ('_' + t[0]))
« no previous file with comments | « content/test/data/media/getusermedia-depth-capture.html ('k') | media/renderers/skcanvas_video_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698