惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
S
Schneier on Security
The Hacker News
The Hacker News
P
Proofpoint News Feed
Spread Privacy
Spread Privacy
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
I
Intezer
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Schneier on Security
Schneier on Security
Security Latest
Security Latest
AWS News Blog
AWS News Blog
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
博客园 - 叶小钗
The Last Watchdog
The Last Watchdog
O
OpenAI News
月光博客
月光博客
Hacker News: Ask HN
Hacker News: Ask HN
阮一峰的网络日志
阮一峰的网络日志
S
Security @ Cisco Blogs
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Latest news
Latest news
P
Palo Alto Networks Blog
Last Week in AI
Last Week in AI
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
PCI Perspectives
PCI Perspectives
博客园 - 聂微东
SecWiki News
SecWiki News
宝玉的分享
宝玉的分享
Forbes - Security
Forbes - Security
H
Heimdal Security Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Troy Hunt's Blog
博客园 - 三生石上(FineUI控件)
Application and Cybersecurity Blog
Application and Cybersecurity Blog
罗磊的独立博客
WordPress大学
WordPress大学
D
Darknet – Hacking Tools, Hacker News & Cyber Security

WebGL Fundamentals

WebGL Using 2 or More Textures WebGL Implementing DrawImage WebGL 2D Matrices WebGL Implementing A Matrix Stack WebGL 2D Rotation WebGL 2D Scale WebGL 2D Translation WebGL - Rasterization vs 3D libraries WebGL 3D - Cameras WebGL 3D Geometry - Lathe WebGL 3D - Directional Lighting WebGL 3D - Point Lighting WebGL 3D - Normal Mapping WebGL 3D - Spot Lighting WebGL - Orthographic 3D WebGL 3D Perspective Correct Texture Mapping WebGL 3D Perspective WebGL Textures WebGL and Alpha WebGL - Animation WebGL Anti-Patterns WebGL Attributes WebGL Boilerplate WebGL - Cross Origin Images WebGL Cross Platform Issues WebGL Cubemaps WebGL 3D - Data Textures WebGL - Drawing Multiple Things WebGL Drawing Without Data WebGL Environment Maps (reflections) WebGL Fog WebGL Framebuffers WebGL Fundamentals WebGL GPGPU WebGL How It Works WebGL Image Processing Continued WebGL Image Processing WebGL Indexed Vertices WebGL Optimization - Instanced Drawing WebGL - Less Code, More Fun WebGL Load Obj with Mtl WebGL Load Obj WebGL Matrices vs Math Matrices WebGL Multiple Views, Multiple Canvases WebGL Picking WebGL Planar and Perspective Projection Mapping WebGL Post Processing WebGL Precision Issues WebGL Pulling Vertices Accessing textures by pixel coordinate in WebGL2 A simple way to show the load on the GPU's vertex and fragment processing? Apply a displacement map and specular map Can anyone explain what this GLSL fragment shader is doing? Can I mute the warning about vertex attrib 0 being disabled? Create image warping effect in WebGL Creating a smudge/liquify effect How to draw Depth Sprites Determine min/max values for the entire image Don't blend a polygon that crosses itself Drawing 2D image with depth map to achieve pseudo-3D effect Drawing a heightmap Drawing layers with different points Drawing Many different models in a single draw call Drawing textured sprites with instanced drawing Efficient particle system in javascript? (WebGL) Emulating palette based graphics in WebGL FPS-like camera movement with basic matrix transformations Get the size of a point for collision checking GLSL shader to support coloring and texturing How can I compute for 500 points which of 1000 line segments is nearest to each point? How can I create a 16bit historgram of 16bit data How can I get all the uniforms and uniformBlocks How can I move the perspective vanishing point from the center of the canvas? How to Achieve Moving Line with Trail Effects How to bind an array of textures to a WebGL shader uniform? How to blend colors across 2 triangles How to combine more text drawing into fewer draw calls How to control the color between vertices How to create a torus How to detect clipped triangles in the framgment shader How to determine the average brightness in a scene? How to draw correctly textured trapezoid polygons How to fade the drawing buffer How to figure out how much GPU work to do without crashing WebGL How to get audio data into a shader How to get code completion for WebGL in Visual Studio Code How to get the 3d coordinates of a mouse click How to get pixelize effect in webgl? How to implement zoom from mouse in 2D WebGL How to import a heightmap in WebGL How to load images in the background with no jank How to make a smudge brush tool How to make WebGL canvas transparent How to optimize rendering a UI How to prevent texture bleeding with a texture atlas How to process particle positions How to read a single component with readPixels How to render large scale images like 32000x32000 How to simulate a 3D texture in WebGL How to support both WebGL and WebGL2
WebGL Points, Lines, and Triangles
WebGLFundame · 2025-02-26 · via WebGL Fundamentals

The majority of this site draws everything with triangles. This is arguably the normal thing that 99% of WebGL programs do. But, for the sake of completeness let's go over a few other cases.

As mentioned in the first article WebGL draws points, lines, and triangles. It does this when we call gl.drawArrays or gl.drawElements. We provide a vertex shader that outputs clip space coordinates and then, based on the first argument to gl.drawArrays or gl.drawElements WebGL will draw points, lines, or triangles.

The valid values for the first argument to gl.drawArrays and gl.drawElements are

  • POINTS

    For each clip space vertex output by the vertex shader draw a square centered over that point. The size of the square is specified by setting a special variable gl_PointSize inside the vertex shader to the size we want for this square in pixels.

    Note: The maximum (and minimum) size that square can be is implementation dependent which you can query with

      const [minSize, maxSize] = gl.getParameter(gl.ALIASED_POINT_SIZE_RANGE);
    

    Also see another issue here.

  • LINES

    For each 2 clip space vertices output by the vertex shader draw a line connecting the 2 points. If we had points A,B,C,D,E,F then we'd get 3 lines.

    The spec says we can set the thickness of this line by calling gl.lineWidth and specifying a width in pixels. In reality though the maximum width is implementation dependent and for the majority of implementations the maximum width is 1.

      const [minSize, maxSize] = gl.getParameter(gl.ALIASED_LINE_WIDTH_RANGE);
    

    This is mostly because values > 1 have been deprecated in core Desktop OpenGL.

  • LINE_STRIP

    For each clip space vertex output by the vertex shader draw a line from the previous point output by the vertex shader.

    So, if you output clip space vertices A,B,C,D,E,F you'll get 5 lines.

  • LINE_LOOP

    This is the same as LINE_STRIP example one more line is drawn from the last point to the first point.

  • TRIANGLES

    For every 3 clip space vertices output by the vertex shader draw a triangle from the 3 points. This is the most used mode.

  • TRIANGLE_STRIP

    For each clip space vertex output by the vertex shader draw a triangle from the last 3 vertices. In other words If you output 6 points A,B,C,D,E,F then 4 triangles will be drawn. A,B,C then B,C,D then C,D,E then D,E,F

  • TRIANGLE_FAN

    For each clip space vertex output by the vertex shader draw a triangle from the first vertex and the last 2 vertices. In other words if you output 6 points A,B,C,D,E,F then 4 triangles will be drawn. A,B,C then A,C,D then A,D,E and finally A,E,F

I'm sure some others will disagree but in my experience TRIANGLE_FAN and TRIANGLE_STRIP are best avoided. They fit only a few exceptional cases and the extra code for handling those cases is not worth just doing everything in triangles in the first place. In particular maybe you have tools to build normals or generate texture coordinates or do any other number of things with vertex data. By sticking to just TRIANGLES your functions will just work. As soon as you start adding in TRIANGLE_FAN and TRIANGLE_STRIP you need more functions to handle more cases. You're free to disagree and do whatever you want. I'm just saying that's my experience and the experience of a few AAA game devs I've asked.

Similarly LINE_LOOP and LINE_STRIP are not so useful and have similar issues. Like TRIANGLE_FAN and TRIANGLE_STRIP the situations to use them are rare. For example you might think you want to draw 4 connected lines each made from 4 points.

If you use LINE_STRIP you'd need to make 4 calls to gl.drawArrays and more calls to setup the attributes for each line whereas if you just use LINES then you can insert all the points needed to draw all 4 sets of lines with a single call to gl.drawArrays. That will be much much faster.

Further, LINES can be great to use for debugging or simple effects but given their 1 pixel width limit on most platforms it's often the wrong solution. If you want to draw a grid for a graph or show the outlines of polygons in a 3d modeling program using LINES might be great but if you want to draw structured graphics like SVG or Adobe Illustrator then it won't work and you have to render your lines some other way, usually from triangles.