【WebGL】《WebGL編程指南》讀書筆記——第五章

来源:http://www.cnblogs.com/lovecsharp094/archive/2017/10/23/7718719.html
-Advertisement-
Play Games

一、前言 終於到了第五章了,貌似開始越來越複雜了。 二、正文 Example1:使用一個緩衝區去賦值多個頂點數據(包含坐標及點大小) Example2:使用varying變數從頂點著色器傳輸顏色信息給片元著色器 Example3:紋理(將圖片的紋理賦給webgl對象) 三、結尾 以上代碼均來自《We ...


一、前言

       終於到了第五章了,貌似開始越來越複雜了。

 

二、正文

        Example1:使用一個緩衝區去賦值多個頂點數據(包含坐標及點大小)

function initVertexBuffers(gl) {
  var verticesSizes = new Float32Array([
     0.0,  0.5,  10.0,  
    -0.5, -0.5,  20.0,  
     0.5, -0.5,  30.0   
  ]);
  var n = 3; 
  var vertexSizeBuffer = gl.createBuffer();  
  if (!vertexSizeBuffer) {
    console.log('Failed to create the buffer object');
    return -1;
  }

  gl.bindBuffer(gl.ARRAY_BUFFER, vertexSizeBuffer);
  gl.bufferData(gl.ARRAY_BUFFER, verticesSizes, gl.STATIC_DRAW);

  var FSIZE = verticesSizes.BYTES_PER_ELEMENT;
  var a_Position = gl.getAttribLocation(gl.program, 'a_Position');
  if (a_Position < 0) {
    console.log('Failed to get the storage location of a_Position');
    return -1;
  }
  gl.vertexAttribPointer(a_Position, 2, gl.FLOAT, false, FSIZE * 3, 0);
  gl.enableVertexAttribArray(a_Position);  

var a_PointSize = gl.getAttribLocation(gl.program, 'a_PointSize'); if(a_PointSize < 0) { console.log('Failed to get the storage location of a_PointSize'); return -1; } gl.vertexAttribPointer(a_PointSize, 1, gl.FLOAT, false, FSIZE * 3, FSIZE * 2); gl.enableVertexAttribArray(a_PointSize); gl.bindBuffer(gl.ARRAY_BUFFER, null); return n; }

        

          Example2:使用varying變數從頂點著色器傳輸顏色信息給片元著色器

var VSHADER_SOURCE =
  'attribute vec4 a_Position;\n' +
  'attribute vec4 a_Color;\n' +  //attribute變數
  'varying vec4 v_Color;\n' +   // varying變數
  'void main() {\n' +
  '  gl_Position = a_Position;\n' +
  '  gl_PointSize = 10.0;\n' +
  '  v_Color = a_Color;\n' +  // 將attribute變數賦給varying變數
  '}\n';


var FSHADER_SOURCE =
'#ifdef GL_ES\n' + 'precision mediump float;\n' + '#endif GL_ES\n' +
'varying vec4 v_Color;\n' + //同名varying變數 'void main() {\n' + ' gl_FragColor = v_Color;\n' + //!!!!! '}\n';
function initVertexBuffers(gl) {
  var verticesColors = new Float32Array([
    // 頂點坐標 與 顏色
     0.0,  0.5,  1.0,  0.0,  0.0, 
    -0.5, -0.5,  0.0,  1.0,  0.0, 
     0.5, -0.5,  0.0,  0.0,  1.0, 
  ]);
  var n = 3; 
  var vertexColorBuffer = gl.createBuffer();  
  if (!vertexColorBuffer) {
    console.log('Failed to create the buffer object');
    return false;
  }

  gl.bindBuffer(gl.ARRAY_BUFFER, vertexColorBuffer);
  gl.bufferData(gl.ARRAY_BUFFER, verticesColors, gl.STATIC_DRAW);

  var FSIZE = verticesColors.BYTES_PER_ELEMENT;
  var a_Position = gl.getAttribLocation(gl.program, 'a_Position');
  if (a_Position < 0) {
    console.log('Failed to get the storage location of a_Position');
    return -1;
  }
  gl.vertexAttribPointer(a_Position, 2, gl.FLOAT, false, FSIZE * 5, 0);
  gl.enableVertexAttribArray(a_Position);  
  var a_Color = gl.getAttribLocation(gl.program, 'a_Color');
  if(a_Color < 0) {
    console.log('Failed to get the storage location of a_Color');
    return -1;
  }
  gl.vertexAttribPointer(a_Color, 3, gl.FLOAT, false, FSIZE * 5, FSIZE * 2);
  gl.enableVertexAttribArray(a_Color);  

  return n;
}

 

       Example3:紋理(將圖片的紋理賦給webgl對象)


var
VSHADER_SOURCE = 'attribute vec4 a_Position;\n' + 'attribute vec2 a_TexCoord;\n' + // 聲明一個attribute變數 'varying vec2 v_TexCoord;\n' + // 聲明一個varying變數 'void main() {\n' + ' gl_Position = a_Position;\n' + ' v_TexCoord = a_TexCoord;\n' + // attribute變數賦給varying變數 '}\n'; var FSHADER_SOURCE = '#ifdef GL_ES\n' + 'precision mediump float;\n' + '#endif\n' +
'uniform sampler2D u_Sampler;\n' + 'varying vec2 v_TexCoord;\n' + 'void main() {\n' +

// texture2D(sampler2D sampler, vec2 coord)
// (紋理單元編號,紋理坐標) 這裡是賦值的關鍵
' gl_FragColor = texture2D(u_Sampler, v_TexCoord);\n' + '}\n'; function main() { var canvas = document.getElementById('webgl'); var gl = getWebGLContext(canvas); if (!gl) { console.log('Failed to get the rendering context for WebGL'); return; } if (!initShaders(gl, VSHADER_SOURCE, FSHADER_SOURCE)) { console.log('Failed to intialize shaders.'); return; } // 設置頂點緩存 var n = initVertexBuffers(gl); if (n < 0) { console.log('Failed to set the vertex information'); return; } gl.clearColor(0.0, 0.0, 0.0, 1.0); // 設置紋理 if (!initTextures(gl, n)) { console.log('Failed to intialize the texture.'); return; } } function initVertexBuffers(gl) { var verticesTexCoords = new Float32Array([ //webgl頂點坐標, 紋理坐標相應點 -0.5, 0.5, 0.0, 1.0, -0.5, -0.5, 0.0, 0.0, 0.5, 0.5, 1.0, 1.0, 0.5, -0.5, 1.0, 0.0, ]); var n = 4;
// 創建緩存區對象 var vertexTexCoordBuffer = gl.createBuffer(); if (!vertexTexCoordBuffer) { console.log('Failed to create the buffer object'); return -1; } gl.bindBuffer(gl.ARRAY_BUFFER, vertexTexCoordBuffer); gl.bufferData(gl.ARRAY_BUFFER, verticesTexCoords, gl.STATIC_DRAW); var FSIZE = verticesTexCoords.BYTES_PER_ELEMENT; var a_Position = gl.getAttribLocation(gl.program, 'a_Position'); if (a_Position < 0) { console.log('Failed to get the storage location of a_Position'); return -1; } gl.vertexAttribPointer(a_Position, 2, gl.FLOAT, false, FSIZE * 4, 0); gl.enableVertexAttribArray(a_Position);

// 將紋理坐標分配給該存儲位置並開啟 var a_TexCoord = gl.getAttribLocation(gl.program, 'a_TexCoord'); if (a_TexCoord < 0) { console.log('Failed to get the storage location of a_TexCoord'); return -1; } gl.vertexAttribPointer(a_TexCoord, 2, gl.FLOAT, false, FSIZE * 4, FSIZE * 2); gl.enableVertexAttribArray(a_TexCoord); return n; } function initTextures(gl, n) {
// Step1:設置紋理對象
var texture = gl.createTexture(); if (!texture) { console.log('Failed to create the texture object'); return false; } // Step2: 獲取u_Sampler(取樣器)存儲位置 var u_Sampler = gl.getUniformLocation(gl.program, 'u_Sampler'); if (!u_Sampler) {console.log('Failed to get the storage location of u_Sampler'); return false; }

// Step3: 創建圖片對象
var image = new Image(); if (!image) {console.log('Failed to create the image object'); return false; } image.onload = function(){ loadTexture(gl, n, texture, u_Sampler, image); }; image.src = '../resources/sky.jpg'; return true; } function loadTexture(gl, n, texture, u_Sampler, image) {
// Step1:對圖像進行y軸反轉 gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL,
1);

// Step2: 開啟0號紋理單元(textunit0~7) gl.activeTexture(gl.TEXTURE0);
// Step3: 綁定紋理對象(target,texture)
// target可以是:gl.TEXTURE或gl.TEXTURE_CUBE_MAP
gl.bindTexture(gl.TEXTURE_2D, texture); // Step4: 設置紋理參數(target,pname,param)
// gl.TEXTURE_MAG_FILTER (紋理放大) 預設值: gl.LINEAR
// gl.TEXTURE_MIN_FILTER (紋理縮小) 預設值: gl.NEAREST_MIPMAP_LINEAR
// gl.TEXTURE_WRAP_S (紋理水平填充) 預設值: gl.REPEAT(平鋪式)
// gl.MIRRORED_REPEAT (鏡像對稱)
// gl.CLAMP_TO_EDGE (使用紋理圖像邊緣值)
// gl.TEXTURE_WRAP_T (紋理垂直填充) 預設值: gl.REPEAT

gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
// Step5:配置紋理圖片(target,level,internalformat,format,type,image)
// level: 0
// internalformat:圖像的內部格式
// format: 紋理數據的格式,必須與internalformat一致
// type: 紋理數據的類型
// image:包含紋理的圖像的image對象
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGB, gl.RGB, gl.UNSIGNED_BYTE, image);
// Step6:將0號紋理傳遞至取樣器 gl.uniform1i(u_Sampler, 0); gl.clear(gl.COLOR_BUFFER_BIT); gl.drawArrays(gl.TRIANGLE_STRIP, 0, n); }

 

三、結尾

       以上代碼均來自《WebGL編程指南》。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 棧(stack)和堆(heap) stack為自動分配的記憶體空間,它由系統自動釋放;而heap則是動態分配的記憶體,大小不定也不會自動釋放。 基本類型和引用類型 基本類型:存放在棧記憶體中的簡單數據段,數據大小確定,記憶體空間大小可以分配。 基本數據類型有Undefined、Null、Boolean、Nu ...
  • 最近幾個舊項目里使用的圖片編輯插件出現Bug, 經Review 後確定需要在其內外均做些改動,但是頭疼的發現部分頁面里的JavaScript 代碼被冗餘了NN次。部分新同事堆疊了大量的過程式的腳本塊(幾乎沒有利用面向對象封裝的概念-雖然面向對象也按需擇時),改起來挺累(而且幾個項目里各自不同)。本身... ...
  • 寫在前面 國慶整理資料時,發現剛開始入門前端時學習JS 的資料,打算以一個基礎入門博客記錄下來,有不寫不對的多多指教; 先推薦些書籍給需要的童鞋 《JavaScript 高級程式設計.pdf》第三版 《JavaScript權威指南(第六版).pdf》 《高性能javascript.pdf》 《Jav ...
  • 這篇文章其實是在瞭解 viewport 的過程中發現這些概念容易混淆做了個小小的總結。viewport的首要關鍵是寬度的獲取,寬度的計算有下麵幾個屬性和方法: clientWidth offsetWidth innerWidth scrollWidth getBoundingClientRect() ...
  • 使用replace方法: 如果第一個參數是個字元串,那麼則是第一選擇,作為檢索的直接量文本模式。 該方法接收正則表達式。 返回一個新的字元串。 ...
  • 【效果如圖】 【原理簡述】 這裡大概說一下整個流程: 1,將除了第一張以外的圖片全部隱藏, 2,獲取第一張圖片的alt信息顯示在信息欄,並添加點擊事件 3,為4個按鈕添加點擊偵聽,點擊相應的按鈕,用fadeOut,fadeIn方法顯示圖片 4,設置setInterval,定時執行切換函數 【代碼說明 ...
  • 轉自http://www.imooc.com/article/9539 作者: 剛毅87 1.正則表達式:按照一定的規則去匹配字元串2. 3. 4. 5. ...
  • { // 基本定義 let ajax = function(callback) { console.log('執行'); //先輸出 1 執行 setTimeout(function() { callback && callback.call() }, 1000); }; ajax(funct... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...