We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e0afef commit e705eebCopy full SHA for e705eeb
Platforms/Graphics/.BlazorGL/ConcreteGraphicsAdapter.cs
@@ -102,12 +102,11 @@ public override bool Platform_IsProfileSupported(GraphicsProfile graphicsProfile
102
case GraphicsProfile.Reach:
103
return true;
104
case GraphicsProfile.HiDef:
105
- return false;
106
- //using (OffscreenCanvas oc = new OffscreenCanvas(1, 1))
107
- //{
108
- // IWebGL2RenderingContext webgl2 = oc.GetContext<IWebGL2RenderingContext>();
109
- // return (webgl2 != null);
110
- //}
+ using (OffscreenCanvas oc = new OffscreenCanvas(1, 1))
+ {
+ IWebGL2RenderingContext webgl2 = oc.GetContext<IWebGL2RenderingContext>();
+ return (webgl2 != null);
+ }
111
case GraphicsProfile.FL10_0:
112
return false;
113
case GraphicsProfile.FL10_1:
0 commit comments