PGM 和 WebGL 一般信息

发布于 2024-10-19 05:40:25 字数 176 浏览 1 评论 0原文

我真的需要一些帮助。我读过,我检查过的许多网站都说同样的事情——WebGL 使用画布。

然而,我的问题是——即使 OpenGL 也使用 canvas 元素。 WebGL 有何不同?

另外,如果 PGM 使用画布,默认情况下它是 WebGL 吗?

如果这看起来是个愚蠢的问题,我很抱歉。 :)

I really could use some help here. I've read up and many of the sites I've checked all say the same thing -- that WebGL uses canvas.

However, my qustion is -- even OpenGL uses the canvas element. What makes WebGL any different?

Also, if a PGM uses canvas, is it by default a WebGL?

I'm sorry if this seems like a dumb question. :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原来是傀儡 2024-10-26 05:40:25

画布只是 DOM 中 JS 可以使用上下文进行绘制的东西。您可以使用 HTML5 引入的 2D 上下文,也可以使用 WebGL 上下文。您可以根据上下文将事物绘制到画布上。

调用 canvas.getContext 时,浏览器必须支持上下文类型才能正常工作。有关更多信息,请参阅 MDC 指南

A canvas is just something in the DOM that JS can draw on using a context. You can use a 2D context, which is what HTML5 introduced, or you can use the WebGL context. It is with the context that you draw things with onto the canvas.

The browser has to have support for the context type when calling canvas.getContext in order for it to work. See the MDC guide for a bit more info.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文