Answered by:
Is WebGL Supported on Windows Store apps ?

Question
-
As the title says, I want to create some 3D work on windows store....I would appreciate any kind of helpFriday, October 18, 2013 2:41 PM
Answers
-
Yes, WebGL support is new in Windows 8.1. See http://msdn.microsoft.com/en-us/library/ie/bg182648(v=vs.85).aspx for the IE11 documentation. You'll use the same HTML in your Windows Store app.
You can get a WebGL context as follows:
var canvas = document.createElement('canvas'); var ctx = canvas.getContext('experimental-webgl');
--Rob- Proposed as answer by Ahmed-Fouad Monday, October 21, 2013 7:53 AM
- Marked as answer by Matt SmallMicrosoft employee, Moderator Tuesday, October 22, 2013 12:04 PM
Friday, October 18, 2013 3:08 PMModerator -
yes in windows 8.1, check this sample that show how to build a city using webGL / threeJS
http://code.msdn.microsoft.com/build-3D-City-using-eb6f375b- Proposed as answer by Ahmed-Fouad Monday, October 21, 2013 7:53 AM
- Marked as answer by Matt SmallMicrosoft employee, Moderator Tuesday, October 22, 2013 12:04 PM
Monday, October 21, 2013 7:53 AM
All replies
-
Yes, WebGL support is new in Windows 8.1. See http://msdn.microsoft.com/en-us/library/ie/bg182648(v=vs.85).aspx for the IE11 documentation. You'll use the same HTML in your Windows Store app.
You can get a WebGL context as follows:
var canvas = document.createElement('canvas'); var ctx = canvas.getContext('experimental-webgl');
--Rob- Proposed as answer by Ahmed-Fouad Monday, October 21, 2013 7:53 AM
- Marked as answer by Matt SmallMicrosoft employee, Moderator Tuesday, October 22, 2013 12:04 PM
Friday, October 18, 2013 3:08 PMModerator -
yes in windows 8.1, check this sample that show how to build a city using webGL / threeJS
http://code.msdn.microsoft.com/build-3D-City-using-eb6f375b- Proposed as answer by Ahmed-Fouad Monday, October 21, 2013 7:53 AM
- Marked as answer by Matt SmallMicrosoft employee, Moderator Tuesday, October 22, 2013 12:04 PM
Monday, October 21, 2013 7:53 AM -
Hi,
I've also blogged about that and create a tutorial here: http://blogs.msdn.com/b/davrous/archive/2013/11/19/using-webgl-to-create-games-for-the-windows-store.aspx using babylon.js.
Regards,
David
Tuesday, November 26, 2013 5:58 PM