本文介绍了如何使用WebGL提高性能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用WebGL渲染纹理,但是,渲染的方式是先渲染几行数据,然后向右移动这些行,然后再次绘制另一组线。

I am rendering a texture using WebGL ,However ,the way I am rendering is I am rendering few lines of data and then moving those lines to right and again drawing another set of lines.

例如:我有一个640 * 480的图像,其中包含640 * 480 * 4像素的RGBA,但是我只填充alpha值,它是GrayScale Medical Dicom图像。

For example : I have a image of 640*480 ,which contains 640*480*4 pixels of RGBA, however I am only filling the alpha values and it is a GrayScale medical Dicom image.

现在,我面临的问题是它用抽搐来渲染纹理,图像渲染不能顺利进行。

Now ,the issue that I am facing is it is rendering the texture with jerks ,the image rendering is not happening smoothly.

例如,发生了这样的情况:
有640行数据要渲染。

For example, This is what happens :There are 640 lines of data to be rendered.

因此,我采用了640 * 480 * 4的数组缓冲区然后,假设第一行从服务器通过websocket到达客户端以进行渲染,然后我将索引填充为3、640 + 3、640 * 2 + 3、640 * 3 + 3,依此类推,直到640 * 480 + 3。然后当收到第二行时,我将第一行移到第二行,例如3-> 7、640 + 3-> 640 + 7,...... 640 * 480 + 3-> 640 * 480 + 7。然后,新接收到的行将被渲染为3、640 + 3、640 * 2 + 3、640 * 3 + 3,并将一直持续到图像数据的第640行为止。

So, I took a arraybuffer of 640*480*4 and then , Suppose first line came to client via websocket from server to render ,then I will fill the indexes as 3, 640+3, 640*2+3, 640*3+3 and so on until 640*480+3. Then when the second line is received ,I will move first line to second line like 3->7, 640+3->640+7, ......640*480+3->640*480+7. And then the newly received line will be rendered to 3, 640+3, 640*2+3, 640*3+3 and this will continue until the 640th line of image data.

这是我完成的代码。

代码:

    var renderLineData = function (imageAttr) {
    var data = imageAttr.data;
    var LINES_PER_CHUNK = imageAttr.lines;
    var alpha = 4;
    if(imageAttr.newImage) {
        newBuffer = new ArrayBuffer(imageAttr.width * imageAttr.height * alpha);dataTypedArray = new Uint8Array(newBuffer);
        // provide texture coordinates for the rectangle.
        provideTextureCoordsForRect();
        setParams();
        // Upload the image into the texture.
        // look up uniform locations
        uploadImageToTexture(gl.getUniformLocation(program, 'u_matrix'));
    } else {
        for (var z = imageAttr.index; z > 0; z--) {
            for (i = 0 ; i < LINES_PER_CHUNK; i++) {
                for (j = 0 ; j < imageAttr.height; j++) {
                    dataTypedArray[i * alpha + imageAttr.width*alpha * j + 3 + LINES_PER_CHUNK  * alpha * z] = dataTypedArray[i * alpha + imageAttr.width*alpha * j +  3 + LINES_PER_CHUNK  * alpha * (z-1)];
                }
            }
        }
    }
    for (i = 0, k = imageAttr.height*LINES_PER_CHUNK; i < LINES_PER_CHUNK; i++) {
        for (j = 0 ; j < imageAttr.height; j++) {
            dataTypedArray[i * alpha + imageAttr.width*4 * j + 3] = data[k - imageAttr.height + j];
        }
        k = k - imageAttr.height;
    }
    imageAttrTemp = imageAttr;
    renderImgSlowly(gl, imageAttr, dataTypedArray);
};
function renderImgSlowly (gl, image, dataTypedArray)  {
    gl.clear(gl.COLOR_BUFFER_BIT || gl.DEPTH_BUFFER_BIT);
    gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, image.width, image.height, 0, gl.RGBA, gl.UNSIGNED_BYTE, dataTypedArray);
    //Draw the rectangle.
    gl.drawArrays(gl.TRIANGLES, 0, 6);
}


推荐答案

首先,什么都不是这样做很可能是速度问题。 640x320的图像不是很大,并且您使用JavaScript进行的处理量不太可能成为瓶颈。

First off, nothing you are doing is likely to be the speed issue. A 640x320 image is not that large and the amount of processing you're doing in JavaScript is unlikely to be the bottleneck.

最重要的是,WebGL可以轻松绘制一个四边形,这就是您要绘制的全部。上载640x480纹理也不会有问题。

On top of that WebGL will have no trouble drawing a single quad which is all you're drawing. Nor will it have a problem uploading a 640x480 texture.

瓶颈是网络。通过网络发送数据块的速度很慢。

The bottleneck is the network. Sending chunks over the network is slow.

另一方面,如果要优化,为什么要在JavaScript中移动数据?只需将其放在纹理中的正确位置即可,以 gl.texSubImage2D 开头。如果只想绘制已放入数据的部分,则调整纹理坐标以选择该部分纹理

On the other hand, if you want to optimize, why are you shifting the data around in JavaScript? Just put it in the correct place in the texture to start with with gl.texSubImage2D. If you only want to draw the part that has had data put in it then adjust the texture coordinates to select that part of the texture

此外,为什么要使用 RGBA 是否只需要一个通道?使用 LUMINANCE

Also, why are you using RGBA if you only need one channel? Use LUMINANCE.

  if (imageAttr.newImage) {
      destColumn = imageAttr.width;
      gl.texImage2D(gl.TEXTURE_2D, 0, gl.LUMINANCE, imageAttr.width, imageAttr.height, 0,
                    gl.LUMINANCE, gl.UNSIGNED_BYTE, null);
  }
  destColumn -= imageAttr.lines;
  // should check it destColumn does not go negative!
  gl.texSubImage2D(gl.TEXTURE_2D, 0, destColumn, 0, imageAttr.lines, imageAttr.height,
                   gl.LUMINANCE, gl.UNSIGNED_BYTE, imageAttr.data);

  var srcX = destColumn;
  var srcY = 0;
  var srcWidth  = imageAttr.width - destColumn;
  var srcHeight = imageAttr.height;

  var dstX = destColumn * gl.canvas.width / imageAttr.width;
  var dstY = 0;
  var dstWidth  = srcWidth * gl.canvas.width / imageAttr.width;
  var dstHeight = srcHeight;

  var texWidth     = imageAttr.width;
  var texHeight    = imageAttr.height;
  var targetWidth  = gl.canvas.width;
  var targetHeight = gl.canvas.height;

  drawImageInWebGL(
    tex, texWidth, texHeight,
    srcX, srcY, srcWidth, srcHeight,
    dstX, dstY, dstWidth, dstHeight,
    targetWidth, targetHeight);
}

这里有个例子

var m4 = twgl.m4;
var gl = document.getElementById("c").getContext("webgl");
// compiles shader, links and looks up locations
var programInfo = twgl.createProgramInfo(gl, ["vs", "fs"]);

// a unit quad
var arrays = {
  position: {
    numComponents: 2,
    data: [
      0, 0,
      1, 0,
      0, 1,
      0, 1,
      1, 0,
      1, 1,
    ],
  },
};
// calls gl.createBuffer, gl.bindBuffer, gl.bufferData for each array
var bufferInfo = twgl.createBufferInfoFromArrays(gl, arrays);

// we're only using 1 texture so just make and bind it now
var tex = gl.createTexture();
gl.bindTexture(gl.TEXTURE_2D, tex);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST);


var destColumn = 0;

// We're using 1 byte wide texture pieces so we need to
// set UNPACK_ALIGNMENT to 1 as it defaults to 4
gl.pixelStorei(gl.UNPACK_ALIGNMENT, 1);

simulateSendingAnImageNColumnsAtATime(1, 1, addLinesToImageAndDraw);

function addLinesToImageAndDraw(imageAttr) {
  if (imageAttr.newImage) {
      destColumn = imageAttr.width;
      gl.texImage2D(gl.TEXTURE_2D, 0, gl.LUMINANCE, imageAttr.width, imageAttr.height, 0,
                    gl.LUMINANCE, gl.UNSIGNED_BYTE, null);
  }
  destColumn -= imageAttr.lines;
  // should check it destColumn does not go negative!
  gl.texSubImage2D(gl.TEXTURE_2D, 0, destColumn, 0, imageAttr.lines, imageAttr.height,
                   gl.LUMINANCE, gl.UNSIGNED_BYTE, imageAttr.data);

  var srcX = destColumn;
  var srcY = 0;
  var srcWidth  = imageAttr.width - destColumn;
  var srcHeight = imageAttr.height;

  var dstX = destColumn * gl.canvas.width / imageAttr.width;
  var dstY = 0;
  var dstWidth  = srcWidth * gl.canvas.width / imageAttr.width;
  var dstHeight = gl.canvas.height;

  var texWidth     = imageAttr.width;
  var texHeight    = imageAttr.height;
  var targetWidth  = gl.canvas.width;
  var targetHeight = gl.canvas.height;

  drawImage(
    tex, texWidth, texHeight,
    srcX, srcY, srcWidth, srcHeight,
    dstX, dstY, dstWidth, dstHeight,
    targetWidth, targetHeight);
}


// we pass in texWidth and texHeight because unlike images
// we can't look up the width and height of a texture

// we pass in targetWidth and targetHeight to tell it
// the size of the thing we're drawing too. We could look
// up the size of the canvas with gl.canvas.width and
// gl.canvas.height but maybe we want to draw to a framebuffer
// etc.. so might as well pass those in.

// srcX, srcY, srcWidth, srcHeight are in pixels
// computed from texWidth and texHeight

// dstX, dstY, dstWidth, dstHeight are in pixels
// computed from targetWidth and targetHeight
function drawImage(
    tex, texWidth, texHeight,
    srcX, srcY, srcWidth, srcHeight,
    dstX, dstY, dstWidth, dstHeight,
    targetWidth, targetHeight) {
  var mat  = m4.identity();
  var tmat = m4.identity();

  var uniforms = {
    matrix: mat,
    textureMatrix: tmat,
    texture: tex,
  };

  // these adjust the unit quad to generate texture coordinates
  // to select part of the src texture

  // NOTE: no check is done that srcX + srcWidth go outside of the
  // texture or are in range in any way. Same for srcY + srcHeight

  m4.translate(tmat, [srcX / texWidth, srcY / texHeight, 0], tmat);
  m4.scale(tmat, [srcWidth / texWidth, srcHeight / texHeight, 1], tmat);

  // these convert from pixels to clip space
  m4.ortho(0, targetWidth, targetHeight, 0, -1, 1, mat)

  // these move and scale the unit quad into the size we want
  // in the target as pixels
  m4.translate(mat, [dstX, dstY, 0], mat);
  m4.scale(mat, [dstWidth, dstHeight, 1], mat);

  gl.useProgram(programInfo.program);
  // calls gl.bindBuffer, gl.enableVertexAttribArray, gl.vertexAttribPointer
  twgl.setBuffersAndAttributes(gl, programInfo, bufferInfo);
  // calls gl.uniformXXX, gl.activeTexture, gl.bindTexture
  twgl.setUniforms(programInfo, uniforms);
  // calls gl.drawArray or gl.drawElements
  twgl.drawBufferInfo(gl, gl.TRIANGLES, bufferInfo);

}


// =====================================================================
// Everything below this line represents stuff from the server.
// so it's irrelevant to the answer
//

function simulateSendingAnImageNColumnsAtATime(minColumnsPerChunk, maxColumnsPerChunk, callback) {
  var imageData = createImageToSend(640, 480);

  // cut data into columns at start because this work would be done on
  // the server
  var columns = [];
  var x = 0;
  while (x < imageData.width) {
    // how many columns are left?
    var maxWidth = imageData.width - x;

    // how many columns should we send
    var columnWidth = Math.min(maxWidth, rand(minColumnsPerChunk, maxColumnsPerChunk + 1));

    var data = createImageChunk(imageData, imageData.width - x - columnWidth, 0, columnWidth, imageData.height);

    columns.push({
      newImage: x === 0,
      lines: columnWidth,
      width: imageData.width,
      height: imageData.height,
      data: data,
    });

    x += columnWidth;
  }

  var columnNdx = 0;
  sendNextColumn();

  function sendNextColumn() {
    if (columnNdx < columns.length) {
      callback(columns[columnNdx++]);
      if (columnNdx < columns.length) {
        // should we make this random to siumlate network speed
        var timeToNextChunkMS = 17;
        setTimeout(sendNextColumn, timeToNextChunkMS);
      }
    }
  }
}

function createImageChunk(imageData, x, y, width, height) {
  var data = new Uint8Array(width * height);
  for (var yy = 0; yy < height; ++yy) {
    for (var xx = 0; xx < width; ++xx) {
      var srcOffset = ((yy + y) * imageData.width + xx + x) * 4;
      var dstOffset = yy * width + xx;
      // compute gray scale
      var gray = Math.max(imageData.data[srcOffset], imageData.data[srcOffset + 1], imageData.data[srcOffset + 2]);
      data[dstOffset] = gray;
    }
  }
  return data;
}

function rand(min, max) {
  return Math.floor(Math.random() * max - min) + min;
}

function createImageToSend(width, height) {
  // create a texture using a canvas so we don't have to download one
  var ctx = document.createElement("canvas").getContext("2d");
  ctx.width = width;
  ctx.height = height;
  ctx.fillStyle = "#222";
  ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
  ctx.lineWidth = 20;
  ["#AAA", "#888", "#666"].forEach(function(color, ndx, array) {
    ctx.strokeStyle = color;
    ctx.beginPath();
    ctx.arc((ndx + 1) / (array.length + 1) * ctx.canvas.width, ctx.canvas.height / 2,
            ctx.canvas.height * 0.4, 0, Math.PI * 2, false);
    ctx.stroke();
  });
  ctx.fillStyle = "white";
  ctx.font = "40px sans-serif";
  ctx.textAlign = "center";
  ctx.textBaseline = "middle";
  ctx.fillText("Some Image", ctx.canvas.width / 2, ctx.canvas.height / 2);
  return ctx.getImageData(0, 0, ctx.canvas.width, ctx.canvas.height);
}
canvas { border: 1px solid black; }
<script src="https://twgljs.org/dist/twgl-full.min.js"></script>
<script id="vs" type="not-js">
// we will always pass a 0 to 1 unit quad
// and then use matrices to manipulate it
attribute vec4 position;

uniform mat4 matrix;
uniform mat4 textureMatrix;

varying vec2 texcoord;

void main () {
  gl_Position = matrix * position;

  texcoord = (textureMatrix * position).xy;
}
</script>
<script id="fs" type="not-js">
precision mediump float;

varying vec2 texcoord;
uniform sampler2D texture;

void main() {
  gl_FragColor = texture2D(texture, texcoord);
}
</script>
<canvas id="c" width="640" height="480"></canvas>

注意:由于使用的是 setTimeout 模拟接收网络数据,但这正是您可能看到的。

NOTE: This will not be smooth because it is using setTimeout to simulate receiving network data but that's exactly what you're likely seeing.

这里有一个示例,该示例独立于更新纹理而旋转图像。您可以看到它运行得非常顺利。慢不是WebGL,而是网络(由 setTimeout 模拟)

Here's a sample that rotates the image independently of updating the texture. You can see it runs perfectly smooth. The slowness is not WebGL, the slowness is networking (as simulated by setTimeout)

var m4 = twgl.m4;
var gl = document.getElementById("c").getContext("webgl");
// compiles shader, links and looks up locations
var programInfo = twgl.createProgramInfo(gl, ["vs", "fs"]);

// a unit quad
var arrays = {
  position: {
    numComponents: 2,
    data: [
      0, 0,
      1, 0,
      0, 1,
      0, 1,
      1, 0,
      1, 1,
    ],
  },
};
// calls gl.createBuffer, gl.bindBuffer, gl.bufferData for each array
var bufferInfo = twgl.createBufferInfoFromArrays(gl, arrays);

// we're only using 1 texture so just make and bind it now
var tex = gl.createTexture();
gl.bindTexture(gl.TEXTURE_2D, tex);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST);


var destColumn = 0;
var imageWidth;
var imageHeight;

// We're using 1 byte wide texture pieces so we need to
// set UNPACK_ALIGNMENT to 1 as it defaults to 4
gl.pixelStorei(gl.UNPACK_ALIGNMENT, 1);

simulateSendingAnImageNColumnsAtATime(1, 1, addLinesToImageAndDraw);

function addLinesToImageAndDraw(imageAttr) {
  if (imageAttr.newImage) {
      destColumn  = imageAttr.width;
      imageWidth  = imageAttr.width;
      imageHeight = imageAttr.height;
      gl.texImage2D(gl.TEXTURE_2D, 0, gl.LUMINANCE, imageAttr.width, imageAttr.height, 0,
                    gl.LUMINANCE, gl.UNSIGNED_BYTE, null);
  }
  destColumn -= imageAttr.lines;
  // should check it destColumn does not go negative!
  gl.texSubImage2D(gl.TEXTURE_2D, 0, destColumn, 0, imageAttr.lines, imageAttr.height,
                   gl.LUMINANCE, gl.UNSIGNED_BYTE, imageAttr.data);
}

function render(time) {
  if (imageWidth) {
    var srcX = destColumn;
    var srcY = 0;
    var srcWidth  = imageWidth - destColumn;
    var srcHeight = imageHeight;

    var dstX = destColumn * gl.canvas.width / imageWidth;
    var dstY = 0;
    var dstWidth  = srcWidth * gl.canvas.width / imageWidth;
    var dstHeight = gl.canvas.height;

    var texWidth     = imageWidth;
    var texHeight    = imageHeight;
    var targetWidth  = gl.canvas.width;
    var targetHeight = gl.canvas.height;

    drawImageWithRotation(
      time * 0.001,
      tex, texWidth, texHeight,
      srcX, srcY, srcWidth, srcHeight,
      dstX, dstY, dstWidth, dstHeight,
      targetWidth, targetHeight);
  }
  requestAnimationFrame(render);
}
requestAnimationFrame(render);


// we pass in texWidth and texHeight because unlike images
// we can't look up the width and height of a texture

// we pass in targetWidth and targetHeight to tell it
// the size of the thing we're drawing too. We could look
// up the size of the canvas with gl.canvas.width and
// gl.canvas.height but maybe we want to draw to a framebuffer
// etc.. so might as well pass those in.

// srcX, srcY, srcWidth, srcHeight are in pixels
// computed from texWidth and texHeight

// dstX, dstY, dstWidth, dstHeight are in pixels
// computed from targetWidth and targetHeight
function drawImageWithRotation(
    rotation,
    tex, texWidth, texHeight,
    srcX, srcY, srcWidth, srcHeight,
    dstX, dstY, dstWidth, dstHeight,
    targetWidth, targetHeight) {
  var mat  = m4.identity();
  var tmat = m4.identity();

  var uniforms = {
    matrix: mat,
    textureMatrix: tmat,
    texture: tex,
  };

  // these adjust the unit quad to generate texture coordinates
  // to select part of the src texture

  // NOTE: no check is done that srcX + srcWidth go outside of the
  // texture or are in range in any way. Same for srcY + srcHeight
  m4.translate(tmat, [srcX / texWidth, srcY / texHeight, 0], tmat);
  m4.scale(tmat, [srcWidth / texWidth, srcHeight / texHeight, 1], tmat);

  // convert from pixels to clipspace
  m4.ortho(0, targetWidth, targetHeight, 0, -1, 1, mat);

  // rotate around center of canvas
  m4.translate(mat, [targetWidth / 2, targetHeight / 2, 0], mat);
  m4.rotateZ(mat, rotation, mat);
  m4.translate(mat, [-targetWidth / 2, -targetHeight / 2, 0], mat);

  // these move and scale the unit quad into the size we want
  // in the target as pixels
  m4.translate(mat, [dstX, dstY, 0], mat);
  m4.scale(mat, [dstWidth, dstHeight, 1], mat);

  gl.useProgram(programInfo.program);
  // calls gl.bindBuffer, gl.enableVertexAttribArray, gl.vertexAttribPointer
  twgl.setBuffersAndAttributes(gl, programInfo, bufferInfo);
  // calls gl.uniformXXX, gl.activeTexture, gl.bindTexture
  twgl.setUniforms(programInfo, uniforms);
  // calls gl.drawArray or gl.drawElements
  twgl.drawBufferInfo(gl, bufferInfo);

}


// =====================================================================
// Everything below this line represents stuff from the server.
// so it's irrelevant to the answer
//

function simulateSendingAnImageNColumnsAtATime(minColumnsPerChunk, maxColumnsPerChunk, callback) {
  var imageData = createImageToSend(640, 480);

  // cut data into columns at start because this work would be done on
  // the server
  var columns = [];
  var x = 0;
  while (x < imageData.width) {
    // how many columns are left?
    var maxWidth = imageData.width - x;

    // how many columns should we send
    var columnWidth = Math.min(maxWidth, rand(minColumnsPerChunk, maxColumnsPerChunk + 1));

    var data = createImageChunk(imageData, imageData.width - x - columnWidth, 0, columnWidth, imageData.height);

    columns.push({
      newImage: x === 0,
      lines: columnWidth,
      width: imageData.width,
      height: imageData.height,
      data: data,
    });

    x += columnWidth;
  }

  var columnNdx = 0;
  sendNextColumn();

  function sendNextColumn() {
    if (columnNdx < columns.length) {
      callback(columns[columnNdx++]);
      if (columnNdx < columns.length) {
        // should we make this random to siumlate network speed
        var timeToNextChunkMS = 17;
        setTimeout(sendNextColumn, timeToNextChunkMS);
      }
    }
  }
}

function createImageChunk(imageData, x, y, width, height) {
  var data = new Uint8Array(width * height);
  for (var yy = 0; yy < height; ++yy) {
    for (var xx = 0; xx < width; ++xx) {
      var srcOffset = ((yy + y) * imageData.width + xx + x) * 4;
      var dstOffset = yy * width + xx;
      // compute gray scale
      var gray = Math.max(imageData.data[srcOffset], imageData.data[srcOffset + 1], imageData.data[srcOffset + 2]);
      data[dstOffset] = gray;
    }
  }
  return data;
}

function rand(min, max) {
  return Math.floor(Math.random() * max - min) + min;
}

function createImageToSend(width, height) {
  // create a texture using a canvas so we don't have to download one
  var ctx = document.createElement("canvas").getContext("2d");
  ctx.width = width;
  ctx.height = height;
  ctx.fillStyle = "#222";
  ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
  ctx.lineWidth = 20;
  ["#AAA", "#888", "#666"].forEach(function(color, ndx, array) {
    ctx.strokeStyle = color;
    ctx.beginPath();
    ctx.arc((ndx + 1) / (array.length + 1) * ctx.canvas.width, ctx.canvas.height / 2,
            ctx.canvas.height * 0.4, 0, Math.PI * 2, false);
    ctx.stroke();
  });
  ctx.fillStyle = "white";
  ctx.font = "40px sans-serif";
  ctx.textAlign = "center";
  ctx.textBaseline = "middle";
  ctx.fillText("Some Image", ctx.canvas.width / 2, ctx.canvas.height / 2);
  return ctx.getImageData(0, 0, ctx.canvas.width, ctx.canvas.height);
}
canvas { border: 1px solid black; }
<script src="https://twgljs.org/dist/3.x/twgl-full.min.js"></script>
<script id="vs" type="not-js">
// we will always pass a 0 to 1 unit quad
// and then use matrices to manipulate it
attribute vec4 position;

uniform mat4 matrix;
uniform mat4 textureMatrix;

varying vec2 texcoord;

void main () {
  gl_Position = matrix * position;

  texcoord = (textureMatrix * position).xy;
}
</script>
<script id="fs" type="not-js">
precision mediump float;

varying vec2 texcoord;
uniform sampler2D texture;

void main() {
  gl_FragColor = texture2D(texture, texcoord);
}
</script>
<canvas id="c" width="640" height="480"></canvas>

这篇关于如何使用WebGL提高性能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-10 01:53