我已经尝试过各种来源的说明,但没有取得任何成功。我对WebGL和OpenGL都很陌生。我提供了这段代码,并且从那以后一直在进行调整。如果有人有任何他们想要分享的资源,那么我可以回答我自己的问题,我将不胜感激!
这是我的HTML:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<!--Include A/S WebGL support libraries-->
<script type="text/javascript" src="../Common/webgl-utils.js"></script>
<script type="text/javascript" src="../Common/initShaders.js"></script>
<script type="text/javascript" src="../Common/MV.js"></script>
<script type="text/javascript" src="../Common/webgl-debug.js"></script>
<script type="text/javascript" src="assignment1.js"></script>
<script id="vertex-shader" type="x-shader/x-vertex">
// GLSL vertex shader code
attribute vec4 vPosition;
void main()
{
gl_Position = vPosition;
}
</script>
<script id="fragment-shader" type="x-shader/x-fragment">
// GLSL fragment shader code
precision mediump float;
uniform float u_time;
void main()
{
gl_FragColor = vec4( abs(sin(u_time)), 1.0, 1.0, 1.0 );
}
</script>
<canvas id="gl-canvas" width="512" height=" 512">>
Oops ... your browser doesn't support the HTML5 canvas element
</canvas>
</body>
</html>
这是我的JavaScript:
var gl;
var points;
window.onload = function init(){
var canvas = document.getElementById( "gl-canvas" );
// gl = WebGLUtils.setupWebGL( canvas ); // More efficient
gl = WebGLDebugUtils.makeDebugContext( canvas.getContext("webgl") ); // For debugging
if ( !gl ) { alert( "WebGL isn't available" );
}
// Four 2D Vertices using Angel/Shreiner utility class vac2
var vertices = [
vec2(-0.5, -0.5),
vec2(-0.5, 0.5),
vec2(0.5, 0.5),
vec2(0.5, -0.5)
];
// Configure WebGL
gl.viewport(0, 0, canvas.width, canvas.height);
gl.clearColor(0.0, 0.0, 0.0, 0.0);
// Load shaders and initialize attribute buffers using A/S utility initShaders
var program = initShaders( gl, "vertex-shader", "fragment-shader" );
gl.useProgram( program );
// Load the data into the GPU using A/S flatten function
var bufferId = gl.createBuffer();
gl.bindBuffer( gl.ARRAY_BUFFER, bufferId );
gl.bufferData( gl.ARRAY_BUFFER, flatten(vertices), gl.STATIC_DRAW );
// Associate our shader variables with our data buffer
var vPosition = gl.getAttribLocation( program, "vPosition" );
gl.vertexAttribPointer(
vPosition, // Specifies the index of the generic vertex attribute to be modified.
2, // Specifies the number of components per generic vertex attribute.
// Must be 1, 2, 3, or 4.
gl.FLOAT, // Specifies the data type of each component in the array.
// GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_FIXED, or GL_FLOAT.
false, // Specifies whether fixed-point data values should be normalized (GL_TRUE)
// or converted directly as fixed-point values (GL_FALSE) when they are accessed.
0, // Specifies the byte offset between consecutive generic vertex attributes.
// If stride is 0, the generic vertex attributes are understood
// to be tightly packed in the array.
0 // Specifies a pointer to the first component
// of the first generic vertex attribute in the array.
);
gl.enableVertexAttribArray( vPosition );
render();
};
function render() {
gl.clear(gl.COLOR_BUFFER_BIT);
gl.drawArrays( gl.TRIANGLE_STRIP, 0, 4 );
}
答案 0 :(得分:2)
没有简单的方式来显示轮廓与纯色。
您的选择
使用gl.LINES
您需要根据要绘制的内容更改不同的顶点或索引。例如,您正在上面绘制TRIANGLE_STRIP
,但为了绘制轮廓四边形,您可以使用LINE_LOOP
来表示这一情况。对于更复杂的形状,您可能需要提供不同的指数。
gl.LINES
,gl.LINE_LOOP
和gl.LINE_STRIP
的问题是WebGL仅支持1像素宽的行。
制作具有轮廓的纹理,将其应用于数据
这是一种常用方法。您需要了解textures and texture coordinates。
制作程序纹理
这与上面相同,但不是使用纹理坐标来引用实际纹理,而是使用计算中的纹理坐标,仅在纹理边缘附近绘制某种颜色。
计算片段着色器中的轮廓
有一些方法可以在着色器中计算轮廓。它们要求您提供更多数据。 Here's one
Compute vertices that draw outlines
这是大多数3D库(和2D库)的作用