Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-23885] Do not disable HW acceleration for WebView #8587

Merged
merged 1 commit into from Nov 7, 2016

Conversation

garymathews
Copy link
Contributor

  • Do not disable hardware acceleration for Titanium.UI.WebView
  • Hardware acceleration is needed for HTML5 embedded video to decode
TEST CASE
var win = Titanium.UI.createWindow({layout : 'vertical'}),
	webView = Titanium.UI.createWebView({
		url : 'http://edition.cnn.com/videos',
		borderRadius : 1, // this causes HW acceleration to be disabled
		enableZoomControls : false,
		width: Ti.UI.FILL,
		height: Ti.UI.FILL
	});

win.add(webView);
win.open();

JIRA Ticket

@fritzzetik
Copy link

fritzzetik commented Nov 7, 2016

So if I remove borderRadius : 1, (as it was advised by support to put it in there) from my code it would work in 5.5.1 GA?

@garymathews
Copy link
Contributor Author

@fritzzetik Yes, I believe so

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants