Changeset 250114 in webkit
- Timestamp:
- Sep 19, 2019, 6:20:31 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 66 edited
- 6 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r250103 r250114 1 2019-09-19 Devin Rousso <drousso@apple.com> 2 3 Web Inspector: Canvas: show WebGPU shader pipelines 4 https://bugs.webkit.org/show_bug.cgi?id=201675 5 6 Reviewed by Joseph Pecoraro. 7 8 Split existing shader tests into WebGL and WebGPU sub-tests for different platforms. 9 10 * inspector/canvas/requestShaderSource.html: 11 * inspector/canvas/requestShaderSource-expected.txt: 12 * inspector/canvas/updateShader.html: 13 * inspector/canvas/updateShader-expected.txt: 14 15 * inspector/canvas/resources/shaderProgram-utilities-webgpu.js: Added. 16 * inspector/canvas/requestShaderSource-webgpu.html: Added. 17 * inspector/canvas/requestShaderSource-webgpu-expected.txt: Added. 18 * inspector/canvas/shaderProgram-add-remove-webgpu.html: Added. 19 * inspector/canvas/shaderProgram-add-remove-webgpu-expected.txt: Added. 20 * inspector/canvas/updateShader-webgpu-expected.txt: Added. 21 * inspector/canvas/updateShader-webgpu.html: Added. 22 23 * inspector/canvas/resources/shaderProgram-utilities-webgl.js: Renamed from LayoutTests/inspector/canvas/resources/shaderProgram-utilities.js. 24 * inspector/canvas/console-record-webgl.html: 25 * inspector/canvas/console-record-webgl2.html: 26 * inspector/canvas/recording-webgl-frameCount.html: 27 * inspector/canvas/recording-webgl-full.html: 28 * inspector/canvas/recording-webgl-memoryLimit.html: 29 * inspector/canvas/recording-webgl-snapshots.html: 30 * inspector/canvas/recording-webgl2-frameCount.html: 31 * inspector/canvas/recording-webgl2-full.html: 32 * inspector/canvas/recording-webgl2-memoryLimit.html: 33 * inspector/canvas/recording-webgl2-snapshots.html: 34 * inspector/canvas/requestShaderSource-webgl.html: Added. 35 * inspector/canvas/requestShaderSource-webgl-expected.txt: Added. 36 * inspector/canvas/setShaderProgramDisabled.html: 37 * inspector/canvas/setShaderProgramHighlighted.html: 38 * inspector/canvas/shaderProgram-add-remove-webgl.html: 39 * inspector/canvas/shaderProgram-add-remove-webgl2.html: 40 * inspector/canvas/updateShader-webgl.html: Added. 41 * inspector/canvas/updateShader-webgl-expected.txt: Added. 42 43 * platform/gtk/TestExpectations: 44 * platform/ios/TestExpectations: 45 * platform/mac-wk1/TestExpectations: 46 * platform/mac/TestExpectations: 47 * platform/win/TestExpectations: 48 * platform/wincairo/TestExpectations: 49 * platform/wpe/TestExpectations: 50 1 51 2019-09-19 Said Abou-Hallawa <sabouhallawa@apple.com> 2 52 -
trunk/LayoutTests/inspector/canvas/console-record-webgl.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/console-record-webgl2.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/recording-webgl-frameCount.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/recording-webgl-full.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/recording-webgl-memoryLimit.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/recording-webgl-snapshots.html
r246015 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec3 position; -
trunk/LayoutTests/inspector/canvas/recording-webgl2-frameCount.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/recording-webgl2-full.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/recording-webgl2-memoryLimit.html
r246016 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec4 test; -
trunk/LayoutTests/inspector/canvas/recording-webgl2-snapshots.html
r246015 r250114 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 5 <script src="resources/recording-utilities.js"></script> 6 <script src="resources/shaderProgram-utilities .js"></script>6 <script src="resources/shaderProgram-utilities-webgl.js"></script> 7 7 <script id="vertex-shader" type="x-shader/x-vertex"> 8 8 attribute vec3 position; -
trunk/LayoutTests/inspector/canvas/requestShaderSource-expected.txt
r249128 r250114 1 Test compilation of shaders after being attached to a program, with and without syntax errors.1 Common tests for Canvas.requestShaderSource command. 2 2 3 3 4 == Running test suite: Canvas.getShaderSource 5 -- Running test case: Canvas.requestShaderSource.vertexShader 6 7 void main(void) { 8 gl_Position = vec4(0.0, 0.0, 0.0, 1.0); 9 } 10 11 12 -- Running test case: Canvas.requestShaderSource.fragmentShader 13 14 precision mediump float; 15 16 void main(void) { 17 gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0); 18 } 19 20 21 -- Running test case: Canvas.requestShaderSource.invalidProgramId 4 == Running test suite: Canvas.requestShaderSource 5 -- Running test case: Canvas.requestShaderSource.ProgramId.Invalid 22 6 PASS: Should produce an error. 23 7 Error: Missing program for given programId 24 8 25 -- Running test case: Canvas.requestShaderSource.invalidShaderType26 PASS: Should produce an error.27 Error: Missing shader for given shaderType28 -
trunk/LayoutTests/inspector/canvas/requestShaderSource-webgl.html
r250113 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities .js"></script>5 <script src="resources/shaderProgram-utilities-webgl.js"></script> 6 6 <script id="vertex-shader" type="x-shader/x-vertex"> 7 7 void main(void) { … … 25 25 26 26 function test() { 27 let suite = InspectorTest.createAsyncSuite("Canvas. getShaderSource");27 let suite = InspectorTest.createAsyncSuite("Canvas.requestShaderSource.WebGL"); 28 28 29 29 suite.addTestCase({ 30 name: "Canvas.requestShaderSource. vertexShader",30 name: "Canvas.requestShaderSource.WebGL.Vertex", 31 31 description: "Tests requesting the source code of a program's vertex shader.", 32 32 test(resolve, reject) { … … 38 38 39 39 CanvasAgent.requestShaderSource(shaderProgram.identifier, CanvasAgent.ShaderType.Vertex) 40 .then(({ content}) => InspectorTest.log(content))40 .then(({source}) => InspectorTest.log(source)) 41 41 .then(resolve, reject); 42 42 } … … 44 44 45 45 suite.addTestCase({ 46 name: "Canvas.requestShaderSource. fragmentShader",46 name: "Canvas.requestShaderSource.WebGL.Fragment", 47 47 description: "Tests requesting the source code of a program's fragment shader.", 48 48 test(resolve, reject) { … … 54 54 55 55 CanvasAgent.requestShaderSource(shaderProgram.identifier, CanvasAgent.ShaderType.Fragment) 56 .then(({ content}) => InspectorTest.log(content))56 .then(({source}) => InspectorTest.log(source)) 57 57 .then(resolve, reject); 58 58 } … … 60 60 61 61 suite.addTestCase({ 62 name: "Canvas.requestShaderSource.invalidProgramId", 63 description: "Invalid program identifiers should cause an error.", 64 test(resolve, reject) { 65 const programId = "INVALID_PROGRAM_ID"; 66 const shaderType = "INVALID_SHADER_TYPE"; 67 CanvasAgent.requestShaderSource(programId, shaderType, (error) => { 68 InspectorTest.expectThat(error, "Should produce an error."); 69 InspectorTest.log("Error: " + error); 70 resolve(); 71 }); 72 } 73 }); 74 75 suite.addTestCase({ 76 name: "Canvas.requestShaderSource.invalidShaderType", 62 name: "Canvas.requestShaderSource.WebGL.ShaderType.Invalid", 77 63 description: "Invalid shader types should cause an error.", 78 64 test(resolve, reject) { … … 97 83 </head> 98 84 <body onload="load()"> 99 <p>Test compilation of shaders after being attached to a program, with and without syntax errors.</p>85 <p>WebGL tests for Canvas.requestShaderSource command.</p> 100 86 </body> 101 87 </html> -
trunk/LayoutTests/inspector/canvas/requestShaderSource.html
r220294 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities.js"></script>6 <script id="vertex-shader" type="x-shader/x-vertex">7 void main(void) {8 gl_Position = vec4(0.0, 0.0, 0.0, 1.0);9 }10 </script>11 <script id="fragment-shader" type="x-shader/x-fragment">12 precision mediump float;13 14 void main(void) {15 gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0);16 }17 </script>18 5 <script> 19 function load() {20 createProgram("webgl");21 linkProgram("vertex-shader", "fragment-shader");22 23 runTest();24 }25 26 6 function test() { 27 let suite = InspectorTest.createAsyncSuite("Canvas. getShaderSource");7 let suite = InspectorTest.createAsyncSuite("Canvas.requestShaderSource"); 28 8 29 9 suite.addTestCase({ 30 name: "Canvas.requestShaderSource.vertexShader", 31 description: "Tests requesting the source code of a program's vertex shader.", 32 test(resolve, reject) { 33 let shaderProgram = WI.canvasManager.shaderPrograms[0]; 34 if (!shaderProgram) { 35 reject("Missing shader program") 36 return; 37 } 38 39 CanvasAgent.requestShaderSource(shaderProgram.identifier, CanvasAgent.ShaderType.Vertex) 40 .then(({content}) => InspectorTest.log(content)) 41 .then(resolve, reject); 42 } 43 }); 44 45 suite.addTestCase({ 46 name: "Canvas.requestShaderSource.fragmentShader", 47 description: "Tests requesting the source code of a program's fragment shader.", 48 test(resolve, reject) { 49 let shaderProgram = WI.canvasManager.shaderPrograms[0]; 50 if (!shaderProgram) { 51 reject("Missing shader program") 52 return; 53 } 54 55 CanvasAgent.requestShaderSource(shaderProgram.identifier, CanvasAgent.ShaderType.Fragment) 56 .then(({content}) => InspectorTest.log(content)) 57 .then(resolve, reject); 58 } 59 }); 60 61 suite.addTestCase({ 62 name: "Canvas.requestShaderSource.invalidProgramId", 10 name: "Canvas.requestShaderSource.ProgramId.Invalid", 63 11 description: "Invalid program identifiers should cause an error.", 64 12 test(resolve, reject) { … … 73 21 }); 74 22 75 suite.addTestCase({76 name: "Canvas.requestShaderSource.invalidShaderType",77 description: "Invalid shader types should cause an error.",78 test(resolve, reject) {79 let shaderProgram = WI.canvasManager.shaderPrograms[0];80 if (!shaderProgram) {81 reject("Missing shader program")82 return;83 }84 85 const shaderType = "INVALID_SHADER_TYPE";86 CanvasAgent.requestShaderSource(shaderProgram.identifier, shaderType, (error) => {87 InspectorTest.expectThat(error, "Should produce an error.");88 InspectorTest.log("Error: " + error);89 resolve();90 });91 }92 });93 94 23 suite.runTestCasesAndFinish(); 95 24 } 96 25 </script> 97 26 </head> 98 <body onload=" load()">99 <p>Test compilation of shaders after being attached to a program, with and without syntax errors.</p>27 <body onload="runTest()"> 28 <p>Common tests for Canvas.requestShaderSource command.</p> 100 29 </body> 101 30 </html> -
trunk/LayoutTests/inspector/canvas/setShaderProgramDisabled.html
r221025 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities .js"></script>5 <script src="resources/shaderProgram-utilities-webgl.js"></script> 6 6 <script id="vertex-shader" type="x-shader/x-vertex"> 7 7 attribute vec3 position; -
trunk/LayoutTests/inspector/canvas/setShaderProgramHighlighted.html
r242225 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities .js"></script>5 <script src="resources/shaderProgram-utilities-webgl.js"></script> 6 6 <script id="vertex-shader" type="x-shader/x-vertex"> 7 7 attribute vec3 position; -
trunk/LayoutTests/inspector/canvas/shaderProgram-add-remove-webgl.html
r220233 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities .js"></script>5 <script src="resources/shaderProgram-utilities-webgl.js"></script> 6 6 <script> 7 7 function test() { -
trunk/LayoutTests/inspector/canvas/shaderProgram-add-remove-webgl2.html
r220233 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities .js"></script>5 <script src="resources/shaderProgram-utilities-webgl.js"></script> 6 6 <script> 7 7 if (window.internals) -
trunk/LayoutTests/inspector/canvas/updateShader-expected.txt
r249128 r250114 1 CONSOLE MESSAGE: WebGL: ERROR: 0:1: 'INVALID' : syntax error 2 CONSOLE MESSAGE: WebGL: ERROR: 0:1: 'INVALID' : syntax error 3 Test compilation of shaders after being attached to a program, with and without syntax errors. 1 Common tests for Canvas.updateShader command. 4 2 5 3 6 4 == Running test suite: Canvas.updateShader 7 -- Running test case: Canvas.updateShader.vertexShaderValid 8 9 void main(void) { 10 gl_Position = vec4(1, 2, 3, 4); 11 } 12 13 14 -- Running test case: Canvas.updateShader.fragmentShaderValid 15 16 precision mediump float; 17 18 void main(void) { 19 gl_FragColor = vec4(0.1, 0.2, 0.3, 0.4); 20 } 21 22 23 -- Running test case: Canvas.updateShader.invalidProgramId 5 -- Running test case: Canvas.updateShader.ProgramId.Invalid 24 6 PASS: Should produce an error. 25 7 Error: Missing program for given programId 26 8 27 -- Running test case: Canvas.updateShader.invalidShaderType28 PASS: Should produce an error.29 Error: Missing shader for given shaderType30 31 -- Running test case: Canvas.updateShader.invalidVertexShaderSource32 PASS: Should produce error.33 Error: Failed to update shader34 35 -- Running test case: Canvas.updateShader.invalidFragmentShaderSource36 PASS: Should produce error.37 Error: Failed to update shader38 -
trunk/LayoutTests/inspector/canvas/updateShader-webgl.html
r250113 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities .js"></script>5 <script src="resources/shaderProgram-utilities-webgl.js"></script> 6 6 <script id="vertex-shader" type="x-shader/x-vertex"> 7 7 void main(void) { … … 25 25 26 26 function test() { 27 let suite = InspectorTest.createAsyncSuite("Canvas.updateShader ");27 let suite = InspectorTest.createAsyncSuite("Canvas.updateShader.WebGL"); 28 28 29 29 function validSourceTest({name, shaderType, source}) { … … 41 41 CanvasAgent.updateShader(programId, shaderType, source) 42 42 .then(() => CanvasAgent.requestShaderSource(programId, shaderType)) 43 .then(({ content}) => InspectorTest.log(content))43 .then(({source}) => InspectorTest.log(source)) 44 44 .then(resolve, reject); 45 45 } … … 48 48 49 49 validSourceTest({ 50 name: "Canvas.updateShader. vertexShaderValid",50 name: "Canvas.updateShader.WebGL.Vertex.Valid", 51 51 shaderType: CanvasAgent.ShaderType.Vertex, 52 52 source: ` … … 58 58 59 59 validSourceTest({ 60 name: "Canvas.updateShader. fragmentShaderValid",60 name: "Canvas.updateShader.WebGL.Fragment.Valid", 61 61 shaderType: CanvasAgent.ShaderType.Fragment, 62 62 source: ` … … 67 67 } 68 68 `, 69 });70 71 suite.addTestCase({72 name: "Canvas.updateShader.invalidProgramId",73 description: "Invalid program identifiers should cause an error.",74 test(resolve, reject) {75 const programId = "INVALID_PROGRAM_ID";76 const shaderType = "INVALID_SHADER_TYPE";77 const source = "INVALID_SOURCE";78 CanvasAgent.updateShader(programId, shaderType, source, (error) => {79 InspectorTest.expectThat(error, "Should produce an error.");80 InspectorTest.log("Error: " + error);81 resolve();82 });83 }84 });85 86 suite.addTestCase({87 name: "Canvas.updateShader.invalidShaderType",88 description: "Invalid shader types should cause an error.",89 test(resolve, reject) {90 let shaderProgram = WI.canvasManager.shaderPrograms[0];91 if (!shaderProgram) {92 reject("Missing shader program")93 return;94 }95 96 const shaderType = "INVALID_SHADER_TYPE";97 const source = "INVALID_SOURCE";98 CanvasAgent.updateShader(shaderProgram.identifier, shaderType, source, (error) => {99 InspectorTest.expectThat(error, "Should produce an error.");100 InspectorTest.log("Error: " + error);101 resolve();102 });103 }104 69 }); 105 70 … … 124 89 125 90 invalidSourceTest({ 126 name: "Canvas.updateShader. invalidVertexShaderSource",91 name: "Canvas.updateShader.WebGL.Vertex.Invalid", 127 92 shaderType: CanvasAgent.ShaderType.Vertex, 128 93 source: "INVALID", … … 130 95 131 96 invalidSourceTest({ 132 name: "Canvas.updateShader. invalidFragmentShaderSource",97 name: "Canvas.updateShader.WebGL.Fragment.Invalid", 133 98 shaderType: CanvasAgent.ShaderType.Fragment, 134 99 source: "INVALID", 100 }); 101 102 suite.addTestCase({ 103 name: "Canvas.updateShader.WebGL.ShaderType.Invalid", 104 description: "Invalid shader types should cause an error.", 105 test(resolve, reject) { 106 let shaderProgram = WI.canvasManager.shaderPrograms[0]; 107 if (!shaderProgram) { 108 reject("Missing shader program") 109 return; 110 } 111 112 const shaderType = "INVALID_SHADER_TYPE"; 113 const source = "INVALID_SOURCE"; 114 CanvasAgent.updateShader(shaderProgram.identifier, shaderType, source, (error) => { 115 InspectorTest.expectThat(error, "Should produce an error."); 116 InspectorTest.log("Error: " + error); 117 resolve(); 118 }); 119 } 135 120 }); 136 121 … … 140 125 </head> 141 126 <body onload="load()"> 142 <p>Test compilation of shaders after being attached to a program, with and without syntax errors.</p>127 <p>WebGL tests for Canvas.updateShader command.</p> 143 128 </body> 144 129 </html> -
trunk/LayoutTests/inspector/canvas/updateShader.html
r220436 r250114 3 3 <head> 4 4 <script src="../../http/tests/inspector/resources/inspector-test.js"></script> 5 <script src="resources/shaderProgram-utilities.js"></script>6 <script id="vertex-shader" type="x-shader/x-vertex">7 void main(void) {8 gl_Position = vec4(0.0, 0.0, 0.0, 1.0);9 }10 </script>11 <script id="fragment-shader" type="x-shader/x-fragment">12 precision mediump float;13 14 void main(void) {15 gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0);16 }17 </script>18 5 <script> 19 function load() {20 createProgram("webgl");21 linkProgram("vertex-shader", "fragment-shader");22 23 runTest();24 }25 26 6 function test() { 27 7 let suite = InspectorTest.createAsyncSuite("Canvas.updateShader"); 28 8 29 function validSourceTest({name, shaderType, source}) {30 suite.addTestCase({31 name,32 test(resolve, reject) {33 let shaderProgram = WI.canvasManager.shaderPrograms[0];34 if (!shaderProgram) {35 reject("Missing shader program")36 return;37 }38 39 let programId = shaderProgram.identifier;40 41 CanvasAgent.updateShader(programId, shaderType, source)42 .then(() => CanvasAgent.requestShaderSource(programId, shaderType))43 .then(({content}) => InspectorTest.log(content))44 .then(resolve, reject);45 }46 });47 }48 49 validSourceTest({50 name: "Canvas.updateShader.vertexShaderValid",51 shaderType: CanvasAgent.ShaderType.Vertex,52 source: `53 void main(void) {54 gl_Position = vec4(1, 2, 3, 4);55 }56 `,57 });58 59 validSourceTest({60 name: "Canvas.updateShader.fragmentShaderValid",61 shaderType: CanvasAgent.ShaderType.Fragment,62 source: `63 precision mediump float;64 65 void main(void) {66 gl_FragColor = vec4(0.1, 0.2, 0.3, 0.4);67 }68 `,69 });70 71 9 suite.addTestCase({ 72 name: "Canvas.updateShader. invalidProgramId",10 name: "Canvas.updateShader.ProgramId.Invalid", 73 11 description: "Invalid program identifiers should cause an error.", 74 12 test(resolve, reject) { … … 84 22 }); 85 23 86 suite.addTestCase({87 name: "Canvas.updateShader.invalidShaderType",88 description: "Invalid shader types should cause an error.",89 test(resolve, reject) {90 let shaderProgram = WI.canvasManager.shaderPrograms[0];91 if (!shaderProgram) {92 reject("Missing shader program")93 return;94 }95 96 const shaderType = "INVALID_SHADER_TYPE";97 const source = "INVALID_SOURCE";98 CanvasAgent.updateShader(shaderProgram.identifier, shaderType, source, (error) => {99 InspectorTest.expectThat(error, "Should produce an error.");100 InspectorTest.log("Error: " + error);101 resolve();102 });103 }104 });105 106 function invalidSourceTest({name, shaderType, source}) {107 suite.addTestCase({108 name,109 test(resolve, reject) {110 let shaderProgram = WI.canvasManager.shaderPrograms[0];111 if (!shaderProgram) {112 reject("Missing shader program")113 return;114 }115 116 CanvasAgent.updateShader(shaderProgram.identifier, shaderType, source, (error) => {117 InspectorTest.expectThat(error, "Should produce error.");118 InspectorTest.log("Error: " + error);119 resolve();120 });121 }122 });123 }124 125 invalidSourceTest({126 name: "Canvas.updateShader.invalidVertexShaderSource",127 shaderType: CanvasAgent.ShaderType.Vertex,128 source: "INVALID",129 });130 131 invalidSourceTest({132 name: "Canvas.updateShader.invalidFragmentShaderSource",133 shaderType: CanvasAgent.ShaderType.Fragment,134 source: "INVALID",135 });136 137 24 suite.runTestCasesAndFinish(); 138 25 } 139 26 </script> 140 27 </head> 141 <body onload=" load()">142 <p>Test compilation of shaders after being attached to a program, with and without syntax errors.</p>28 <body onload="runTest()"> 29 <p>Common tests for Canvas.updateShader command.</p> 143 30 </body> 144 31 </html> -
trunk/LayoutTests/platform/gtk/TestExpectations
r250090 r250114 1151 1151 webkit.org/b/191005 inspector/canvas/create-context-webgpu.html [ Skip ] 1152 1152 webkit.org/b/191005 inspector/canvas/requestClientNodes-webgpu.html [ Skip ] 1153 webkit.org/b/191005 inspector/canvas/requestShaderSource-webgpu.html [ Skip ] 1153 1154 webkit.org/b/191005 inspector/canvas/resolveContext-webgpu.html [ Skip ] 1155 webkit.org/b/191005 inspector/canvas/shaderProgram-add-remove-webgpu.html [ Skip ] 1156 webkit.org/b/191005 inspector/canvas/updateShader-webgpu.html [ Skip ] 1154 1157 1155 1158 # No support for resource load statistics yet -
trunk/LayoutTests/platform/ios/TestExpectations
r250055 r250114 46 46 inspector/canvas/create-context-webgpu.html [ Skip ] 47 47 inspector/canvas/requestClientNodes-webgpu.html [ Skip ] 48 inspector/canvas/requestShaderSource-webgpu.html [ Skip ] 48 49 inspector/canvas/resolveContext-webgpu.html [ Skip ] 50 inspector/canvas/shaderProgram-add-remove-webgpu.html [ Skip ] 51 inspector/canvas/updateShader-webgpu.html [ Skip ] 49 52 50 53 # Encrypted Media Extensions are not enabled -
trunk/LayoutTests/platform/mac-wk1/TestExpectations
r249870 r250114 48 48 inspector/canvas/create-context-webgpu.html [ Skip ] 49 49 inspector/canvas/requestClientNodes-webgpu.html [ Skip ] 50 inspector/canvas/requestShaderSource-webgpu.html [ Skip ] 50 51 inspector/canvas/resolveContext-webgpu.html [ Skip ] 52 inspector/canvas/shaderProgram-add-remove-webgpu.html [ Skip ] 53 inspector/canvas/updateShader-webgpu.html [ Skip ] 51 54 52 55 # Media Stream API testing is not supported for WK1 yet. -
trunk/LayoutTests/platform/mac/TestExpectations
r250044 r250114 1782 1782 webkit.org/b/199275 [ HighSierra ] inspector/canvas/create-context-webgpu.html [ Skip ] 1783 1783 webkit.org/b/199275 [ HighSierra ] inspector/canvas/requestClientNodes-webgpu.html [ Skip ] 1784 webkit.org/b/199275 [ HighSierra ] inspector/canvas/requestShaderSource-webgpu.html [ Skip ] 1784 1785 webkit.org/b/199275 [ HighSierra ] inspector/canvas/resolveContext-webgpu.html [ Skip ] 1786 webkit.org/b/199275 [ HighSierra ] inspector/canvas/shaderProgram-add-remove-webgpu.html [ Skip ] 1787 webkit.org/b/199275 [ HighSierra ] inspector/canvas/updateShader-webgpu.html [ Skip ] 1785 1788 1786 1789 webkit.org/b/189680 platform/mac/media/audio-session-category-video-paused.html [ Pass Timeout ] -
trunk/LayoutTests/platform/win/TestExpectations
r249918 r250114 2002 2002 inspector/canvas/requestContent-webgl.html [ Skip ] 2003 2003 inspector/canvas/requestContent-webgl2.html [ Skip ] 2004 inspector/canvas/requestShaderSource .html [ Skip ]2004 inspector/canvas/requestShaderSource-webgl.html [ Skip ] 2005 2005 inspector/canvas/resolveContext-webgl.html [ Skip ] 2006 2006 inspector/canvas/resolveContext-webgl2.html [ Skip ] 2007 2007 inspector/canvas/shaderProgram-add-remove-webgl.html [ Skip ] 2008 2008 inspector/canvas/shaderProgram-add-remove-webgl2.html [ Skip ] 2009 inspector/canvas/updateShader.html [ Skip ] 2009 inspector/canvas/updateShader-webgl.html [ Skip ] 2010 2010 2011 ################################################################################ 2011 2012 ################# End WebGL Issues ####################### … … 4247 4248 inspector/canvas/create-context-webgpu.html [ Skip ] 4248 4249 inspector/canvas/requestClientNodes-webgpu.html [ Skip ] 4250 inspector/canvas/requestShaderSource-webgpu.html [ Skip ] 4249 4251 inspector/canvas/resolveContext-webgpu.html [ Skip ] 4252 inspector/canvas/shaderProgram-add-remove-webgpu.html [ Skip ] 4253 inspector/canvas/updateShader-webgpu.html [ Skip ] 4250 4254 4251 4255 webkit.org/b/191194 fast/block/basic/inline-content-with-floating-image.html [ Failure ] -
trunk/LayoutTests/platform/wincairo/TestExpectations
r249918 r250114 299 299 inspector/canvas/create-context-webgpu.html [ Skip ] 300 300 inspector/canvas/requestClientNodes-webgpu.html [ Skip ] 301 inspector/canvas/requestShaderSource-webgpu.html [ Skip ] 301 302 inspector/canvas/resolveContext-webgpu.html [ Skip ] 303 inspector/canvas/shaderProgram-add-remove-webgpu.html [ Skip ] 304 inspector/canvas/updateShader-webgpu.html [ Skip ] 302 305 303 306 # WIRELESS_PLAYBACK_TARGET is disabled -
trunk/LayoutTests/platform/wpe/TestExpectations
r250090 r250114 303 303 inspector/canvas/create-context-webgpu.html [ Skip ] 304 304 inspector/canvas/requestClientNodes-webgpu.html [ Skip ] 305 inspector/canvas/requestShaderSource-webgpu.html [ Skip ] 305 306 inspector/canvas/resolveContext-webgpu.html [ Skip ] 307 inspector/canvas/shaderProgram-add-remove-webgpu.html [ Skip ] 308 inspector/canvas/updateShader-webgpu.html [ Skip ] 306 309 307 310 # Skipped due to untestable DRM key system. ClearKey counterparts are tested instead. -
trunk/Source/JavaScriptCore/ChangeLog
r250112 r250114 1 2019-09-19 Devin Rousso <drousso@apple.com> 2 3 Web Inspector: Canvas: show WebGPU shader pipelines 4 https://bugs.webkit.org/show_bug.cgi?id=201675 5 6 Reviewed by Joseph Pecoraro. 7 8 * inspector/protocol/Canvas.json: 9 Add a `ProgramType` enum that conveys the type of shader program/pipeline when notifying the 10 frontend of a new program 11 1 12 2019-09-19 Mark Lam <mark.lam@apple.com> 2 13 -
trunk/Source/JavaScriptCore/inspector/protocol/Canvas.json
r249786 r250114 21 21 }, 22 22 { 23 "id": "ProgramType", 24 "type": "string", 25 "enum": ["compute", "render"] 26 }, 27 { 23 28 "id": "ShaderType", 24 29 "type": "string", 25 "enum": ["fragment", "vertex"], 26 "description": "Shader type. WebGL supports vertex and fragment shaders." 30 "enum": ["compute", "fragment", "vertex"] 27 31 }, 28 32 { … … 137 141 ], 138 142 "returns": [ 139 { "name": " content", "type": "string" }143 { "name": "source", "type": "string" } 140 144 ] 141 145 }, … … 224 228 "name": "programCreated", 225 229 "parameters": [ 226 { "name": "canvasId", "$ref": "CanvasId", "description": "Canvas identifier." }, 227 { "name": "programId", "$ref": "ProgramId", "description": "Program identifier." } 230 { "name": "canvasId", "$ref": "CanvasId"} , 231 { "name": "programId", "$ref": "ProgramId" }, 232 { "name": "programType", "$ref": "ProgramType" } 228 233 ] 229 234 }, … … 231 236 "name": "programDeleted", 232 237 "parameters": [ 233 { "name": "programId", "$ref": "ProgramId" , "description": "Program identifier."}238 { "name": "programId", "$ref": "ProgramId" } 234 239 ] 235 240 } -
trunk/Source/WebCore/ChangeLog
r250104 r250114 1 2019-09-19 Devin Rousso <drousso@apple.com> 2 3 Web Inspector: Canvas: show WebGPU shader pipelines 4 https://bugs.webkit.org/show_bug.cgi?id=201675 5 6 Reviewed by Joseph Pecoraro. 7 8 Tests: inspector/canvas/requestShaderSource-webgpu.html 9 inspector/canvas/shaderProgram-add-remove-webgpu.html 10 inspector/canvas/updateShader-webgpu.html 11 12 Create common base classes for `WebGPUPipeline` and `GPUPipeline` so that Web Inspector can 13 instrument both render and compute shader pipelines. 14 15 Refactor `InspectorShaderProgram` to support both `WebGLProgram` and `WebGPUPipeline` so 16 that the same object can be used for all types of shader "program"s. 17 18 Keep a copy of each shader module's source, and allow the shader module to be updated. 19 20 * Modules/webgpu/WebGPUDevice.h: 21 * Modules/webgpu/WebGPUDevice.cpp: 22 (WebCore::WebGPUDevice::createShaderModule const): 23 (WebCore::WebGPUDevice::createRenderPipeline): Added. 24 (WebCore::WebGPUDevice::createComputePipeline): Added. 25 (WebCore::WebGPUDevice::createRenderPipeline const): Deleted. 26 (WebCore::WebGPUDevice::createComputePipeline const): Deleted. 27 28 * Modules/webgpu/WebGPUPipeline.h: Added. 29 (WebCore::WebGPUPipeline::isRenderPipeline const): 30 (WebCore::WebGPUPipeline::isComputePipeline const): 31 (WebCore::WebGPUPipeline::scriptExecutionContext const): 32 * Modules/webgpu/WebGPUPipeline.cpp: Added. 33 (WebCore::WebGPUPipeline::instancesMutex): 34 (WebCore::WebGPUPipeline::WebGPUPipeline): 35 (WebCore::WebGPUPipeline::~WebGPUPipeline): 36 * platform/graphics/gpu/GPUPipeline.cpp: Added. 37 * platform/graphics/gpu/GPUPipeline.h: Added. 38 (WebCore::GPUPipeline::isRenderPipeline const): 39 (WebCore::GPUPipeline::isComputePipeline const): 40 41 * Modules/webgpu/WebGPUComputePipeline.idl: 42 * Modules/webgpu/WebGPUComputePipeline.h: 43 (WebCore::WebGPUComputePipeline::computePipeline const): Deleted. 44 * Modules/webgpu/WebGPUComputePipeline.cpp: 45 (WebCore::WebGPUComputePipeline::create): 46 (WebCore::WebGPUComputePipeline::WebGPUComputePipeline): 47 (WebCore::WebGPUComputePipeline::recompile): Added. 48 * platform/graphics/gpu/GPUComputePipeline.h: 49 (WebCore::GPUComputePipeline::isComputePipeline): Added. 50 * platform/graphics/gpu/cocoa/GPUComputePipelineMetal.mm: 51 (WebCore::GPUComputePipeline::tryCreate): 52 (WebCore::GPUComputePipeline::GPUComputePipeline): 53 (WebCore::GPUComputePipeline::recompile): Added. 54 55 * Modules/webgpu/WebGPURenderPipeline.idl: 56 * Modules/webgpu/WebGPURenderPipeline.h: 57 (WebCore::WebGPURenderPipeline::renderPipeline const): Deleted. 58 * Modules/webgpu/WebGPURenderPipeline.cpp: 59 (WebCore::WebGPURenderPipeline::create): 60 (WebCore::WebGPURenderPipeline::WebGPURenderPipeline): 61 (WebCore::WebGPURenderPipeline::recompile): Added. 62 * platform/graphics/gpu/GPURenderPipeline.h: 63 (WebCore::GPURenderPipeline::isRenderPipeline): Added. 64 * platform/graphics/gpu/cocoa/GPURenderPipelineMetal.mm: 65 (WebCore::tryCreateMtlRenderPipelineState): 66 (WebCore::GPURenderPipeline::tryCreate): 67 (WebCore::GPURenderPipeline::GPURenderPipeline): 68 (WebCore::GPURenderPipeline::recompile): Added. 69 70 * Modules/webgpu/WebGPUShaderModule.h: 71 (WebCore::WebGPUShaderModule::source const): Added. 72 * Modules/webgpu/WebGPUShaderModule.cpp: 73 (WebCore::WebGPUShaderModule::update): Added. 74 * Modules/webgpu/WebGPUProgrammableStageDescriptor.h: 75 * platform/graphics/gpu/GPUProgrammableStageDescriptor.h: 76 (WebCore::GPUProgrammableStageDescriptor::GPUProgrammableStageDescriptor): 77 78 * inspector/InspectorShaderProgram.h: 79 * inspector/InspectorShaderProgram.cpp: 80 (WebCore::InspectorShaderProgram::create): 81 (WebCore::InspectorShaderProgram::InspectorShaderProgram): 82 (WebCore::InspectorShaderProgram::program const): Added. 83 (WebCore::InspectorShaderProgram::pipeline const): Added. 84 (WebCore::shaderForType): Added. 85 (WebCore::InspectorShaderProgram::requestShaderSource): Added. 86 (WebCore::InspectorShaderProgram::updateShader): Added. 87 (WebCore::InspectorShaderProgram::context const): Deleted. 88 (WebCore::InspectorShaderProgram::shaderForType): Deleted. 89 90 * inspector/agents/InspectorCanvasAgent.h: 91 * inspector/agents/InspectorCanvasAgent.cpp: 92 (WebCore::InspectorCanvasAgent::InspectorCanvasAgent): 93 (WebCore::InspectorCanvasAgent::discardAgent): 94 (WebCore::InspectorCanvasAgent::enable): 95 (WebCore::InspectorCanvasAgent::disable): 96 (WebCore::InspectorCanvasAgent::requestShaderSource): 97 (WebCore::InspectorCanvasAgent::updateShader): 98 (WebCore::InspectorCanvasAgent::setShaderProgramDisabled): 99 (WebCore::InspectorCanvasAgent::setShaderProgramHighlighted): 100 (WebCore::InspectorCanvasAgent::frameNavigated): 101 (WebCore::InspectorCanvasAgent::didCreateWebGLProgram): Added. 102 (WebCore::InspectorCanvasAgent::willDestroyWebGLProgram): Added. 103 (WebCore::InspectorCanvasAgent::isWebGLProgramDisabled): Added. 104 (WebCore::InspectorCanvasAgent::isWebGLProgramHighlighted): Added. 105 (WebCore::InspectorCanvasAgent::didCreateWebGPUPipeline): Added. 106 (WebCore::InspectorCanvasAgent::willDestroyWebGPUPipeline): Added. 107 (WebCore::InspectorCanvasAgent::programDestroyedTimerFired): Added. 108 (WebCore::InspectorCanvasAgent::reset): Added. 109 (WebCore::InspectorCanvasAgent::unbindProgram): 110 (WebCore::InspectorCanvasAgent::findInspectorProgram): 111 (WebCore::InspectorCanvasAgent::didCreateProgram): Deleted. 112 (WebCore::InspectorCanvasAgent::willDeleteProgram): Deleted. 113 (WebCore::InspectorCanvasAgent::isShaderProgramDisabled): Deleted. 114 (WebCore::InspectorCanvasAgent::isShaderProgramHighlighted): Deleted. 115 (WebCore::InspectorCanvasAgent::clearCanvasData): Deleted. 116 * inspector/InspectorInstrumentation.h: 117 (WebCore::InspectorInstrumentation::didCreateWebGLProgram): Added. 118 (WebCore::InspectorInstrumentation::willDestroyWebGLProgram): Added. 119 (WebCore::InspectorInstrumentation::isWebGLProgramDisabled): Added. 120 (WebCore::InspectorInstrumentation::isWebGLProgramHighlighted): Added. 121 (WebCore::InspectorInstrumentation::didCreateWebGPUPipeline): Added. 122 (WebCore::InspectorInstrumentation::willDestroyWebGPUPipeline): Added. 123 (WebCore::InspectorInstrumentation::didCreateProgram): Deleted. 124 (WebCore::InspectorInstrumentation::willDeleteProgram): Deleted. 125 (WebCore::InspectorInstrumentation::isShaderProgramDisabled): Deleted. 126 (WebCore::InspectorInstrumentation::isShaderProgramHighlighted): Deleted. 127 * inspector/InspectorInstrumentation.cpp: 128 (WebCore::InspectorInstrumentation::didCreateWebGLProgramImpl): Added. 129 (WebCore::InspectorInstrumentation::willDestroyWebGLProgramImpl): Added. 130 (WebCore::InspectorInstrumentation::isWebGLProgramDisabledImpl): Added. 131 (WebCore::InspectorInstrumentation::isWebGLProgramHighlightedImpl): Added. 132 (WebCore::InspectorInstrumentation::didCreateWebGPUPipelineImpl): Added. 133 (WebCore::InspectorInstrumentation::willDestroyWebGPUPipelineImpl): Added. 134 (WebCore::InspectorInstrumentation::didCreateProgramImpl): Deleted. 135 (WebCore::InspectorInstrumentation::willDeleteProgramImpl): Deleted. 136 (WebCore::InspectorInstrumentation::isShaderProgramDisabledImpl): Deleted. 137 (WebCore::InspectorInstrumentation::isShaderProgramHighlightedImpl): Deleted. 138 139 * html/canvas/WebGLProgram.h: 140 * html/canvas/WebGLProgram.cpp: 141 (WebCore::WebGLProgram::WebGLProgram): 142 (WebCore::WebGLProgram::~WebGLProgram): 143 * html/canvas/WebGLRenderingContextBase.cpp: 144 (WebCore::InspectorScopedShaderProgramHighlight::showHightlight): 145 (WebCore::WebGLRenderingContextBase::createProgram): 146 (WebCore::WebGLRenderingContextBase::deleteProgram): 147 (WebCore::WebGLRenderingContextBase::drawArrays): 148 (WebCore::WebGLRenderingContextBase::drawElements): 149 Rename WebGL program instrumentation points to be less ambiguous. 150 151 * Sources.txt: 152 * WebCore.xcodeproj/project.pbxproj: 153 1 154 2019-09-19 Chris Dumez <cdumez@apple.com> 2 155 -
trunk/Source/WebCore/Modules/webgpu/WebGPUComputePipeline.cpp
r249881 r250114 29 29 #if ENABLE(WEBGPU) 30 30 31 #include "GPUComputePipeline.h" 32 #include "GPUErrorScopes.h" 33 #include "GPUPipeline.h" 34 #include "GPUProgrammableStageDescriptor.h" 35 #include "WebGPUDevice.h" 36 #include <wtf/Optional.h> 37 #include <wtf/Ref.h> 38 31 39 namespace WebCore { 32 40 33 Ref<WebGPUComputePipeline> WebGPUComputePipeline::create( RefPtr<GPUComputePipeline>&& pipeline, GPUErrorScopes& errorScopes)41 Ref<WebGPUComputePipeline> WebGPUComputePipeline::create(WebGPUDevice& device, RefPtr<GPUComputePipeline>&& pipeline, GPUErrorScopes& errorScopes, Optional<WebGPUPipeline::ShaderData> computeShader) 34 42 { 35 return adoptRef(*new WebGPUComputePipeline( WTFMove(pipeline), errorScopes));43 return adoptRef(*new WebGPUComputePipeline(device, WTFMove(pipeline), errorScopes, computeShader)); 36 44 } 37 45 38 WebGPUComputePipeline::WebGPUComputePipeline(RefPtr<GPUComputePipeline>&& pipeline, GPUErrorScopes& errorScopes) 39 : GPUObjectBase(makeRef(errorScopes)) 40 , m_computePipeline { WTFMove(pipeline) } 46 WebGPUComputePipeline::WebGPUComputePipeline(WebGPUDevice& device, RefPtr<GPUComputePipeline>&& pipeline, GPUErrorScopes& errorScopes, Optional<WebGPUPipeline::ShaderData> computeShader) 47 : WebGPUPipeline(device, errorScopes) 48 , m_computePipeline(WTFMove(pipeline)) 49 , m_computeShader(computeShader) 41 50 { 51 } 52 53 WebGPUComputePipeline::~WebGPUComputePipeline() = default; 54 55 bool WebGPUComputePipeline::recompile(const WebGPUDevice& device) 56 { 57 if (m_computePipeline && m_computeShader) { 58 if (auto& webGPUComputeShaderModule = m_computeShader.value().module) { 59 if (auto* gpuComputeShaderModule = webGPUComputeShaderModule->module()) { 60 GPUProgrammableStageDescriptor computeStage(makeRef(*gpuComputeShaderModule), { m_computeShader.value().entryPoint }); 61 return m_computePipeline->recompile(device.device(), WTFMove(computeStage)); 62 } 63 } 64 } 65 return false; 42 66 } 43 67 -
trunk/Source/WebCore/Modules/webgpu/WebGPUComputePipeline.h
r249881 r250114 28 28 #if ENABLE(WEBGPU) 29 29 30 #include "GPUComputePipeline.h" 31 #include "GPUObjectBase.h" 32 #include <wtf/RefPtr.h> 30 #include "WebGPUPipeline.h" 31 #include <wtf/Forward.h> 33 32 34 33 namespace WebCore { 35 34 36 class WebGPUComputePipeline : public GPUObjectBase { 35 class GPUComputePipeline; 36 class GPUPipeline; 37 class GPUErrorScopes; 38 class WebGPUDevice; 39 40 class WebGPUComputePipeline final : public WebGPUPipeline { 37 41 public: 38 static Ref<WebGPUComputePipeline> create(RefPtr<GPUComputePipeline>&&, GPUErrorScopes&);42 virtual ~WebGPUComputePipeline(); 39 43 44 static Ref<WebGPUComputePipeline> create(WebGPUDevice&, RefPtr<GPUComputePipeline>&&, GPUErrorScopes&, Optional<WebGPUPipeline::ShaderData> computeShader); 45 46 bool isComputePipeline() const { return true; } 47 48 bool isValid() const { return computePipeline(); } 40 49 const GPUComputePipeline* computePipeline() const { return m_computePipeline.get(); } 50 Optional<WebGPUPipeline::ShaderData> computeShader() const { return m_computeShader; } 51 52 bool recompile(const WebGPUDevice&); 41 53 42 54 private: 43 WebGPUComputePipeline( RefPtr<GPUComputePipeline>&&, GPUErrorScopes&);55 WebGPUComputePipeline(WebGPUDevice&, RefPtr<GPUComputePipeline>&&, GPUErrorScopes&, Optional<WebGPUPipeline::ShaderData> computeShader); 44 56 45 57 RefPtr<GPUComputePipeline> m_computePipeline; 58 59 // Preserved for Web Inspector recompilation. 60 Optional<WebGPUPipeline::ShaderData> m_computeShader; 46 61 }; 47 62 48 63 } // namespace WebCore 49 64 65 SPECIALIZE_TYPE_TRAITS_WEBGPUPIPELINE(WebCore::WebGPUComputePipeline, isComputePipeline()) 66 50 67 #endif // ENABLE(WEBGPU) -
trunk/Source/WebCore/Modules/webgpu/WebGPUComputePipeline.idl
r247293 r250114 28 28 Conditional=WEBGPU, 29 29 EnabledAtRuntime=WebGPU, 30 ImplementationLacksVTable,31 30 InterfaceName=GPUComputePipeline 32 31 ] interface WebGPUComputePipeline { -
trunk/Source/WebCore/Modules/webgpu/WebGPUDevice.cpp
r249881 r250114 40 40 #include "GPUBufferDescriptor.h" 41 41 #include "GPUCommandBuffer.h" 42 #include "GPUComputePipeline.h" 42 43 #include "GPUComputePipelineDescriptor.h" 43 44 #include "GPUProgrammableStageDescriptor.h" 45 #include "GPURenderPipeline.h" 44 46 #include "GPURenderPipelineDescriptor.h" 45 47 #include "GPUSampler.h" … … 206 208 // FIXME: What can be validated here? 207 209 auto module = m_device->tryCreateShaderModule(GPUShaderModuleDescriptor { descriptor.code }); 208 return WebGPUShaderModule::create(WTFMove(module) );209 } 210 211 Ref<WebGPURenderPipeline> WebGPUDevice::createRenderPipeline(const WebGPURenderPipelineDescriptor& descriptor) const210 return WebGPUShaderModule::create(WTFMove(module), descriptor.code); 211 } 212 213 Ref<WebGPURenderPipeline> WebGPUDevice::createRenderPipeline(const WebGPURenderPipelineDescriptor& descriptor) 212 214 { 213 215 m_errorScopes->setErrorPrefix("GPUDevice.createRenderPipeline(): "); … … 215 217 auto gpuDescriptor = descriptor.tryCreateGPURenderPipelineDescriptor(m_errorScopes); 216 218 if (!gpuDescriptor) 217 return WebGPURenderPipeline::create(nullptr, m_errorScopes); 218 219 auto pipeline = m_device->tryCreateRenderPipeline(*gpuDescriptor, m_errorScopes); 220 return WebGPURenderPipeline::create(WTFMove(pipeline), m_errorScopes); 221 } 222 223 Ref<WebGPUComputePipeline> WebGPUDevice::createComputePipeline(const WebGPUComputePipelineDescriptor& descriptor) const 219 return WebGPURenderPipeline::create(*this, nullptr, m_errorScopes, WTF::nullopt, WTF::nullopt); 220 221 auto gpuPipeline = m_device->tryCreateRenderPipeline(*gpuDescriptor, m_errorScopes); 222 223 WebGPUPipeline::ShaderData vertexShader = { descriptor.vertexStage.module, descriptor.vertexStage.entryPoint }; 224 225 Optional<WebGPUPipeline::ShaderData> fragmentShader; 226 if (descriptor.fragmentStage) 227 fragmentShader = { { descriptor.fragmentStage.value().module, descriptor.fragmentStage.value().entryPoint } }; 228 229 auto webGPUPipeline = WebGPURenderPipeline::create(*this, WTFMove(gpuPipeline), m_errorScopes, vertexShader, fragmentShader); 230 if (webGPUPipeline->isValid()) 231 InspectorInstrumentation::didCreateWebGPUPipeline(*this, webGPUPipeline.get()); 232 return webGPUPipeline; 233 } 234 235 Ref<WebGPUComputePipeline> WebGPUDevice::createComputePipeline(const WebGPUComputePipelineDescriptor& descriptor) 224 236 { 225 237 m_errorScopes->setErrorPrefix("GPUDevice.createComputePipeline(): "); … … 227 239 auto gpuDescriptor = descriptor.tryCreateGPUComputePipelineDescriptor(m_errorScopes); 228 240 if (!gpuDescriptor) 229 return WebGPUComputePipeline::create(nullptr, m_errorScopes); 230 231 auto pipeline = m_device->tryCreateComputePipeline(*gpuDescriptor, m_errorScopes); 232 return WebGPUComputePipeline::create(WTFMove(pipeline), m_errorScopes); 241 return WebGPUComputePipeline::create(*this, nullptr, m_errorScopes, WTF::nullopt); 242 243 auto gpuPipeline = m_device->tryCreateComputePipeline(*gpuDescriptor, m_errorScopes); 244 245 WebGPUPipeline::ShaderData computeShader = { descriptor.computeStage.module, descriptor.computeStage.entryPoint }; 246 247 auto webGPUPipeline = WebGPUComputePipeline::create(*this, WTFMove(gpuPipeline), m_errorScopes, computeShader); 248 if (webGPUPipeline->isValid()) 249 InspectorInstrumentation::didCreateWebGPUPipeline(*this, webGPUPipeline.get()); 250 return webGPUPipeline; 233 251 } 234 252 -
trunk/Source/WebCore/Modules/webgpu/WebGPUDevice.h
r249786 r250114 100 100 101 101 Ref<WebGPUShaderModule> createShaderModule(const WebGPUShaderModuleDescriptor&) const; 102 Ref<WebGPURenderPipeline> createRenderPipeline(const WebGPURenderPipelineDescriptor&) const;103 Ref<WebGPUComputePipeline> createComputePipeline(const WebGPUComputePipelineDescriptor&) const;102 Ref<WebGPURenderPipeline> createRenderPipeline(const WebGPURenderPipelineDescriptor&); 103 Ref<WebGPUComputePipeline> createComputePipeline(const WebGPUComputePipelineDescriptor&); 104 104 105 105 Ref<WebGPUCommandEncoder> createCommandEncoder() const; -
trunk/Source/WebCore/Modules/webgpu/WebGPUPipeline.cpp
r250113 r250114 25 25 26 26 #include "config.h" 27 #include "WebGPU ComputePipeline.h"27 #include "WebGPUPipeline.h" 28 28 29 29 #if ENABLE(WEBGPU) 30 30 31 #include "GPUErrorScopes.h" 32 #include "InspectorInstrumentation.h" 33 #include "ScriptExecutionContext.h" 34 #include "WebGPUDevice.h" 35 #include <wtf/HashMap.h> 36 #include <wtf/Lock.h> 37 #include <wtf/NeverDestroyed.h> 38 #include <wtf/Ref.h> 39 31 40 namespace WebCore { 32 41 33 Ref<WebGPUComputePipeline> WebGPUComputePipeline::create(RefPtr<GPUComputePipeline>&& pipeline, GPUErrorScopes& errorScopes)42 HashMap<WebGPUPipeline*, WebGPUDevice*>& WebGPUPipeline::instances(const LockHolder&) 34 43 { 35 return adoptRef(*new WebGPUComputePipeline(WTFMove(pipeline), errorScopes)); 44 static NeverDestroyed<HashMap<WebGPUPipeline*, WebGPUDevice*>> instances; 45 return instances; 36 46 } 37 47 38 WebGPUComputePipeline::WebGPUComputePipeline(RefPtr<GPUComputePipeline>&& pipeline, GPUErrorScopes& errorScopes) 48 Lock& WebGPUPipeline::instancesMutex() 49 { 50 static LazyNeverDestroyed<Lock> mutex; 51 static std::once_flag initializeMutex; 52 std::call_once(initializeMutex, [] { 53 mutex.construct(); 54 }); 55 return mutex.get(); 56 } 57 58 WebGPUPipeline::WebGPUPipeline(WebGPUDevice& device, GPUErrorScopes& errorScopes) 39 59 : GPUObjectBase(makeRef(errorScopes)) 40 , m_ computePipeline { WTFMove(pipeline) }60 , m_scriptExecutionContext(device.scriptExecutionContext()) 41 61 { 62 LockHolder lock(instancesMutex()); 63 instances(lock).add(this, &device); 64 } 65 66 WebGPUPipeline::~WebGPUPipeline() 67 { 68 InspectorInstrumentation::willDestroyWebGPUPipeline(*this); 69 70 { 71 LockHolder lock(instancesMutex()); 72 ASSERT(instances(lock).contains(this)); 73 instances(lock).remove(this); 74 } 42 75 } 43 76 -
trunk/Source/WebCore/Modules/webgpu/WebGPUPipeline.h
r250113 r250114 28 28 #if ENABLE(WEBGPU) 29 29 30 #include "WHLSLPrepare.h" 31 #include <wtf/RefCounted.h> 32 #include <wtf/RefPtr.h> 33 #include <wtf/RetainPtr.h> 34 35 OBJC_PROTOCOL(MTLComputePipelineState); 30 #include "GPUObjectBase.h" 31 #include "WebGPUShaderModule.h" 32 #include <wtf/Forward.h> 36 33 37 34 namespace WebCore { 38 35 39 class GPUDevice;36 class ScriptExecutionContext; 40 37 class GPUErrorScopes; 38 class WebGPUDevice; 41 39 42 struct GPUComputePipelineDescriptor; 40 class WebGPUPipeline : public GPUObjectBase { 41 public: 42 virtual ~WebGPUPipeline(); 43 43 44 using PlatformComputePipeline = MTLComputePipelineState;45 using PlatformComputePipelineSmartPtr = RetainPtr<MTLComputePipelineState>;44 static HashMap<WebGPUPipeline*, WebGPUDevice*>& instances(const LockHolder&); 45 static Lock& instancesMutex(); 46 46 47 class GPUComputePipeline : public RefCounted<GPUComputePipeline> { 48 public: 49 static RefPtr<GPUComputePipeline> tryCreate(const GPUDevice&, const GPUComputePipelineDescriptor&, GPUErrorScopes&); 47 virtual bool isRenderPipeline() const { return false; } 48 virtual bool isComputePipeline() const { return false; } 50 49 51 const PlatformComputePipeline* platformComputePipeline() const { return m_platformComputePipeline.get(); } 50 ScriptExecutionContext* scriptExecutionContext() const { return m_scriptExecutionContext; } 51 virtual bool isValid() const = 0; 52 52 53 WHLSL::ComputeDimensions computeDimensions() const { return m_computeDimensions; } 53 struct ShaderData { 54 RefPtr<WebGPUShaderModule> module; 55 String entryPoint; 56 }; 54 57 55 private: 56 GPUComputePipeline(PlatformComputePipelineSmartPtr&&, WHLSL::ComputeDimensions); 58 virtual bool recompile(const WebGPUDevice&) = 0; 57 59 58 PlatformComputePipelineSmartPtr m_platformComputePipeline; 59 WHLSL::ComputeDimensions m_computeDimensions { 0, 0, 0 }; 60 protected: 61 WebGPUPipeline(WebGPUDevice&, GPUErrorScopes&); 62 63 ScriptExecutionContext* m_scriptExecutionContext; 60 64 }; 61 65 62 66 } // namespace WebCore 63 67 68 #define SPECIALIZE_TYPE_TRAITS_WEBGPUPIPELINE(ToValueTypeName, predicate) \ 69 SPECIALIZE_TYPE_TRAITS_BEGIN(ToValueTypeName) \ 70 static bool isType(const WebCore::WebGPUPipeline& pipeline) { return pipeline.predicate; } \ 71 SPECIALIZE_TYPE_TRAITS_END() 72 64 73 #endif // ENABLE(WEBGPU) -
trunk/Source/WebCore/Modules/webgpu/WebGPUProgrammableStageDescriptor.h
r249601 r250114 38 38 Optional<GPUProgrammableStageDescriptor> tryCreateGPUProgrammableStageDescriptor() const; 39 39 40 RefPtr< constWebGPUShaderModule> module;40 RefPtr<WebGPUShaderModule> module; 41 41 }; 42 42 -
trunk/Source/WebCore/Modules/webgpu/WebGPURenderPipeline.cpp
r249881 r250114 29 29 #if ENABLE(WEBGPU) 30 30 31 #include "GPUErrorScopes.h" 32 #include "GPUPipeline.h" 33 #include "GPUProgrammableStageDescriptor.h" 34 #include "GPURenderPipeline.h" 35 #include "WebGPUDevice.h" 36 #include <wtf/Optional.h> 37 #include <wtf/Ref.h> 38 31 39 namespace WebCore { 32 40 33 Ref<WebGPURenderPipeline> WebGPURenderPipeline::create( RefPtr<GPURenderPipeline>&& pipeline, GPUErrorScopes& errorScopes)41 Ref<WebGPURenderPipeline> WebGPURenderPipeline::create(WebGPUDevice& device, RefPtr<GPURenderPipeline>&& pipeline, GPUErrorScopes& errorScopes, Optional<WebGPUPipeline::ShaderData> vertexShader, Optional<WebGPUPipeline::ShaderData> fragmentShader) 34 42 { 35 return adoptRef(*new WebGPURenderPipeline( WTFMove(pipeline), errorScopes));43 return adoptRef(*new WebGPURenderPipeline(device, WTFMove(pipeline), errorScopes, vertexShader, fragmentShader)); 36 44 } 37 45 38 WebGPURenderPipeline::WebGPURenderPipeline( RefPtr<GPURenderPipeline>&& pipeline, GPUErrorScopes& errorScopes)39 : GPUObjectBase(makeRef(errorScopes))46 WebGPURenderPipeline::WebGPURenderPipeline(WebGPUDevice& device, RefPtr<GPURenderPipeline>&& pipeline, GPUErrorScopes& errorScopes, Optional<WebGPUPipeline::ShaderData> vertexShader, Optional<WebGPUPipeline::ShaderData> fragmentShader) 47 : WebGPUPipeline(device, errorScopes) 40 48 , m_renderPipeline(WTFMove(pipeline)) 49 , m_vertexShader(vertexShader) 50 , m_fragmentShader(fragmentShader) 41 51 { 52 } 53 54 WebGPURenderPipeline::~WebGPURenderPipeline() = default; 55 56 bool WebGPURenderPipeline::recompile(const WebGPUDevice& device) 57 { 58 if (m_renderPipeline && m_vertexShader) { 59 if (auto& webGPUVertexShaderModule = m_vertexShader.value().module) { 60 if (auto* gpuVertexShaderModule = webGPUVertexShaderModule->module()) { 61 GPUProgrammableStageDescriptor vertexStage(makeRef(*gpuVertexShaderModule), { m_vertexShader.value().entryPoint }); 62 Optional<GPUProgrammableStageDescriptor> fragmentStage; 63 if (m_fragmentShader) { 64 if (auto& webGPUFragmentShaderModule = m_fragmentShader.value().module) { 65 if (auto* gpuFragmentShaderModule = webGPUFragmentShaderModule->module()) 66 fragmentStage = GPUProgrammableStageDescriptor(makeRef(*gpuFragmentShaderModule), { m_fragmentShader.value().entryPoint }); 67 } 68 } 69 return m_renderPipeline->recompile(device.device(), WTFMove(vertexStage), WTFMove(fragmentStage)); 70 } 71 } 72 } 73 return false; 42 74 } 43 75 -
trunk/Source/WebCore/Modules/webgpu/WebGPURenderPipeline.h
r249881 r250114 28 28 #if ENABLE(WEBGPU) 29 29 30 #include "GPUObjectBase.h" 31 #include "GPURenderPipeline.h" 32 #include <wtf/RefPtr.h> 30 #include "WebGPUPipeline.h" 31 #include <wtf/Forward.h> 33 32 34 33 namespace WebCore { 35 34 36 class WebGPURenderPipeline : public GPUObjectBase { 35 class GPUPipeline; 36 class GPURenderPipeline; 37 class GPUErrorScopes; 38 class WebGPUDevice; 39 40 class WebGPURenderPipeline final : public WebGPUPipeline { 37 41 public: 38 static Ref<WebGPURenderPipeline> create(RefPtr<GPURenderPipeline>&&, GPUErrorScopes&);42 virtual ~WebGPURenderPipeline(); 39 43 44 static Ref<WebGPURenderPipeline> create(WebGPUDevice&, RefPtr<GPURenderPipeline>&&, GPUErrorScopes&, Optional<WebGPUPipeline::ShaderData> vertexShader, Optional<WebGPUPipeline::ShaderData> fragmentShader); 45 46 bool isRenderPipeline() const { return true; } 47 48 bool isValid() const { return renderPipeline(); } 40 49 const GPURenderPipeline* renderPipeline() const { return m_renderPipeline.get(); } 50 Optional<WebGPUPipeline::ShaderData> vertexShader() const { return m_vertexShader; } 51 Optional<WebGPUPipeline::ShaderData> fragmentShader() const { return m_fragmentShader; } 52 53 bool recompile(const WebGPUDevice&); 41 54 42 55 private: 43 WebGPURenderPipeline( RefPtr<GPURenderPipeline>&&, GPUErrorScopes&);56 WebGPURenderPipeline(WebGPUDevice&, RefPtr<GPURenderPipeline>&&, GPUErrorScopes&, Optional<WebGPUPipeline::ShaderData> vertexShader, Optional<WebGPUPipeline::ShaderData> fragmentShader); 44 57 45 58 RefPtr<GPURenderPipeline> m_renderPipeline; 59 60 // Preserved for Web Inspector recompilation. 61 Optional<WebGPUPipeline::ShaderData> m_vertexShader; 62 Optional<WebGPUPipeline::ShaderData> m_fragmentShader; 46 63 }; 47 64 48 65 } // namespace WebCore 49 66 67 SPECIALIZE_TYPE_TRAITS_WEBGPUPIPELINE(WebCore::WebGPURenderPipeline, isRenderPipeline()) 68 50 69 #endif // ENABLE(WEBGPU) -
trunk/Source/WebCore/Modules/webgpu/WebGPURenderPipeline.idl
r247293 r250114 28 28 Conditional=WEBGPU, 29 29 EnabledAtRuntime=WebGPU, 30 ImplementationLacksVTable,31 30 InterfaceName=GPURenderPipeline 32 31 ] interface WebGPURenderPipeline { -
trunk/Source/WebCore/Modules/webgpu/WebGPUShaderModule.cpp
r243563 r250114 29 29 #if ENABLE(WEBGPU) 30 30 31 #include "GPUShaderModuleDescriptor.h" 32 #include "WebGPUDevice.h" 33 #include <wtf/RefPtr.h> 34 31 35 namespace WebCore { 32 36 33 Ref<WebGPUShaderModule> WebGPUShaderModule::create(RefPtr<GPUShaderModule>&& module )37 Ref<WebGPUShaderModule> WebGPUShaderModule::create(RefPtr<GPUShaderModule>&& module, const String& source) 34 38 { 35 return adoptRef(*new WebGPUShaderModule(WTFMove(module) ));39 return adoptRef(*new WebGPUShaderModule(WTFMove(module), source)); 36 40 } 37 41 38 WebGPUShaderModule::WebGPUShaderModule(RefPtr<GPUShaderModule>&& module )42 WebGPUShaderModule::WebGPUShaderModule(RefPtr<GPUShaderModule>&& module, const String& source) 39 43 : m_module(WTFMove(module)) 44 , m_source(source) 40 45 { 46 } 47 48 void WebGPUShaderModule::update(const WebGPUDevice& device, const String& source) 49 { 50 m_source = source; 51 m_module = GPUShaderModule::tryCreate(device.device(), { m_source }); 41 52 } 42 53 -
trunk/Source/WebCore/Modules/webgpu/WebGPUShaderModule.h
r243563 r250114 29 29 30 30 #include "GPUShaderModule.h" 31 31 #include <wtf/Forward.h> 32 32 #include <wtf/RefCounted.h> 33 #include <wtf/RefPtr.h>34 33 35 34 namespace WebCore { 36 35 36 class WebGPUDevice; 37 37 38 class WebGPUShaderModule : public RefCounted<WebGPUShaderModule> { 38 39 public: 39 static Ref<WebGPUShaderModule> create(RefPtr<GPUShaderModule>&& );40 static Ref<WebGPUShaderModule> create(RefPtr<GPUShaderModule>&&, const String& source); 40 41 41 const GPUShaderModule* module() const { return m_module.get(); } 42 GPUShaderModule* module() const { return m_module.get(); } 43 const String& source() const { return m_source; } 44 45 void update(const WebGPUDevice&, const String& source); 42 46 43 47 private: 44 WebGPUShaderModule(RefPtr<GPUShaderModule>&& );48 WebGPUShaderModule(RefPtr<GPUShaderModule>&&, const String& source); 45 49 46 50 RefPtr<GPUShaderModule> m_module; 51 52 // Preserved for Web Inspector recompilation. 53 String m_source; 47 54 }; 48 55 -
trunk/Source/WebCore/Sources.txt
r250060 r250114 374 374 Modules/webgpu/WebGPUDeviceErrorScopes.cpp 375 375 Modules/webgpu/WebGPUQueue.cpp 376 Modules/webgpu/WebGPUPipeline.cpp 376 377 Modules/webgpu/WebGPUPipelineLayout.cpp 377 378 Modules/webgpu/WebGPUPipelineLayoutDescriptor.cpp … … 1898 1899 platform/graphics/gpu/GPUErrorScopes.cpp 1899 1900 platform/graphics/gpu/GPUValidationError.cpp 1901 platform/graphics/gpu/GPUPipeline.cpp 1900 1902 platform/graphics/gpu/GPUPipelineLayout.cpp 1901 1903 platform/graphics/gpu/GPUProgrammablePassEncoder.cpp -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r250060 r250114 10402 10402 9175CE5A21E281ED00DF2C27 /* InspectorAuditAccessibilityObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorAuditAccessibilityObject.h; sourceTree = "<group>"; }; 10403 10403 9175CE5A21E281ED00DF2C28 /* JSInspectorAuditAccessibilityObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSInspectorAuditAccessibilityObject.h; sourceTree = "<group>"; }; 10404 9186F3B32329FB0500AFF857 /* GPUPipeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GPUPipeline.h; sourceTree = "<group>"; }; 10405 9186F3B62329FB4E00AFF857 /* WebGPUPipeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebGPUPipeline.cpp; sourceTree = "<group>"; }; 10406 9186F3B72329FB4F00AFF857 /* WebGPUPipeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebGPUPipeline.h; sourceTree = "<group>"; }; 10407 9186F3BA2329FE6800AFF857 /* GPUPipeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GPUPipeline.cpp; sourceTree = "<group>"; }; 10404 10408 91B8F0B321953D65000C2B00 /* CertificateInfoBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificateInfoBase.h; sourceTree = "<group>"; }; 10405 10409 91B952221F58A58000931DC2 /* RecordingSwizzleTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordingSwizzleTypes.h; sourceTree = "<group>"; }; … … 18380 18384 D09AFB3722D7D5C600C4538C /* GPUObjectBase.h */, 18381 18385 D09AFB1922D6698A00C4538C /* GPUOutOfMemoryError.h */, 18386 9186F3BA2329FE6800AFF857 /* GPUPipeline.cpp */, 18387 9186F3B32329FB0500AFF857 /* GPUPipeline.h */, 18382 18388 312FF8C421A4C2F400EB199D /* GPUPipelineDescriptorBase.h */, 18383 18389 D003288721C9A4E500622AA6 /* GPUPipelineLayout.cpp */, … … 26115 26121 D09AC00A231735BE00187762 /* WebGPUDeviceEventHandler.h */, 26116 26122 D09AC00B231735BE00187762 /* WebGPUDeviceEventHandler.idl */, 26123 9186F3B62329FB4E00AFF857 /* WebGPUPipeline.cpp */, 26124 9186F3B72329FB4F00AFF857 /* WebGPUPipeline.h */, 26117 26125 D0C419F02183EB31009EC1DE /* WebGPUPipelineDescriptorBase.h */, 26118 26126 D0C419F12183EB31009EC1DE /* WebGPUPipelineDescriptorBase.idl */, -
trunk/Source/WebCore/html/canvas/WebGLProgram.cpp
r242594 r250114 29 29 #if ENABLE(WEBGL) 30 30 31 #include "InspectorInstrumentation.h" 32 #include "ScriptExecutionContext.h" 31 33 #include "WebGLContextGroup.h" 32 34 #include "WebGLRenderingContextBase.h" … … 61 63 WebGLProgram::WebGLProgram(WebGLRenderingContextBase& ctx) 62 64 : WebGLSharedObject(ctx) 65 , m_scriptExecutionContext(ctx.scriptExecutionContext()) 63 66 { 64 67 { … … 72 75 WebGLProgram::~WebGLProgram() 73 76 { 77 InspectorInstrumentation::willDestroyWebGLProgram(*this); 78 74 79 deleteObject(0); 75 80 -
trunk/Source/WebCore/html/canvas/WebGLProgram.h
r247452 r250114 33 33 namespace WebCore { 34 34 35 class ScriptExecutionContext; 36 class WebGLRenderingContextBase; 35 37 class WebGLShader; 36 38 … … 42 44 static HashMap<WebGLProgram*, WebGLRenderingContextBase*>& instances(const LockHolder&); 43 45 static Lock& instancesMutex(); 46 47 ScriptExecutionContext* scriptExecutionContext() const { return m_scriptExecutionContext; } 44 48 45 49 unsigned numActiveAttribLocations(); … … 72 76 void cacheInfoIfNeeded(); 73 77 78 ScriptExecutionContext* m_scriptExecutionContext; 79 74 80 Vector<GC3Dint> m_activeAttribLocations; 75 81 -
trunk/Source/WebCore/html/canvas/WebGLRenderingContextBase.cpp
r249007 r250114 412 412 void showHightlight() 413 413 { 414 if (!m_program || LIKELY(!InspectorInstrumentation::is ShaderProgramHighlighted(m_context, *m_program)))414 if (!m_program || LIKELY(!InspectorInstrumentation::isWebGLProgramHighlighted(m_context, *m_program))) 415 415 return; 416 416 … … 1755 1755 addSharedObject(program.get()); 1756 1756 1757 InspectorInstrumentation::didCreate Program(*this, program.get());1757 InspectorInstrumentation::didCreateWebGLProgram(*this, program.get()); 1758 1758 1759 1759 return program; … … 1841 1841 { 1842 1842 if (program) 1843 InspectorInstrumentation::willDe leteProgram(*this,*program);1843 InspectorInstrumentation::willDestroyWebGLProgram(*program); 1844 1844 1845 1845 deleteObject(program); … … 2256 2256 return; 2257 2257 2258 if (m_currentProgram && InspectorInstrumentation::is ShaderProgramDisabled(*this, *m_currentProgram))2258 if (m_currentProgram && InspectorInstrumentation::isWebGLProgramDisabled(*this, *m_currentProgram)) 2259 2259 return; 2260 2260 … … 2310 2310 return; 2311 2311 2312 if (m_currentProgram && InspectorInstrumentation::is ShaderProgramDisabled(*this, *m_currentProgram))2312 if (m_currentProgram && InspectorInstrumentation::isWebGLProgramDisabled(*this, *m_currentProgram)) 2313 2313 return; 2314 2314 -
trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp
r249786 r250114 1080 1080 } 1081 1081 1082 void InspectorInstrumentation::didCreate ProgramImpl(InstrumentingAgents& instrumentingAgents, WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program)1082 void InspectorInstrumentation::didCreateWebGLProgramImpl(InstrumentingAgents& instrumentingAgents, WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program) 1083 1083 { 1084 1084 if (InspectorCanvasAgent* canvasAgent = instrumentingAgents.inspectorCanvasAgent()) 1085 canvasAgent->didCreate Program(contextWebGLBase, program);1086 } 1087 1088 void InspectorInstrumentation::willDe leteProgramImpl(InstrumentingAgents& instrumentingAgents, WebGLProgram& program)1085 canvasAgent->didCreateWebGLProgram(contextWebGLBase, program); 1086 } 1087 1088 void InspectorInstrumentation::willDestroyWebGLProgramImpl(InstrumentingAgents& instrumentingAgents, WebGLProgram& program) 1089 1089 { 1090 1090 if (InspectorCanvasAgent* canvasAgent = instrumentingAgents.inspectorCanvasAgent()) 1091 canvasAgent->willDe leteProgram(program);1092 } 1093 1094 bool InspectorInstrumentation::is ShaderProgramDisabledImpl(InstrumentingAgents& instrumentingAgents, WebGLProgram& program)1091 canvasAgent->willDestroyWebGLProgram(program); 1092 } 1093 1094 bool InspectorInstrumentation::isWebGLProgramDisabledImpl(InstrumentingAgents& instrumentingAgents, WebGLProgram& program) 1095 1095 { 1096 1096 if (InspectorCanvasAgent* canvasAgent = instrumentingAgents.inspectorCanvasAgent()) 1097 return canvasAgent->is ShaderProgramDisabled(program);1097 return canvasAgent->isWebGLProgramDisabled(program); 1098 1098 return false; 1099 1099 } 1100 1100 1101 bool InspectorInstrumentation::is ShaderProgramHighlightedImpl(InstrumentingAgents& instrumentingAgents, WebGLProgram& program)1101 bool InspectorInstrumentation::isWebGLProgramHighlightedImpl(InstrumentingAgents& instrumentingAgents, WebGLProgram& program) 1102 1102 { 1103 1103 if (InspectorCanvasAgent* canvasAgent = instrumentingAgents.inspectorCanvasAgent()) 1104 return canvasAgent->is ShaderProgramHighlighted(program);1104 return canvasAgent->isWebGLProgramHighlighted(program); 1105 1105 return false; 1106 1106 } … … 1124 1124 if (auto* canvasAgent = instrumentingAgents.inspectorCanvasAgent()) 1125 1125 canvasAgent->willConfigureSwapChain(contextGPU, newSwapChain); 1126 } 1127 1128 void InspectorInstrumentation::didCreateWebGPUPipelineImpl(InstrumentingAgents& instrumentingAgents, WebGPUDevice& device, WebGPUPipeline& pipeline) 1129 { 1130 if (auto* canvasAgent = instrumentingAgents.inspectorCanvasAgent()) 1131 canvasAgent->didCreateWebGPUPipeline(device, pipeline); 1132 } 1133 1134 void InspectorInstrumentation::willDestroyWebGPUPipelineImpl(InstrumentingAgents& instrumentingAgents, WebGPUPipeline& pipeline) 1135 { 1136 if (auto* canvasAgent = instrumentingAgents.inspectorCanvasAgent()) 1137 canvasAgent->willDestroyWebGPUPipeline(pipeline); 1126 1138 } 1127 1139 #endif -
trunk/Source/WebCore/inspector/InspectorInstrumentation.h
r249786 r250114 64 64 #include "GPUCanvasContext.h" 65 65 #include "WebGPUDevice.h" 66 #include "WebGPUPipeline.h" 66 67 #endif 67 68 … … 290 291 #if ENABLE(WEBGL) 291 292 static void didEnableExtension(WebGLRenderingContextBase&, const String&); 292 static void didCreate Program(WebGLRenderingContextBase&, WebGLProgram&);293 static void willDe leteProgram(WebGLRenderingContextBase&,WebGLProgram&);294 static bool is ShaderProgramDisabled(WebGLRenderingContextBase&, WebGLProgram&);295 static bool is ShaderProgramHighlighted(WebGLRenderingContextBase&, WebGLProgram&);293 static void didCreateWebGLProgram(WebGLRenderingContextBase&, WebGLProgram&); 294 static void willDestroyWebGLProgram(WebGLProgram&); 295 static bool isWebGLProgramDisabled(WebGLRenderingContextBase&, WebGLProgram&); 296 static bool isWebGLProgramHighlighted(WebGLRenderingContextBase&, WebGLProgram&); 296 297 #endif 297 298 #if ENABLE(WEBGPU) … … 299 300 static void willDestroyWebGPUDevice(WebGPUDevice&); 300 301 static void willConfigureSwapChain(GPUCanvasContext&, WebGPUSwapChain&); 302 static void didCreateWebGPUPipeline(WebGPUDevice&, WebGPUPipeline&); 303 static void willDestroyWebGPUPipeline(WebGPUPipeline&); 301 304 #endif 302 305 … … 482 485 #if ENABLE(WEBGL) 483 486 static void didEnableExtensionImpl(InstrumentingAgents&, WebGLRenderingContextBase&, const String&); 484 static void didCreate ProgramImpl(InstrumentingAgents&, WebGLRenderingContextBase&, WebGLProgram&);485 static void willDe leteProgramImpl(InstrumentingAgents&, WebGLProgram&);486 static bool is ShaderProgramDisabledImpl(InstrumentingAgents&, WebGLProgram&);487 static bool is ShaderProgramHighlightedImpl(InstrumentingAgents&, WebGLProgram&);487 static void didCreateWebGLProgramImpl(InstrumentingAgents&, WebGLRenderingContextBase&, WebGLProgram&); 488 static void willDestroyWebGLProgramImpl(InstrumentingAgents&, WebGLProgram&); 489 static bool isWebGLProgramDisabledImpl(InstrumentingAgents&, WebGLProgram&); 490 static bool isWebGLProgramHighlightedImpl(InstrumentingAgents&, WebGLProgram&); 488 491 #endif 489 492 #if ENABLE(WEBGPU) … … 491 494 static void willDestroyWebGPUDeviceImpl(InstrumentingAgents&, WebGPUDevice&); 492 495 static void willConfigureSwapChainImpl(InstrumentingAgents&, GPUCanvasContext&, WebGPUSwapChain&); 496 static void didCreateWebGPUPipelineImpl(InstrumentingAgents&, WebGPUDevice&, WebGPUPipeline&); 497 static void willDestroyWebGPUPipelineImpl(InstrumentingAgents&, WebGPUPipeline&); 493 498 #endif 494 499 … … 1385 1390 } 1386 1391 1387 inline void InspectorInstrumentation::didCreate Program(WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program)1392 inline void InspectorInstrumentation::didCreateWebGLProgram(WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program) 1388 1393 { 1389 1394 FAST_RETURN_IF_NO_FRONTENDS(void()); 1390 1395 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForContext(contextWebGLBase.canvasBase().scriptExecutionContext())) 1391 didCreate ProgramImpl(*instrumentingAgents, contextWebGLBase, program);1392 } 1393 1394 inline void InspectorInstrumentation::willDe leteProgram(WebGLRenderingContextBase& contextWebGLBase,WebGLProgram& program)1395 { 1396 FAST_RETURN_IF_NO_FRONTENDS(void()); 1397 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForContext( contextWebGLBase.canvasBase().scriptExecutionContext()))1398 willDe leteProgramImpl(*instrumentingAgents, program);1399 } 1400 1401 inline bool InspectorInstrumentation::is ShaderProgramDisabled(WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program)1396 didCreateWebGLProgramImpl(*instrumentingAgents, contextWebGLBase, program); 1397 } 1398 1399 inline void InspectorInstrumentation::willDestroyWebGLProgram(WebGLProgram& program) 1400 { 1401 FAST_RETURN_IF_NO_FRONTENDS(void()); 1402 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForContext(program.scriptExecutionContext())) 1403 willDestroyWebGLProgramImpl(*instrumentingAgents, program); 1404 } 1405 1406 inline bool InspectorInstrumentation::isWebGLProgramDisabled(WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program) 1402 1407 { 1403 1408 FAST_RETURN_IF_NO_FRONTENDS(false); 1404 1409 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForContext(contextWebGLBase.canvasBase().scriptExecutionContext())) 1405 return is ShaderProgramDisabledImpl(*instrumentingAgents, program);1410 return isWebGLProgramDisabledImpl(*instrumentingAgents, program); 1406 1411 return false; 1407 1412 } 1408 1413 1409 inline bool InspectorInstrumentation::is ShaderProgramHighlighted(WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program)1414 inline bool InspectorInstrumentation::isWebGLProgramHighlighted(WebGLRenderingContextBase& contextWebGLBase, WebGLProgram& program) 1410 1415 { 1411 1416 FAST_RETURN_IF_NO_FRONTENDS(false); 1412 1417 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForContext(contextWebGLBase.canvasBase().scriptExecutionContext())) 1413 return is ShaderProgramHighlightedImpl(*instrumentingAgents, program);1418 return isWebGLProgramHighlightedImpl(*instrumentingAgents, program); 1414 1419 return false; 1415 1420 } … … 1436 1441 if (auto* instrumentingAgents = instrumentingAgentsForContext(contextGPU.canvasBase().scriptExecutionContext())) 1437 1442 willConfigureSwapChainImpl(*instrumentingAgents, contextGPU, newSwapChain); 1443 } 1444 1445 inline void InspectorInstrumentation::didCreateWebGPUPipeline(WebGPUDevice& device, WebGPUPipeline& pipeline) 1446 { 1447 FAST_RETURN_IF_NO_FRONTENDS(void()); 1448 if (auto* instrumentingAgents = instrumentingAgentsForContext(device.scriptExecutionContext())) 1449 didCreateWebGPUPipelineImpl(*instrumentingAgents, device, pipeline); 1450 } 1451 1452 inline void InspectorInstrumentation::willDestroyWebGPUPipeline(WebGPUPipeline& pipeline) 1453 { 1454 FAST_RETURN_IF_NO_FRONTENDS(void()); 1455 if (auto* instrumentingAgents = instrumentingAgentsForContext(pipeline.scriptExecutionContext())) 1456 willDestroyWebGPUPipelineImpl(*instrumentingAgents, pipeline); 1438 1457 } 1439 1458 #endif -
trunk/Source/WebCore/inspector/InspectorShaderProgram.cpp
r249786 r250114 27 27 #include "InspectorShaderProgram.h" 28 28 29 #if ENABLE(WEBGL) 30 29 #include "InspectorCanvas.h" 30 #include <JavaScriptCore/IdentifiersFactory.h> 31 #include <wtf/Optional.h> 32 #include <wtf/Ref.h> 33 #include <wtf/Variant.h> 34 #include <wtf/text/WTFString.h> 35 36 #if ENABLE(WEBGL) 31 37 #include "GraphicsContext3D.h" 32 #include "GraphicsTypes3D.h"33 #include "HTMLCanvasElement.h"34 #include "InspectorCanvas.h"35 38 #include "WebGLProgram.h" 36 39 #include "WebGLRenderingContextBase.h" 37 40 #include "WebGLShader.h" 38 #include <JavaScriptCore/IdentifiersFactory.h> 41 #endif 42 43 #if ENABLE(WEBGPU) 44 #include "GPUShaderModule.h" 45 #include "WHLSLPrepare.h" 46 #include "WebGPUComputePipeline.h" 47 #include "WebGPUPipeline.h" 48 #include "WebGPURenderPipeline.h" 49 #include "WebGPUShaderModule.h" 50 #endif 39 51 40 52 namespace WebCore { … … 42 54 using namespace Inspector; 43 55 56 #if ENABLE(WEBGL) 44 57 Ref<InspectorShaderProgram> InspectorShaderProgram::create(WebGLProgram& program, InspectorCanvas& inspectorCanvas) 45 58 { 46 59 return adoptRef(*new InspectorShaderProgram(program, inspectorCanvas)); 47 60 } 48 61 #endif 62 63 #if ENABLE(WEBGPU) 64 Ref<InspectorShaderProgram> InspectorShaderProgram::create(WebGPUPipeline& pipeline, InspectorCanvas& inspectorCanvas) 65 { 66 return adoptRef(*new InspectorShaderProgram(pipeline, inspectorCanvas)); 67 } 68 #endif 69 70 #if ENABLE(WEBGL) 49 71 InspectorShaderProgram::InspectorShaderProgram(WebGLProgram& program, InspectorCanvas& inspectorCanvas) 50 72 : m_identifier("program:" + IdentifiersFactory::createIdentifier()) 73 , m_canvas(inspectorCanvas) 51 74 , m_program(program) 75 { 76 ASSERT(is<WebGLRenderingContextBase>(m_canvas.canvasContext())); 77 } 78 #endif 79 80 #if ENABLE(WEBGPU) 81 InspectorShaderProgram::InspectorShaderProgram(WebGPUPipeline& pipeline, InspectorCanvas& inspectorCanvas) 82 : m_identifier("pipeline:" + IdentifiersFactory::createIdentifier()) 52 83 , m_canvas(inspectorCanvas) 53 { 54 } 55 56 WebGLRenderingContextBase& InspectorShaderProgram::context() const 57 { 58 ASSERT(m_canvas.canvasContext()); 59 ASSERT(is<WebGLRenderingContextBase>(*m_canvas.canvasContext())); 60 return downcast<WebGLRenderingContextBase>(*m_canvas.canvasContext()); 61 } 62 63 WebGLShader* InspectorShaderProgram::shaderForType(const String& protocolType) 64 { 65 GC3Denum shaderType; 66 if (protocolType == "vertex") 67 shaderType = GraphicsContext3D::VERTEX_SHADER; 68 else if (protocolType == "fragment") 69 shaderType = GraphicsContext3D::FRAGMENT_SHADER; 70 else 84 , m_program(pipeline) 85 { 86 ASSERT(m_canvas.deviceContext()); 87 } 88 #endif 89 90 #if ENABLE(WEBGL) 91 WebGLProgram* InspectorShaderProgram::program() const 92 { 93 if (auto* programWrapper = WTF::get_if<std::reference_wrapper<WebGLProgram>>(m_program)) 94 return &programWrapper->get(); 95 return nullptr; 96 } 97 #endif 98 99 #if ENABLE(WEBGPU) 100 WebGPUPipeline* InspectorShaderProgram::pipeline() const 101 { 102 if (auto* pipelineWrapper = WTF::get_if<std::reference_wrapper<WebGPUPipeline>>(m_program)) 103 return &pipelineWrapper->get(); 104 return nullptr; 105 } 106 #endif 107 108 #if ENABLE(WEBGL) 109 static WebGLShader* shaderForType(WebGLProgram& program, Inspector::Protocol::Canvas::ShaderType shaderType) 110 { 111 switch (shaderType) { 112 case Inspector::Protocol::Canvas::ShaderType::Fragment: 113 return program.getAttachedShader(GraphicsContext3D::FRAGMENT_SHADER); 114 115 case Inspector::Protocol::Canvas::ShaderType::Vertex: 116 return program.getAttachedShader(GraphicsContext3D::VERTEX_SHADER); 117 118 // Compute shaders are a WebGPU concept. 119 case Inspector::Protocol::Canvas::ShaderType::Compute: 71 120 return nullptr; 72 73 return m_program.getAttachedShader(shaderType); 121 } 122 123 ASSERT_NOT_REACHED(); 124 return nullptr; 125 } 126 #endif 127 128 #if ENABLE(WEBGPU) 129 static Optional<WebGPUPipeline::ShaderData> shaderForType(WebGPUPipeline& pipeline, Inspector::Protocol::Canvas::ShaderType shaderType) 130 { 131 switch (shaderType) { 132 case Inspector::Protocol::Canvas::ShaderType::Compute: 133 if (is<WebGPUComputePipeline>(pipeline)) 134 return downcast<WebGPUComputePipeline>(pipeline).computeShader(); 135 break; 136 137 case Inspector::Protocol::Canvas::ShaderType::Fragment: 138 if (is<WebGPURenderPipeline>(pipeline)) 139 return downcast<WebGPURenderPipeline>(pipeline).fragmentShader(); 140 break; 141 142 case Inspector::Protocol::Canvas::ShaderType::Vertex: 143 if (is<WebGPURenderPipeline>(pipeline)) 144 return downcast<WebGPURenderPipeline>(pipeline).vertexShader(); 145 break; 146 } 147 148 ASSERT_NOT_REACHED(); 149 return WTF::nullopt; 150 } 151 #endif 152 153 String InspectorShaderProgram::requestShaderSource(Inspector::Protocol::Canvas::ShaderType shaderType) 154 { 155 #if !ENABLE(WEBGL) && !ENABLE(WEBGPU) 156 UNUSED_PARAM(shaderType); 157 #endif 158 159 return WTF::switchOn(m_program, 160 #if ENABLE(WEBGL) 161 [&] (std::reference_wrapper<WebGLProgram> programWrapper) { 162 auto& program = programWrapper.get(); 163 if (auto* shader = shaderForType(program, shaderType)) 164 return shader->getSource(); 165 return String(); 166 }, 167 #endif 168 #if ENABLE(WEBGPU) 169 [&] (std::reference_wrapper<WebGPUPipeline> pipelineWrapper) { 170 auto& pipeline = pipelineWrapper.get(); 171 if (auto shaderData = shaderForType(pipeline, shaderType)) { 172 if (auto module = shaderData.value().module) 173 return module->source(); 174 } 175 return String(); 176 }, 177 #endif 178 [&] (Monostate) { 179 #if ENABLE(WEBGL) || ENABLE(WEBGPU) 180 ASSERT_NOT_REACHED(); 181 #endif 182 return String(); 183 } 184 ); 185 } 186 187 bool InspectorShaderProgram::updateShader(Inspector::Protocol::Canvas::ShaderType shaderType, const String& source) 188 { 189 #if !ENABLE(WEBGL) && !ENABLE(WEBGPU) 190 UNUSED_PARAM(shaderType); 191 UNUSED_PARAM(source); 192 #endif 193 194 return WTF::switchOn(m_program, 195 #if ENABLE(WEBGL) 196 [&] (std::reference_wrapper<WebGLProgram> programWrapper) { 197 auto& program = programWrapper.get(); 198 if (auto* shader = shaderForType(program, shaderType)) { 199 if (auto* context = m_canvas.canvasContext()) { 200 if (is<WebGLRenderingContextBase>(context)) { 201 auto& contextWebGLBase = downcast<WebGLRenderingContextBase>(*context); 202 contextWebGLBase.shaderSource(shader, source); 203 contextWebGLBase.compileShader(shader); 204 if (shader->isValid()) { 205 contextWebGLBase.linkProgramWithoutInvalidatingAttribLocations(&program); 206 return true; 207 } 208 } 209 } 210 } 211 return false; 212 }, 213 #endif 214 #if ENABLE(WEBGPU) 215 [&] (std::reference_wrapper<WebGPUPipeline> pipelineWrapper) { 216 auto& pipeline = pipelineWrapper.get(); 217 if (auto* device = m_canvas.deviceContext()) { 218 if (auto shaderData = shaderForType(pipeline, shaderType)) { 219 if (auto module = shaderData.value().module) { 220 module->update(*device, source); 221 if (pipeline.recompile(*device)) 222 return true; 223 } 224 } 225 } 226 return false; 227 }, 228 #endif 229 [&] (Monostate) { 230 #if ENABLE(WEBGL) || ENABLE(WEBGPU) 231 ASSERT_NOT_REACHED(); 232 #endif 233 return false; 234 } 235 ); 74 236 } 75 237 76 238 } // namespace WebCore 77 78 #endif // ENABLE(WEBGL) -
trunk/Source/WebCore/inspector/InspectorShaderProgram.h
r230127 r250114 27 27 28 28 #include <JavaScriptCore/InspectorProtocolObjects.h> 29 #include <wtf/Forward.h> 30 #include <wtf/RefCounted.h> 29 31 30 32 namespace WebCore { 31 33 32 34 class InspectorCanvas; 35 36 #if ENABLE(WEBGL) 33 37 class WebGLProgram; 34 38 class WebGLRenderingContextBase; 35 class WebGLShader; 39 #endif 36 40 37 typedef String ErrorString; 41 #if ENABLE(WEBGPU) 42 class WebGPUPipeline; 43 #endif 38 44 39 45 class InspectorShaderProgram final : public RefCounted<InspectorShaderProgram> { 40 46 public: 47 #if ENABLE(WEBGL) 41 48 static Ref<InspectorShaderProgram> create(WebGLProgram&, InspectorCanvas&); 49 #endif 50 #if ENABLE(WEBGPU) 51 static Ref<InspectorShaderProgram> create(WebGPUPipeline&, InspectorCanvas&); 52 #endif 42 53 43 54 const String& identifier() const { return m_identifier; } 44 55 InspectorCanvas& canvas() const { return m_canvas; } 45 WebGLRenderingContextBase& context() const; 46 WebGLProgram& program() const { return m_program; } 47 WebGLShader* shaderForType(const String&); 56 57 #if ENABLE(WEBGL) 58 WebGLProgram* program() const; 59 #endif 60 #if ENABLE(WEBGPU) 61 WebGPUPipeline* pipeline() const; 62 #endif 63 64 String requestShaderSource(Inspector::Protocol::Canvas::ShaderType); 65 bool updateShader(Inspector::Protocol::Canvas::ShaderType, const String& source); 48 66 49 67 bool disabled() const { return m_disabled; } … … 53 71 void setHighlighted(bool value) { m_highlighted = value; } 54 72 55 ~InspectorShaderProgram() = default;56 57 73 private: 74 #if ENABLE(WEBGL) 58 75 InspectorShaderProgram(WebGLProgram&, InspectorCanvas&); 76 #endif 77 #if ENABLE(WEBGPU) 78 InspectorShaderProgram(WebGPUPipeline&, InspectorCanvas&); 79 #endif 59 80 60 81 String m_identifier; 61 WebGLProgram& m_program;62 82 InspectorCanvas& m_canvas; 83 84 Variant< 85 #if ENABLE(WEBGL) 86 std::reference_wrapper<WebGLProgram>, 87 #endif 88 #if ENABLE(WEBGPU) 89 std::reference_wrapper<WebGPUPipeline>, 90 #endif 91 Monostate 92 > m_program; 63 93 64 94 bool m_disabled { false }; -
trunk/Source/WebCore/inspector/agents/InspectorCanvasAgent.cpp
r249786 r250114 36 36 #include "ImageBitmapRenderingContext.h" 37 37 #include "InspectorDOMAgent.h" 38 #include "InspectorShaderProgram.h" 38 39 #include "InstrumentingAgents.h" 39 40 #include "JSExecState.h" … … 47 48 #include <JavaScriptCore/InspectorProtocolObjects.h> 48 49 #include <JavaScriptCore/JSCInlines.h> 50 #include <wtf/HashMap.h> 49 51 #include <wtf/HashSet.h> 50 52 #include <wtf/Lock.h> 53 #include <wtf/Optional.h> 54 #include <wtf/RefPtr.h> 55 #include <wtf/Vector.h> 56 #include <wtf/text/WTFString.h> 51 57 52 58 #if ENABLE(WEBGL) … … 54 60 #include "WebGLRenderingContext.h" 55 61 #include "WebGLRenderingContextBase.h" 56 #include "WebGLShader.h"57 62 #endif 58 63 … … 63 68 #if ENABLE(WEBGPU) 64 69 #include "GPUCanvasContext.h" 70 #include "WebGPUComputePipeline.h" 65 71 #include "WebGPUDevice.h" 72 #include "WebGPUPipeline.h" 73 #include "WebGPURenderPipeline.h" 74 #include "WebGPUSwapChain.h" 66 75 #endif 67 76 … … 77 86 , m_inspectedPage(context.inspectedPage) 78 87 , m_canvasDestroyedTimer(*this, &InspectorCanvasAgent::canvasDestroyedTimerFired) 88 , m_programDestroyedTimer(*this, &InspectorCanvasAgent::programDestroyedTimerFired) 79 89 { 80 90 } … … 94 104 void InspectorCanvasAgent::discardAgent() 95 105 { 96 clearCanvasData();106 reset(); 97 107 } 98 108 … … 142 152 for (auto& [program, contextWebGLBase] : WebGLProgram::instances(lock)) { 143 153 if (contextWebGLBase && existsInCurrentPage(contextWebGLBase->canvasBase().scriptExecutionContext())) 144 didCreateProgram(*contextWebGLBase, *program); 154 didCreateWebGLProgram(*contextWebGLBase, *program); 155 } 156 } 157 #endif 158 159 #if ENABLE(WEBGPU) 160 { 161 LockHolder lock(WebGPUPipeline::instancesMutex()); 162 for (auto& [pipeline, device] : WebGPUPipeline::instances(lock)) { 163 if (device && existsInCurrentPage(device->scriptExecutionContext()) && pipeline->isValid()) 164 didCreateWebGPUPipeline(*device, *pipeline); 145 165 } 146 166 } … … 152 172 m_instrumentingAgents.setInspectorCanvasAgent(nullptr); 153 173 154 clearCanvasData();174 reset(); 155 175 156 176 m_recordingAutoCaptureFrameCount = WTF::nullopt; … … 281 301 } 282 302 283 void InspectorCanvasAgent::requestShaderSource(ErrorString& errorString, const String& programId, const String& shaderType, String* content) 284 { 285 #if ENABLE(WEBGL) 303 void InspectorCanvasAgent::requestShaderSource(ErrorString& errorString, const String& programId, const String& shaderTypeString, String* outSource) 304 { 286 305 auto inspectorProgram = assertInspectorProgram(errorString, programId); 287 306 if (!inspectorProgram) 288 307 return; 289 308 290 auto* shader = inspectorProgram->shaderForType(shaderType); 291 if (!shader) { 292 errorString = "Missing shader for given shaderType"_s; 293 return; 294 } 295 296 *content = shader->getSource(); 297 #else 298 UNUSED_PARAM(programId); 299 UNUSED_PARAM(shaderType); 300 UNUSED_PARAM(content); 301 errorString = "Not supported"_s; 302 #endif 303 } 304 305 void InspectorCanvasAgent::updateShader(ErrorString& errorString, const String& programId, const String& shaderType, const String& source) 306 { 307 #if ENABLE(WEBGL) 309 auto shaderType = Inspector::Protocol::InspectorHelpers::parseEnumValueFromString<Inspector::Protocol::Canvas::ShaderType>(shaderTypeString); 310 if (!shaderType) { 311 errorString = makeString("Unknown shaderType: "_s, shaderTypeString); 312 return; 313 } 314 315 auto source = inspectorProgram->requestShaderSource(shaderType.value()); 316 if (!source) { 317 errorString = "Missing shader of given shaderType for given programId"_s; 318 return; 319 } 320 321 *outSource = source; 322 } 323 324 void InspectorCanvasAgent::updateShader(ErrorString& errorString, const String& programId, const String& shaderTypeString, const String& source) 325 { 308 326 auto inspectorProgram = assertInspectorProgram(errorString, programId); 309 327 if (!inspectorProgram) 310 328 return; 311 329 312 auto* shader = inspectorProgram->shaderForType(shaderType); 313 if (!shader) { 314 errorString = "Missing shader for given shaderType"_s; 315 return; 316 } 317 318 WebGLRenderingContextBase& contextWebGL = inspectorProgram->context(); 319 contextWebGL.shaderSource(shader, source); 320 contextWebGL.compileShader(shader); 321 322 if (!shader->isValid()) { 323 errorString = "Failed to update shader"_s; 324 return; 325 } 326 327 contextWebGL.linkProgramWithoutInvalidatingAttribLocations(&inspectorProgram->program()); 328 #else 329 UNUSED_PARAM(programId); 330 UNUSED_PARAM(shaderType); 331 UNUSED_PARAM(source); 332 errorString = "Not supported"_s; 333 #endif 330 auto shaderType = Inspector::Protocol::InspectorHelpers::parseEnumValueFromString<Inspector::Protocol::Canvas::ShaderType>(shaderTypeString); 331 if (!shaderType) { 332 errorString = makeString("Unknown shaderType: "_s, shaderTypeString); 333 return; 334 } 335 336 if (!inspectorProgram->updateShader(shaderType.value(), source)) 337 errorString = "Failed to update shader of given shaderType for given programId"_s; 334 338 } 335 339 336 340 void InspectorCanvasAgent::setShaderProgramDisabled(ErrorString& errorString, const String& programId, bool disabled) 337 341 { 338 #if ENABLE(WEBGL)339 342 auto inspectorProgram = assertInspectorProgram(errorString, programId); 340 343 if (!inspectorProgram) … … 342 345 343 346 inspectorProgram->setDisabled(disabled); 344 #else345 UNUSED_PARAM(programId);346 UNUSED_PARAM(disabled);347 errorString = "Not supported"_s;348 #endif349 347 } 350 348 351 349 void InspectorCanvasAgent::setShaderProgramHighlighted(ErrorString& errorString, const String& programId, bool highlighted) 352 350 { 353 #if ENABLE(WEBGL)354 351 auto inspectorProgram = assertInspectorProgram(errorString, programId); 355 352 if (!inspectorProgram) … … 357 354 358 355 inspectorProgram->setHighlighted(highlighted); 359 #else360 UNUSED_PARAM(programId);361 UNUSED_PARAM(highlighted);362 errorString = "Not supported"_s;363 #endif364 356 } 365 357 … … 367 359 { 368 360 if (frame.isMainFrame()) { 369 clearCanvasData();361 reset(); 370 362 return; 371 363 } … … 569 561 } 570 562 571 void InspectorCanvasAgent::didCreate Program(WebGLRenderingContextBase& context, WebGLProgram& program)563 void InspectorCanvasAgent::didCreateWebGLProgram(WebGLRenderingContextBase& context, WebGLProgram& program) 572 564 { 573 565 auto inspectorCanvas = findInspectorCanvas(context); … … 579 571 String programIdentifier = inspectorProgram->identifier(); 580 572 m_identifierToInspectorProgram.set(programIdentifier, WTFMove(inspectorProgram)); 581 m_frontendDispatcher->programCreated(inspectorCanvas->identifier(), programIdentifier );582 } 583 584 void InspectorCanvasAgent::willDe leteProgram(WebGLProgram& program)573 m_frontendDispatcher->programCreated(inspectorCanvas->identifier(), programIdentifier, Inspector::Protocol::Canvas::ProgramType::Render); 574 } 575 576 void InspectorCanvasAgent::willDestroyWebGLProgram(WebGLProgram& program) 585 577 { 586 578 auto inspectorProgram = findInspectorProgram(program); … … 588 580 return; 589 581 590 String identifier = unbindProgram(*inspectorProgram); 591 m_frontendDispatcher->programDeleted(identifier); 592 } 593 594 bool InspectorCanvasAgent::isShaderProgramDisabled(WebGLProgram& program) 582 unbindProgram(*inspectorProgram); 583 } 584 585 bool InspectorCanvasAgent::isWebGLProgramDisabled(WebGLProgram& program) 595 586 { 596 587 auto inspectorProgram = findInspectorProgram(program); … … 602 593 } 603 594 604 bool InspectorCanvasAgent::is ShaderProgramHighlighted(WebGLProgram& program)595 bool InspectorCanvasAgent::isWebGLProgramHighlighted(WebGLProgram& program) 605 596 { 606 597 auto inspectorProgram = findInspectorProgram(program); … … 649 640 650 641 notifyDeviceForSwapChain(newSwapChain); 642 } 643 644 void InspectorCanvasAgent::didCreateWebGPUPipeline(WebGPUDevice& device, WebGPUPipeline& pipeline) 645 { 646 auto inspectorCanvas = findInspectorCanvas(device); 647 ASSERT(inspectorCanvas); 648 if (!inspectorCanvas) 649 return; 650 651 ASSERT(pipeline.isValid()); 652 653 auto inspectorProgram = InspectorShaderProgram::create(pipeline, *inspectorCanvas); 654 String programIdentifier = inspectorProgram->identifier(); 655 m_identifierToInspectorProgram.set(programIdentifier, WTFMove(inspectorProgram)); 656 657 Optional<Inspector::Protocol::Canvas::ProgramType> programType; 658 if (is<WebGPUComputePipeline>(pipeline)) 659 programType = Inspector::Protocol::Canvas::ProgramType::Compute; 660 else if (is<WebGPURenderPipeline>(pipeline)) 661 programType = Inspector::Protocol::Canvas::ProgramType::Render; 662 ASSERT(programType); 663 664 m_frontendDispatcher->programCreated(inspectorCanvas->identifier(), programIdentifier, programType.value()); 665 } 666 667 void InspectorCanvasAgent::willDestroyWebGPUPipeline(WebGPUPipeline& pipeline) 668 { 669 auto inspectorProgram = findInspectorProgram(pipeline); 670 if (!inspectorProgram) 671 return; 672 673 unbindProgram(*inspectorProgram); 651 674 } 652 675 #endif … … 695 718 } 696 719 697 void InspectorCanvasAgent::clearCanvasData() 720 void InspectorCanvasAgent::programDestroyedTimerFired() 721 { 722 if (!m_removedProgramIdentifiers.size()) 723 return; 724 725 for (auto& identifier : m_removedProgramIdentifiers) 726 m_frontendDispatcher->programDeleted(identifier); 727 728 m_removedProgramIdentifiers.clear(); 729 } 730 731 void InspectorCanvasAgent::reset() 698 732 { 699 733 for (auto& inspectorCanvas : m_identifierToInspectorCanvas.values()) { … … 703 737 704 738 m_identifierToInspectorCanvas.clear(); 705 #if ENABLE(WEBGL)706 m_identifierToInspectorProgram.clear();707 739 m_removedCanvasIdentifiers.clear(); 708 #endif709 710 740 if (m_canvasDestroyedTimer.isActive()) 711 741 m_canvasDestroyedTimer.stop(); 742 743 m_identifierToInspectorProgram.clear(); 744 m_removedProgramIdentifiers.clear(); 745 if (m_programDestroyedTimer.isActive()) 746 m_programDestroyedTimer.stop(); 712 747 } 713 748 … … 806 841 #endif 807 842 808 #if ENABLE(WEBGL) 809 String InspectorCanvasAgent::unbindProgram(InspectorShaderProgram& inspectorProgram) 843 void InspectorCanvasAgent::unbindProgram(InspectorShaderProgram& inspectorProgram) 810 844 { 811 845 String identifier = inspectorProgram.identifier(); 812 846 m_identifierToInspectorProgram.remove(identifier); 813 847 814 return identifier; 848 // This can be called in response to GC. Due to the single-process model used in WebKit1, the 849 // event must be dispatched from a timer to prevent the frontend from making JS allocations 850 // while the GC is still active. 851 m_removedProgramIdentifiers.append(identifier); 852 853 if (!m_programDestroyedTimer.isActive()) 854 m_programDestroyedTimer.startOneShot(0_s); 815 855 } 816 856 … … 825 865 } 826 866 867 #if ENABLE(WEBGL) 827 868 RefPtr<InspectorShaderProgram> InspectorCanvasAgent::findInspectorProgram(WebGLProgram& program) 828 869 { 829 870 for (auto& inspectorProgram : m_identifierToInspectorProgram.values()) { 830 if ( &inspectorProgram->program() == &program)871 if (inspectorProgram->program() == &program) 831 872 return inspectorProgram; 832 873 } … … 835 876 #endif 836 877 878 #if ENABLE(WEBGPU) 879 RefPtr<InspectorShaderProgram> InspectorCanvasAgent::findInspectorProgram(WebGPUPipeline& pipeline) 880 { 881 for (auto& inspectorProgram : m_identifierToInspectorProgram.values()) { 882 if (inspectorProgram->pipeline() == &pipeline) 883 return inspectorProgram; 884 } 885 return nullptr; 886 } 887 #endif 888 837 889 } // namespace WebCore -
trunk/Source/WebCore/inspector/agents/InspectorCanvasAgent.h
r249786 r250114 34 34 #include <JavaScriptCore/InspectorFrontendDispatchers.h> 35 35 #include <initializer_list> 36 #include <wtf/HashMap.h> 37 #include <wtf/RefPtr.h> 38 #include <wtf/Vector.h> 39 #include <wtf/text/WTFString.h> 40 41 #if ENABLE(WEBGL) 42 #include "InspectorShaderProgram.h" 43 #endif 36 #include <wtf/Forward.h> 44 37 45 38 namespace Inspector { … … 50 43 51 44 class CanvasRenderingContext; 45 class InspectorShaderProgram; 52 46 #if ENABLE(WEBGL) 53 47 class WebGLProgram; … … 57 51 class GPUCanvasContext; 58 52 class WebGPUDevice; 53 class WebGPUPipeline; 59 54 class WebGPUSwapChain; 60 55 #endif … … 84 79 void startRecording(ErrorString&, const String& canvasId, const int* frameCount, const int* memoryLimit); 85 80 void stopRecording(ErrorString&, const String& canvasId); 86 void requestShaderSource(ErrorString&, const String& programId, const String& shaderType, String* );81 void requestShaderSource(ErrorString&, const String& programId, const String& shaderType, String* source); 87 82 void updateShader(ErrorString&, const String& programId, const String& shaderType, const String& source); 88 83 void setShaderProgramDisabled(ErrorString&, const String& programId, bool disabled); … … 104 99 #if ENABLE(WEBGL) 105 100 void didEnableExtension(WebGLRenderingContextBase&, const String&); 106 void didCreate Program(WebGLRenderingContextBase&, WebGLProgram&);107 void willDe leteProgram(WebGLProgram&);108 bool is ShaderProgramDisabled(WebGLProgram&);109 bool is ShaderProgramHighlighted(WebGLProgram&);101 void didCreateWebGLProgram(WebGLRenderingContextBase&, WebGLProgram&); 102 void willDestroyWebGLProgram(WebGLProgram&); 103 bool isWebGLProgramDisabled(WebGLProgram&); 104 bool isWebGLProgramHighlighted(WebGLProgram&); 110 105 #endif 111 106 #if ENABLE(WEBGPU) … … 113 108 void willDestroyWebGPUDevice(WebGPUDevice&); 114 109 void willConfigureSwapChain(GPUCanvasContext&, WebGPUSwapChain&); 110 void didCreateWebGPUPipeline(WebGPUDevice&, WebGPUPipeline&); 111 void willDestroyWebGPUPipeline(WebGPUPipeline&); 115 112 #endif 116 113 … … 124 121 125 122 void canvasDestroyedTimerFired(); 126 void clearCanvasData(); 123 void programDestroyedTimerFired(); 124 void reset(); 125 127 126 InspectorCanvas& bindCanvas(CanvasRenderingContext&, bool captureBacktrace); 128 127 #if ENABLE(WEBGPU) … … 136 135 #endif 137 136 137 void unbindProgram(InspectorShaderProgram&); 138 RefPtr<InspectorShaderProgram> assertInspectorProgram(ErrorString&, const String& programId); 138 139 #if ENABLE(WEBGL) 139 String unbindProgram(InspectorShaderProgram&);140 RefPtr<InspectorShaderProgram> assertInspectorProgram(ErrorString&, const String& programId);141 140 RefPtr<InspectorShaderProgram> findInspectorProgram(WebGLProgram&); 141 #endif 142 #if ENABLE(WEBGPU) 143 RefPtr<InspectorShaderProgram> findInspectorProgram(WebGPUPipeline&); 142 144 #endif 143 145 … … 149 151 150 152 HashMap<String, RefPtr<InspectorCanvas>> m_identifierToInspectorCanvas; 151 #if ENABLE(WEBGL) 153 Vector<String> m_removedCanvasIdentifiers; 154 Timer m_canvasDestroyedTimer; 155 152 156 HashMap<String, RefPtr<InspectorShaderProgram>> m_identifierToInspectorProgram; 153 #endif 154 Vector<String> m_removedCanvasIdentifiers;157 Vector<String> m_removedProgramIdentifiers; 158 Timer m_programDestroyedTimer; 155 159 156 160 Optional<size_t> m_recordingAutoCaptureFrameCount; 157 158 Timer m_canvasDestroyedTimer;159 161 }; 160 162 -
trunk/Source/WebCore/platform/graphics/gpu/GPUComputePipeline.h
r249881 r250114 28 28 #if ENABLE(WEBGPU) 29 29 30 #include "GPUPipeline.h" 31 #include "GPUProgrammableStageDescriptor.h" 30 32 #include "WHLSLPrepare.h" 31 33 #include <wtf/RefCounted.h> … … 39 41 class GPUDevice; 40 42 class GPUErrorScopes; 43 class GPUPipelineLayout; 41 44 42 45 struct GPUComputePipelineDescriptor; … … 45 48 using PlatformComputePipelineSmartPtr = RetainPtr<MTLComputePipelineState>; 46 49 47 class GPUComputePipeline : public RefCounted<GPUComputePipeline>{50 class GPUComputePipeline final : public GPUPipeline { 48 51 public: 52 virtual ~GPUComputePipeline(); 53 49 54 static RefPtr<GPUComputePipeline> tryCreate(const GPUDevice&, const GPUComputePipelineDescriptor&, GPUErrorScopes&); 55 56 bool isComputePipeline() const { return true; } 57 58 bool recompile(const GPUDevice&, GPUProgrammableStageDescriptor&& computeStage); 50 59 51 60 const PlatformComputePipeline* platformComputePipeline() const { return m_platformComputePipeline.get(); } … … 54 63 55 64 private: 56 GPUComputePipeline(PlatformComputePipelineSmartPtr&&, WHLSL::ComputeDimensions );65 GPUComputePipeline(PlatformComputePipelineSmartPtr&&, WHLSL::ComputeDimensions, GPUPipelineLayout&); 57 66 58 67 PlatformComputePipelineSmartPtr m_platformComputePipeline; 59 68 WHLSL::ComputeDimensions m_computeDimensions { 0, 0, 0 }; 69 70 // Preserved for Web Inspector recompilation. 71 RefPtr<GPUPipelineLayout> m_layout; 60 72 }; 61 73 62 74 } // namespace WebCore 63 75 76 SPECIALIZE_TYPE_TRAITS_GPUPIPELINE(WebCore::GPUComputePipeline, isComputePipeline()) 77 64 78 #endif // ENABLE(WEBGPU) -
trunk/Source/WebCore/platform/graphics/gpu/GPUPipeline.cpp
r250113 r250114 23 23 * THE POSSIBILITY OF SUCH DAMAGE. 24 24 */ 25 // https://gpuweb.github.io/gpuweb26 25 27 [ 28 Conditional=WEBGPU, 29 EnabledAtRuntime=WebGPU, 30 ImplementationLacksVTable, 31 InterfaceName=GPUComputePipeline 32 ] interface WebGPUComputePipeline { 33 }; 26 #include "config.h" 27 #include "GPUPipeline.h" 28 29 #if ENABLE(WEBGPU) 30 31 namespace WebCore { 32 33 GPUPipeline::~GPUPipeline() = default; 34 35 } // namespace WebCore 36 37 #endif // ENABLE(WEBGPU) -
trunk/Source/WebCore/platform/graphics/gpu/GPUPipeline.h
r250113 r250114 28 28 #if ENABLE(WEBGPU) 29 29 30 #include "GPUComputePipeline.h" 31 #include "GPUObjectBase.h" 32 #include <wtf/RefPtr.h> 30 #include <wtf/RefCounted.h> 33 31 34 32 namespace WebCore { 35 33 36 class WebGPUComputePipeline : public GPUObjectBase{34 class GPUPipeline : public RefCounted<GPUPipeline> { 37 35 public: 38 static Ref<WebGPUComputePipeline> create(RefPtr<GPUComputePipeline>&&, GPUErrorScopes&);36 virtual ~GPUPipeline(); 39 37 40 const GPUComputePipeline* computePipeline() const { return m_computePipeline.get(); } 41 42 private: 43 WebGPUComputePipeline(RefPtr<GPUComputePipeline>&&, GPUErrorScopes&); 44 45 RefPtr<GPUComputePipeline> m_computePipeline; 38 virtual bool isRenderPipeline() const { return false; } 39 virtual bool isComputePipeline() const { return false; } 46 40 }; 47 41 48 42 } // namespace WebCore 49 43 44 #define SPECIALIZE_TYPE_TRAITS_GPUPIPELINE(ToValueTypeName, predicate) \ 45 SPECIALIZE_TYPE_TRAITS_BEGIN(ToValueTypeName) \ 46 static bool isType(const WebCore::GPUPipeline& pipeline) { return pipeline.predicate; } \ 47 SPECIALIZE_TYPE_TRAITS_END() 48 50 49 #endif // ENABLE(WEBGPU) -
trunk/Source/WebCore/platform/graphics/gpu/GPUProgrammableStageDescriptor.h
r249601 r250114 39 39 40 40 struct GPUProgrammableStageDescriptor : GPUProgrammableStageDescriptorBase { 41 GPUProgrammableStageDescriptor(Ref< constGPUShaderModule>&& module, const GPUProgrammableStageDescriptorBase& base)41 GPUProgrammableStageDescriptor(Ref<GPUShaderModule>&& module, const GPUProgrammableStageDescriptorBase& base) 42 42 : GPUProgrammableStageDescriptorBase(base) 43 43 , module { WTFMove(module) } … … 45 45 } 46 46 47 Ref< constGPUShaderModule> module;47 Ref<GPUShaderModule> module; 48 48 }; 49 49 -
trunk/Source/WebCore/platform/graphics/gpu/GPURenderPipeline.h
r249881 r250114 28 28 #if ENABLE(WEBGPU) 29 29 30 #include "GPUPipeline.h" 31 #include "GPUProgrammableStageDescriptor.h" 30 32 #include "GPURenderPipelineDescriptor.h" 31 33 #include <wtf/Optional.h> … … 47 49 using PlatformRenderPipelineSmartPtr = RetainPtr<MTLRenderPipelineState>; 48 50 49 class GPURenderPipeline : public RefCounted<GPURenderPipeline>{51 class GPURenderPipeline final : public GPUPipeline { 50 52 public: 53 virtual ~GPURenderPipeline(); 54 51 55 static RefPtr<GPURenderPipeline> tryCreate(const GPUDevice&, const GPURenderPipelineDescriptor&, GPUErrorScopes&); 56 57 bool isRenderPipeline() const { return true; } 58 59 bool recompile(const GPUDevice&, GPUProgrammableStageDescriptor&& vertexStage, Optional<GPUProgrammableStageDescriptor>&& fragmentStage); 52 60 53 61 #if USE(METAL) … … 60 68 private: 61 69 #if USE(METAL) 62 GPURenderPipeline(RetainPtr<MTLDepthStencilState>&&, PlatformRenderPipelineSmartPtr&&, GPUPrimitiveTopology, Optional<GPUIndexFormat> );70 GPURenderPipeline(RetainPtr<MTLDepthStencilState>&&, PlatformRenderPipelineSmartPtr&&, GPUPrimitiveTopology, Optional<GPUIndexFormat>, GPUPipelineLayout&, const GPURenderPipelineDescriptorBase&); 63 71 64 72 RetainPtr<MTLDepthStencilState> m_depthStencilState; … … 67 75 GPUPrimitiveTopology m_primitiveTopology; 68 76 Optional<GPUIndexFormat> m_indexFormat; 77 78 // Preserved for Web Inspector recompilation. 79 RefPtr<GPUPipelineLayout> m_layout; 80 GPURenderPipelineDescriptorBase m_renderDescriptorBase; 69 81 }; 70 82 71 83 } // namespace WebCore 72 84 85 SPECIALIZE_TYPE_TRAITS_GPUPIPELINE(WebCore::GPURenderPipeline, isRenderPipeline()) 86 73 87 #endif // ENABLE(WEBGPU) -
trunk/Source/WebCore/platform/graphics/gpu/cocoa/GPUComputePipelineMetal.mm
r249881 r250114 32 32 #import "GPUDevice.h" 33 33 #import "GPUErrorScopes.h" 34 #import "GPUPipelineLayout.h" 34 35 #import "GPUPipelineMetalConvertLayout.h" 35 36 #import "WHLSLPrepare.h" … … 195 196 return nullptr; 196 197 197 return adoptRef(new GPUComputePipeline(WTFMove(createResult->pipelineState), createResult->computeDimensions)); 198 } 199 200 GPUComputePipeline::GPUComputePipeline(RetainPtr<MTLComputePipelineState>&& pipeline, WHLSL::ComputeDimensions computeDimensions) 201 : m_platformComputePipeline(WTFMove(pipeline)) 198 ASSERT(descriptor.layout); 199 return adoptRef(new GPUComputePipeline(WTFMove(createResult->pipelineState), createResult->computeDimensions, *descriptor.layout)); 200 } 201 202 GPUComputePipeline::GPUComputePipeline(RetainPtr<MTLComputePipelineState>&& pipeline, WHLSL::ComputeDimensions computeDimensions, GPUPipelineLayout& layout) 203 : GPUPipeline() 204 , m_platformComputePipeline(WTFMove(pipeline)) 202 205 , m_computeDimensions(computeDimensions) 203 { 206 , m_layout(makeRef(layout)) 207 { 208 } 209 210 GPUComputePipeline::~GPUComputePipeline() = default; 211 212 bool GPUComputePipeline::recompile(const GPUDevice& device, GPUProgrammableStageDescriptor&& computeStage) 213 { 214 if (m_layout) { 215 GPUComputePipelineDescriptor descriptor(makeRef(*m_layout), WTFMove(computeStage)); 216 auto errorScopes = GPUErrorScopes::create([] (GPUError&&) { }); 217 if (auto createResult = tryCreateMTLComputePipelineState(device, descriptor, errorScopes)) { 218 m_platformComputePipeline = WTFMove(createResult->pipelineState); 219 m_computeDimensions = createResult->computeDimensions; 220 return true; 221 } 222 } 223 224 return false; 204 225 } 205 226 -
trunk/Source/WebCore/platform/graphics/gpu/cocoa/GPURenderPipelineMetal.mm
r249881 r250114 33 33 #import "GPULimits.h" 34 34 #import "GPUPipelineMetalConvertLayout.h" 35 #import "GPURenderPipelineDescriptor.h" 35 36 #import "GPUUtils.h" 36 37 #import "WHLSLPrepare.h" … … 484 485 } 485 486 486 static RetainPtr<MTLRenderPipelineState> tryCreateMtlRenderPipelineState(const GPU RenderPipelineDescriptor& descriptor, const GPUDevice& device, GPUErrorScopes& errorScopes)487 static RetainPtr<MTLRenderPipelineState> tryCreateMtlRenderPipelineState(const GPUDevice& device, const GPURenderPipelineDescriptor& descriptor, GPUErrorScopes& errorScopes) 487 488 { 488 489 if (!device.platformDevice()) { … … 523 524 // FIXME: https://bugs.webkit.org/show_bug.cgi?id=198387 depthStencilAttachmentDescriptor isn't implemented yet for WHLSL compiler. 524 525 525 auto pipeline = tryCreateMtlRenderPipelineState(de scriptor, device, errorScopes);526 auto pipeline = tryCreateMtlRenderPipelineState(device, descriptor, errorScopes); 526 527 if (!pipeline) 527 528 return nullptr; 528 529 529 return adoptRef(new GPURenderPipeline(WTFMove(depthStencil), WTFMove(pipeline), descriptor.primitiveTopology, descriptor.vertexInput.indexFormat)); 530 } 531 532 GPURenderPipeline::GPURenderPipeline(RetainPtr<MTLDepthStencilState>&& depthStencil, RetainPtr<MTLRenderPipelineState>&& pipeline, GPUPrimitiveTopology topology, Optional<GPUIndexFormat> format) 533 : m_depthStencilState(WTFMove(depthStencil)) 530 ASSERT(descriptor.layout); 531 return adoptRef(new GPURenderPipeline(WTFMove(depthStencil), WTFMove(pipeline), descriptor.primitiveTopology, descriptor.vertexInput.indexFormat, *descriptor.layout, descriptor)); 532 } 533 534 GPURenderPipeline::GPURenderPipeline(RetainPtr<MTLDepthStencilState>&& depthStencil, RetainPtr<MTLRenderPipelineState>&& pipeline, GPUPrimitiveTopology topology, Optional<GPUIndexFormat> format, GPUPipelineLayout& layout, const GPURenderPipelineDescriptorBase& renderDescriptorBase) 535 : GPUPipeline() 536 , m_depthStencilState(WTFMove(depthStencil)) 534 537 , m_platformRenderPipeline(WTFMove(pipeline)) 535 538 , m_primitiveTopology(topology) 536 539 , m_indexFormat(format) 537 { 540 , m_layout(makeRef(layout)) 541 , m_renderDescriptorBase(renderDescriptorBase) 542 { 543 } 544 545 GPURenderPipeline::~GPURenderPipeline() = default; 546 547 bool GPURenderPipeline::recompile(const GPUDevice& device, GPUProgrammableStageDescriptor&& vertexStage, Optional<GPUProgrammableStageDescriptor>&& fragmentStage) 548 { 549 if (m_layout) { 550 GPURenderPipelineDescriptor descriptor(makeRef(*m_layout), WTFMove(vertexStage), WTFMove(fragmentStage), m_renderDescriptorBase); 551 auto errorScopes = GPUErrorScopes::create([] (GPUError&&) { }); 552 if (auto pipeline = tryCreateMtlRenderPipelineState(device, descriptor, errorScopes)) { 553 m_platformRenderPipeline = WTFMove(pipeline); 554 return true; 555 } 556 } 557 558 return false; 538 559 } 539 560 -
trunk/Source/WebInspectorUI/ChangeLog
r250087 r250114 1 2019-09-19 Devin Rousso <drousso@apple.com> 2 3 Web Inspector: Canvas: show WebGPU shader pipelines 4 https://bugs.webkit.org/show_bug.cgi?id=201675 5 6 Reviewed by Joseph Pecoraro. 7 8 Show WebGPU shader pipelines ("programs") underneath each corresponding WebGPU device. 9 10 Allow editing of attached shader modules for each WebGPU shader pipeline, but don't allow 11 highlighting/disabling, as WebGPU pipelines don't have those capabilities/concepts yet. 12 13 * UserInterface/Protocol/CanvasObserver.js: 14 (WI.CanvasObserver.prototype.programCreated): 15 * UserInterface/Controllers/CanvasManager.js: 16 (WI.CanvasManager.prototype.programCreated): 17 18 * UserInterface/Models/Canvas.js: 19 (WI.Canvas.prototype.nextShaderProgramDisplayNumberForProgramType): Added. 20 (WI.Canvas.prototype.nextShaderProgramDisplayNumber): Deleted. 21 22 * UserInterface/Models/ShaderProgram.js: 23 (WI.ShaderProgram): 24 (WI.ShaderProgram.contextTypeSupportsProgramType): Added. 25 (WI.ShaderProgram.programTypeSupportsShaderType): Added. 26 (WI.ShaderProgram.prototype.get programType): Added. 27 (WI.ShaderProgram.prototype.get displayName): 28 (WI.ShaderProgram.prototype.set disabled): 29 (WI.ShaderProgram.prototype.requestShaderSource): 30 (WI.ShaderProgram.prototype.updateShader): 31 (WI.ShaderProgram.prototype.showHighlight): 32 (WI.ShaderProgram.prototype.hideHighlight): 33 (WI.ShaderProgram.prototype.requestVertexShaderSource): Deleted. 34 (WI.ShaderProgram.prototype.requestFragmentShaderSource): Deleted. 35 (WI.ShaderProgram.prototype.updateVertexShader): Deleted. 36 (WI.ShaderProgram.prototype.updateFragmentShader): Deleted. 37 (WI.ShaderProgram.prototype._requestShaderSource): Deleted. 38 (WI.ShaderProgram.prototype._updateShader): Deleted. 39 40 * UserInterface/Views/ShaderProgramContentView.js: 41 (WI.ShaderProgramContentView): 42 (WI.ShaderProgramContentView.prototype.get navigationItems): Added. 43 (WI.ShaderProgramContentView.prototype.shown): 44 (WI.ShaderProgramContentView.prototype.hidden): 45 (WI.ShaderProgramContentView.prototype.get saveData): 46 (WI.ShaderProgramContentView.prototype._refreshContent): 47 (WI.ShaderProgramContentView.prototype._updateShader): 48 (WI.ShaderProgramContentView.prototype._contentDidChange): 49 * UserInterface/Views/ShaderProgramContentView.css: 50 (.content-view.shader-program > .shader): Added. 51 (.content-view.shader-program > .shader.compute): Added. 52 (body[dir=ltr] .content-view.shader-program > .shader.vertex,): Added. 53 (body[dir=ltr] .content-view.shader-program > .shader.fragment,): Added. 54 (.content-view.shader-program > .shader + .shader): Added. 55 (.content-view.shader-program > .shader > header > *): Added. 56 (.content-view.shader-program > .shader > header > .shader-type): Added. 57 (@media (prefers-color-scheme: dark) .content-view.shader-program > .shader > header): Added. 58 (.content-view.shader-program > .text-editor.shader): Deleted. 59 (body[dir=ltr] .content-view.shader-program > .text-editor.shader.vertex,): Deleted. 60 (body[dir=ltr] .content-view.shader-program > .text-editor.shader.fragment,): Deleted. 61 (body[dir=ltr] .content-view.shader-program > .text-editor.shader + .text-editor.shader): Deleted. 62 (body[dir=rtl] .content-view.shader-program > .text-editor.shader + .text-editor.shader): Deleted. 63 (.content-view.shader-program > .text-editor.shader > .type-title): Deleted. 64 (.content-view.shader-program > .text-editor.shader > .CodeMirror): Deleted. 65 * UserInterface/Views/CodeMirrorAdditions.js: 66 67 * UserInterface/Views/ShaderProgramTreeElement.js: 68 (WI.ShaderProgramTreeElement): 69 (WI.ShaderProgramTreeElement.prototype.onattach): 70 (WI.ShaderProgramTreeElement.prototype.ondetach): 71 (WI.ShaderProgramTreeElement.prototype.canSelectOnMouseDown): 72 (WI.ShaderProgramTreeElement.prototype.populateContextMenu): 73 74 * Localizations/en.lproj/localizedStrings.js: 75 1 76 2019-09-18 Devin Rousso <drousso@apple.com> 2 77 -
trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
r250087 r250114 267 267 localizedStrings["Compression"] = "Compression"; 268 268 localizedStrings["Compression:"] = "Compression:"; 269 localizedStrings["Compute"] = "Compute"; 270 localizedStrings["Compute Pipeline %d"] = "Compute Pipeline %d"; 271 localizedStrings["Compute Shader"] = "Compute Shader"; 269 272 localizedStrings["Computed"] = "Computed"; 270 273 localizedStrings["Condition"] = "Condition"; … … 464 467 localizedStrings["Entered Full-Screen Mode"] = "Entered Full-Screen Mode"; 465 468 localizedStrings["Entire Recording"] = "Entire Recording"; 469 localizedStrings["Entry point: "] = "Entry point: "; 466 470 localizedStrings["Error"] = "Error"; 467 471 localizedStrings["Error: "] = "Error: "; … … 882 886 localizedStrings["Remove this breakpoint action"] = "Remove this breakpoint action"; 883 887 localizedStrings["Removed descendant "] = "Removed descendant "; 888 localizedStrings["Render Pipeline %d"] = "Render Pipeline %d"; 884 889 localizedStrings["Rendering Frames"] = "Rendering Frames"; 885 890 localizedStrings["Repeating Linear Gradient"] = "Repeating Linear Gradient"; … … 998 1003 localizedStrings["Setter"] = "Setter"; 999 1004 localizedStrings["Settings"] = "Settings"; 1000 localizedStrings["Shader"] = "Shader";1001 1005 localizedStrings["Shader Programs"] = "Shader Programs"; 1002 1006 localizedStrings["Shadow Content"] = "Shadow Content"; -
trunk/Source/WebInspectorUI/UserInterface/Controllers/CanvasManager.js
r249786 r250114 235 235 } 236 236 237 programCreated(canvasIdentifier, programIdentifier )237 programCreated(canvasIdentifier, programIdentifier, programType) 238 238 { 239 239 let canvas = this._canvasIdentifierMap.get(canvasIdentifier); … … 244 244 console.assert(!this._shaderProgramIdentifierMap.has(programIdentifier), `ShaderProgram already exists with id ${programIdentifier}.`); 245 245 246 let program = new WI.ShaderProgram(programIdentifier, canvas); 246 // COMPATIBILITY (iOS 13): `programType` did not exist yet. 247 if (!programType) 248 programType = WI.ShaderProgram.ProgramType.Render; 249 250 let program = new WI.ShaderProgram(programIdentifier, programType, canvas); 247 251 this._shaderProgramIdentifierMap.set(program.identifier, program); 248 252 -
trunk/Source/WebInspectorUI/UserInterface/Models/Canvas.js
r249786 r250114 46 46 this._recordingCollection = new WI.RecordingCollection; 47 47 48 this._nextShaderProgramDisplayNumber = 1;48 this._nextShaderProgramDisplayNumber = null; 49 49 50 50 this._requestNodePromise = null; … … 410 410 } 411 411 412 nextShaderProgramDisplayNumber ()412 nextShaderProgramDisplayNumberForProgramType(programType) 413 413 { 414 414 // Called from WI.ShaderProgram. 415 415 416 return this._nextShaderProgramDisplayNumber++; 416 if (!this._nextShaderProgramDisplayNumber) 417 this._nextShaderProgramDisplayNumber = {}; 418 419 this._nextShaderProgramDisplayNumber[programType] = (this._nextShaderProgramDisplayNumber[programType] || 0) + 1; 420 return this._nextShaderProgramDisplayNumber[programType]; 417 421 } 418 422 }; -
trunk/Source/WebInspectorUI/UserInterface/Models/ShaderProgram.js
r249513 r250114 26 26 WI.ShaderProgram = class ShaderProgram extends WI.Object 27 27 { 28 constructor(identifier, canvas)28 constructor(identifier, programType, canvas) 29 29 { 30 30 console.assert(identifier); 31 console.assert(Object.values(ShaderProgram.ProgramType).includes(programType)); 31 32 console.assert(canvas instanceof WI.Canvas); 33 console.assert(ShaderProgram.contextTypeSupportsProgramType(canvas.contextType, programType)); 32 34 33 35 super(); 34 36 35 37 this._identifier = identifier; 38 this._programType = programType; 36 39 this._canvas = canvas; 37 this._uniqueDisplayNumber = canvas.nextShaderProgramDisplayNumber();38 40 this._disabled = false; 41 } 42 43 // Static 44 45 static contextTypeSupportsProgramType(contextType, programType) 46 { 47 switch (contextType) { 48 case WI.Canvas.ContextType.WebGL: 49 case WI.Canvas.ContextType.WebGL2: 50 return programType === ShaderProgram.ProgramType.Render; 51 52 case WI.Canvas.ContextType.WebGPU: 53 return programType === ShaderProgram.ProgramType.Compute 54 || programType === ShaderProgram.ProgramType.Render; 55 } 56 57 console.assert(); 58 return false; 59 } 60 61 static programTypeSupportsShaderType(programType, shaderType) 62 { 63 switch (programType) { 64 case ShaderProgram.ProgramType.Compute: 65 return shaderType === ShaderProgram.ShaderType.Compute; 66 67 case ShaderProgram.ProgramType.Render: 68 return shaderType === ShaderProgram.ShaderType.Fragment 69 || shaderType === ShaderProgram.ShaderType.Vertex; 70 } 71 72 console.assert(); 73 return false; 39 74 } 40 75 … … 42 77 43 78 get identifier() { return this._identifier; } 79 get programType() { return this._programType; } 44 80 get canvas() { return this._canvas; } 45 81 46 82 get displayName() 47 83 { 48 return WI.UIString("Program %d").format(this._uniqueDisplayNumber); 84 let format = null; 85 switch (this._canvas.contextType) { 86 case WI.Canvas.ContextType.WebGL: 87 case WI.Canvas.ContextType.WebGL2: 88 format = WI.UIString("Program %d"); 89 break; 90 case WI.Canvas.ContextType.WebGPU: 91 switch (this._programType) { 92 case ShaderProgram.ProgramType.Compute: 93 format = WI.UIString("Compute Pipeline %d"); 94 break; 95 case ShaderProgram.ProgramType.Render: 96 format = WI.UIString("Render Pipeline %d"); 97 break; 98 } 99 break; 100 } 101 console.assert(format); 102 if (!this._uniqueDisplayNumber) 103 this._uniqueDisplayNumber = this._canvas.nextShaderProgramDisplayNumberForProgramType(this._programType); 104 return format.format(this._uniqueDisplayNumber); 49 105 } 50 106 … … 56 112 set disabled(disabled) 57 113 { 114 console.assert(this._programType === ShaderProgram.ProgramType.Render); 115 console.assert(this._canvas.contextType === WI.Canvas.ContextType.WebGL || this._canvas.contextType === WI.Canvas.ContextType.WebGL2); 116 117 if (this._canvas.contextType === WI.Canvas.ContextType.WebGPU) 118 return; 119 58 120 if (this._disabled === disabled) 59 121 return; … … 66 128 } 67 129 68 request VertexShaderSource(callback)130 requestShaderSource(shaderType, callback) 69 131 { 70 this._requestShaderSource(CanvasAgent.ShaderType.Vertex, callback); 132 console.assert(Object.values(ShaderProgram.ShaderType).includes(shaderType)); 133 console.assert(ShaderProgram.programTypeSupportsShaderType(this._programType, shaderType)); 134 135 // COMPATIBILITY (iOS 13): `content` was renamed to `source`. 136 CanvasAgent.requestShaderSource(this._identifier, shaderType, (error, source) => { 137 if (error) { 138 WI.reportInternalError(error); 139 callback(null, null); 140 return; 141 } 142 143 callback(source); 144 }); 71 145 } 72 146 73 requestFragmentShaderSource(callback)147 updateShader(shaderType, source) 74 148 { 75 this._requestShaderSource(CanvasAgent.ShaderType.Fragment, callback);76 }149 console.assert(Object.values(ShaderProgram.ShaderType).includes(shaderType)); 150 console.assert(ShaderProgram.programTypeSupportsShaderType(this._programType, shaderType)); 77 151 78 updateVertexShader(source) 79 { 80 this._updateShader(CanvasAgent.ShaderType.Vertex, source); 81 } 82 83 updateFragmentShader(source) 84 { 85 this._updateShader(CanvasAgent.ShaderType.Fragment, source); 152 CanvasAgent.updateShader(this._identifier, shaderType, source); 86 153 } 87 154 88 155 showHighlight() 89 156 { 90 cons t highlighted = true;91 CanvasAgent.setShaderProgramHighlighted(this._identifier, highlighted, (error) => {92 console.assert(!error, error); 93 });157 console.assert(this._programType === ShaderProgram.ProgramType.Render); 158 console.assert(this._canvas.contextType === WI.Canvas.ContextType.WebGL || this._canvas.contextType === WI.Canvas.ContextType.WebGL2); 159 160 CanvasAgent.setShaderProgramHighlighted(this._identifier, true); 94 161 } 95 162 96 163 hideHighlight() 97 164 { 98 const highlighted = false; 99 CanvasAgent.setShaderProgramHighlighted(this._identifier, highlighted, (error) => { 100 console.assert(!error, error); 101 }); 102 } 165 console.assert(this._programType === ShaderProgram.ProgramType.Render); 166 console.assert(this._canvas.contextType === WI.Canvas.ContextType.WebGL || this._canvas.contextType === WI.Canvas.ContextType.WebGL2); 103 167 104 // Private 105 106 _requestShaderSource(shaderType, callback) 107 { 108 CanvasAgent.requestShaderSource(this._identifier, shaderType, (error, content) => { 109 if (error) { 110 callback(null); 111 return; 112 } 113 114 callback(content); 115 }); 116 } 117 118 _updateShader(shaderType, source) 119 { 120 CanvasAgent.updateShader(this._identifier, shaderType, source, (error) => { 121 console.assert(!error, error); 122 }); 168 CanvasAgent.setShaderProgramHighlighted(this._identifier, false); 123 169 } 124 170 }; 125 171 172 WI.ShaderProgram.ProgramType = { 173 Compute: "compute", 174 Render: "render", 175 }; 176 126 177 WI.ShaderProgram.ShaderType = { 127 Fragment: "shader-type-fragment", 128 Vertex: "shader-type-vertex", 178 Compute: "compute", 179 Fragment: "fragment", 180 Vertex: "vertex", 129 181 }; 130 182 -
trunk/Source/WebInspectorUI/UserInterface/Protocol/CanvasObserver.js
r249786 r250114 68 68 } 69 69 70 programCreated(canvasId, programId )70 programCreated(canvasId, programId, programType) 71 71 { 72 WI.canvasManager.programCreated(canvasId, programId );72 WI.canvasManager.programCreated(canvasId, programId, programType); 73 73 } 74 74 -
trunk/Source/WebInspectorUI/UserInterface/Views/CodeMirrorAdditions.js
r248898 r250114 683 683 CodeMirror.defineMIME(type, {name: "javascript", json: true}); 684 684 }); 685 686 // FIXME: Add WHLSL specific modes. 687 CodeMirror.defineMIME("x-pipeline/x-compute", "x-shader/x-vertex"); 688 CodeMirror.defineMIME("x-pipeline/x-fragment", "x-shader/x-fragment"); 689 CodeMirror.defineMIME("x-pipeline/x-vertex", "x-shader/x-vertex"); 685 690 })(); 686 691 -
trunk/Source/WebInspectorUI/UserInterface/Views/ShaderProgramContentView.css
r242194 r250114 24 24 */ 25 25 26 .content-view.shader-program > .text-editor.shader { 26 .content-view.shader-program > .shader { 27 display: flex; 28 flex-direction: column; 27 29 position: absolute; 28 30 top: 0; 29 31 bottom: 0; 30 31 --border-start-style: 1px solid lightgrey;32 32 } 33 33 34 body[dir=ltr] .content-view.shader-program > .text-editor.shader.vertex, 35 body[dir=rtl] .content-view.shader-program > .text-editor.shader.fragment { 34 .content-view.shader-program > .shader.compute { 35 right: 0; 36 left: 0; 37 } 38 39 body[dir=ltr] .content-view.shader-program > .shader.vertex, 40 body[dir=rtl] .content-view.shader-program > .shader.fragment { 36 41 width: calc(50% - 1px); 37 42 left: 0; 38 43 } 39 44 40 body[dir=ltr] .content-view.shader-program > . text-editor.shader.fragment,41 body[dir=rtl] .content-view.shader-program > . text-editor.shader.vertex {45 body[dir=ltr] .content-view.shader-program > .shader.fragment, 46 body[dir=rtl] .content-view.shader-program > .shader.vertex { 42 47 width: calc(50% + 1px); 43 48 right: 0; 44 49 } 45 50 46 body[dir=ltr] .content-view.shader-program > .text-editor.shader + .text-editor.shader {47 border-left: var(--border-start-style);51 .content-view.shader-program > .shader + .shader { 52 border-left: 1px solid var(--border-color); 48 53 } 49 54 50 body[dir=rtl] .content-view.shader-program > .text-editor.shader + .text-editor.shader { 51 border-right: var(--border-start-style); 52 } 53 54 .content-view.shader-program > .text-editor.shader > .type-title { 55 .content-view.shader-program > .shader > header > * { 55 56 padding: 2px 4px; 56 background-color: hsl(0, 0%, 95%);57 57 border-bottom: 1px solid lightgrey; 58 58 } 59 59 60 .content-view.shader-program > . text-editor.shader > .CodeMirror{61 top: 18px;60 .content-view.shader-program > .shader > header > .shader-type { 61 background-color: hsl(0, 0%, 95%); 62 62 } 63 63 64 64 @media (prefers-color-scheme: dark) { 65 .content-view.shader-program > .text-editor.shader { 66 --border-start-style: 1px solid var(--text-color-quaternary); 67 } 68 69 .content-view.shader-program > .text-editor.shader > .type-title { 65 .content-view.shader-program > .shader > header { 70 66 background-color: var(--background-color); 71 67 border-bottom-color: var(--text-color-quaternary); -
trunk/Source/WebInspectorUI/UserInterface/Views/ShaderProgramContentView.js
r246419 r250114 32 32 super(shaderProgram); 33 33 34 let isWebGPU = this.representedObject.contextType === WI.Canvas.ContextType.WebGPU; 35 36 this._refreshButtonNavigationItem = new WI.ButtonNavigationItem("refresh", WI.UIString("Refresh"), "Images/ReloadFull.svg", 13, 13); 37 this._refreshButtonNavigationItem.visibilityPriority = WI.NavigationItem.VisibilityPriority.Low; 38 this._refreshButtonNavigationItem.addEventListener(WI.ButtonNavigationItem.Event.Clicked, this._refreshContent, this); 39 34 40 let contentDidChangeDebouncer = new Debouncer((event) => { 35 41 this._contentDidChange(event); 36 42 }); 37 43 38 this.element.classList.add("shader-program" );44 this.element.classList.add("shader-program", this.representedObject.programType); 39 45 40 46 let createEditor = (shaderType) => { 47 let container = this.element.appendChild(document.createElement("div")); 48 49 let header = container.appendChild(document.createElement("header")); 50 51 let shaderTypeContainer = header.appendChild(document.createElement("div")); 52 shaderTypeContainer.classList.add("shader-type"); 53 41 54 let textEditor = new WI.TextEditor; 42 55 textEditor.readOnly = false; … … 46 59 contentDidChangeDebouncer.delayForTime(250, event); 47 60 }, this); 48 textEditor.element.classList.add("shader");49 50 let shaderTypeContainer = textEditor.element.insertAdjacentElement("afterbegin", document.createElement("div"));51 shaderTypeContainer.classList.add("type-title");52 61 53 62 switch (shaderType) { 63 case WI.ShaderProgram.ShaderType.Compute: 64 shaderTypeContainer.textContent = WI.UIString("Compute Shader"); 65 textEditor.mimeType = isWebGPU ? "x-pipeline/x-compute" : "x-shader/x-compute"; 66 break; 67 68 case WI.ShaderProgram.ShaderType.Fragment: 69 shaderTypeContainer.textContent = WI.UIString("Fragment Shader"); 70 textEditor.mimeType = isWebGPU ? "x-pipeline/x-fragment" : "x-shader/x-fragment"; 71 break; 72 54 73 case WI.ShaderProgram.ShaderType.Vertex: 55 74 shaderTypeContainer.textContent = WI.UIString("Vertex Shader"); 56 textEditor.mimeType = "x-shader/x-vertex"; 57 textEditor.element.classList.add("vertex"); 58 break; 59 60 case WI.ShaderProgram.ShaderType.Fragment: 61 shaderTypeContainer.textContent = WI.UIString("Fragment Shader"); 62 textEditor.mimeType = "x-shader/x-fragment"; 63 textEditor.element.classList.add("fragment"); 75 textEditor.mimeType = isWebGPU ? "x-pipeline/x-vertex" : "x-shader/x-vertex"; 64 76 break; 65 77 } 66 78 67 79 this.addSubview(textEditor); 68 return textEditor; 80 container.appendChild(textEditor.element); 81 container.classList.add("shader", shaderType); 82 83 return {container, textEditor}; 69 84 }; 70 85 71 this._vertexEditor = createEditor(WI.ShaderProgram.ShaderType.Vertex); 72 this._fragmentEditor = createEditor(WI.ShaderProgram.ShaderType.Fragment); 73 this._lastActiveEditor = this._vertexEditor; 86 switch (this.representedObject.programType) { 87 case WI.ShaderProgram.ProgramType.Compute: { 88 let computeEditor = createEditor(WI.ShaderProgram.ShaderType.Compute); 89 this._computeContainer = computeEditor.container; 90 this._computeEditor = computeEditor.textEditor; 91 92 this._lastActiveEditor = this._computeEditor; 93 break; 94 } 95 96 case WI.ShaderProgram.ProgramType.Render: { 97 let vertexEditor = createEditor(WI.ShaderProgram.ShaderType.Vertex); 98 this._vertexContainer = vertexEditor.container; 99 this._vertexEditor = vertexEditor.textEditor; 100 101 let fragmentEditor = createEditor(WI.ShaderProgram.ShaderType.Fragment); 102 this._fragmentContainer = fragmentEditor.container; 103 this._fragmentEditor = fragmentEditor.textEditor; 104 105 this._lastActiveEditor = this._vertexEditor; 106 break; 107 } 108 } 109 } 110 111 // Public 112 113 get navigationItems() 114 { 115 return [this._refreshButtonNavigationItem]; 74 116 } 75 117 … … 80 122 super.shown(); 81 123 82 this._vertexEditor.shown(); 83 this._fragmentEditor.shown(); 84 85 this.representedObject.requestVertexShaderSource((content) => { 86 this._vertexEditor.string = content || ""; 87 }); 88 89 this.representedObject.requestFragmentShaderSource((content) => { 90 this._fragmentEditor.string = content || ""; 91 }); 124 switch (this.representedObject.programType) { 125 case WI.ShaderProgram.ProgramType.Compute: 126 this._computeEditor.shown(); 127 break; 128 129 case WI.ShaderProgram.ProgramType.Render: 130 this._vertexEditor.shown(); 131 this._fragmentEditor.shown(); 132 break; 133 } 134 135 this._refreshContent(); 92 136 } 93 137 94 138 hidden() 95 139 { 96 this._vertexEditor.hidden(); 97 this._fragmentEditor.hidden(); 140 switch (this.representedObject.programType) { 141 case WI.ShaderProgram.ProgramType.Compute: 142 this._computeEditor.hidden(); 143 break; 144 145 case WI.ShaderProgram.ProgramType.Render: 146 this._vertexEditor.hidden(); 147 this._fragmentEditor.hidden(); 148 break; 149 } 98 150 99 151 super.hidden(); … … 107 159 get saveData() 108 160 { 109 let filename = WI.UIString("Shader"); 110 if (this._lastActiveEditor === this._vertexEditor) 161 let filename = ""; 162 switch (this._lastActiveEditor) { 163 case this._computeEditor: 164 filename = WI.UIString("Compute"); 165 break; 166 case this._fragmentEditor: 167 filename = WI.UIString("Fragment"); 168 break; 169 case this._vertexEditor: 111 170 filename = WI.UIString("Vertex"); 112 else if (this._lastActiveEditor === this._fragmentEditor) 113 filename = WI.UIString("Fragment"); 171 break; 172 } 173 console.assert(filename); 174 175 let extension = ""; 176 switch (this.representedObject.canvas.contextType) { 177 case WI.Canvas.ContextType.WebGL: 178 case WI.Canvas.ContextType.WebGL2: 179 extension = WI.unlocalizedString(".glsl"); 180 break; 181 case WI.Canvas.ContextType.WebGPU: 182 extension = WI.unlocalizedString(".wsl"); 183 break; 184 } 185 console.assert(extension); 114 186 115 187 return { 116 url: WI.FileUtilities.inspectorURLForFilename(filename + ".glsl"),188 url: WI.FileUtilities.inspectorURLForFilename(filename + extension), 117 189 content: this._lastActiveEditor.string, 118 190 forceSaveAs: true, … … 172 244 // Private 173 245 246 _refreshContent() 247 { 248 let createCallback = (container, textEditor) => { 249 return (source, entryPoint) => { 250 if (source === null) { 251 container.remove(); 252 return; 253 } 254 255 if (!container.parentNode) { 256 switch (container) { 257 case this._computeContainer: 258 case this._vertexContainer: 259 this.element.insertAdjacentElement("afterbegin", container); 260 break; 261 262 case this._fragmentContainer: 263 this.element.insertAdjacentElement("beforeend", container); 264 break; 265 } 266 } 267 268 textEditor.string = source || ""; 269 }; 270 }; 271 272 switch (this.representedObject.programType) { 273 case WI.ShaderProgram.ProgramType.Compute: 274 this.representedObject.requestShaderSource(WI.ShaderProgram.ShaderType.Compute, createCallback(this._computeContainer, this._computeEditor)); 275 return; 276 277 case WI.ShaderProgram.ProgramType.Render: 278 this.representedObject.requestShaderSource(WI.ShaderProgram.ShaderType.Vertex, createCallback(this._vertexContainer, this._vertexEditor)); 279 this.representedObject.requestShaderSource(WI.ShaderProgram.ShaderType.Fragment, createCallback(this._fragmentContainer, this._fragmentEditor)); 280 return; 281 } 282 283 console.assert(); 284 } 285 286 _updateShader(shaderType) 287 { 288 switch (shaderType) { 289 case WI.ShaderProgram.ShaderType.Compute: 290 this.representedObject.updateShader(shaderType, this._computeEditor.string); 291 return; 292 293 case WI.ShaderProgram.ShaderType.Fragment: 294 this.representedObject.updateShader(shaderType, this._fragmentEditor.string); 295 return; 296 297 case WI.ShaderProgram.ShaderType.Vertex: 298 this.representedObject.updateShader(shaderType, this._vertexEditor.string); 299 return; 300 } 301 302 console.assert(); 303 } 304 174 305 _editorFocused(event) 175 306 { … … 198 329 _contentDidChange(event) 199 330 { 200 if (event.target === this._vertexEditor) 201 this.representedObject.updateVertexShader(this._vertexEditor.string); 202 else if (event.target === this._fragmentEditor) 203 this.representedObject.updateFragmentShader(this._fragmentEditor.string); 331 switch (event.target) { 332 case this._computeEditor: 333 this._updateShader(WI.ShaderProgram.ShaderType.Compute); 334 return; 335 336 case this._fragmentEditor: 337 this._updateShader(WI.ShaderProgram.ShaderType.Fragment); 338 return; 339 340 case this._vertexEditor: 341 this._updateShader(WI.ShaderProgram.ShaderType.Vertex); 342 return; 343 } 344 345 console.assert(); 204 346 } 205 347 }; -
trunk/Source/WebInspectorUI/UserInterface/Views/ShaderProgramTreeElement.js
r249513 r250114 33 33 super("shader-program", shaderProgram.displayName, subtitle, shaderProgram); 34 34 35 this._disabledImageElement = document.createElement("img"); 36 this._disabledImageElement.title = WI.UIString("Disable Program"); 37 this._disabledImageElement.addEventListener("click", this._disabledImageElementClicked.bind(this)); 38 this.status = this._disabledImageElement; 35 // FIXME: add support for disabling/highlighting WebGPU shader pipelines. 36 let contextType = this.representedObject.canvas.contextType; 37 if (contextType === WI.Canvas.ContextType.WebGL || contextType === WI.Canvas.ContextType.WebGL2) { 38 this._disabledImageElement = document.createElement("img"); 39 this._disabledImageElement.title = WI.UIString("Disable Program"); 40 this._disabledImageElement.addEventListener("click", this._disabledImageElementClicked.bind(this)); 41 this.status = this._disabledImageElement; 42 } 39 43 } 40 44 … … 45 49 super.onattach(); 46 50 47 this.representedObject.addEventListener(WI.ShaderProgram.Event.DisabledChanged, this._handleShaderProgramDisabledChanged, this); 51 // FIXME: add support for disabling/highlighting WebGPU shader pipelines. 52 let contextType = this.representedObject.canvas.contextType; 53 if (contextType === WI.Canvas.ContextType.WebGL || contextType === WI.Canvas.ContextType.WebGL2) { 54 this.representedObject.addEventListener(WI.ShaderProgram.Event.DisabledChanged, this._handleShaderProgramDisabledChanged, this); 48 55 49 this.element.addEventListener("mouseover", this._handleMouseOver.bind(this)); 50 this.element.addEventListener("mouseout", this._handleMouseOut.bind(this)); 56 this.element.addEventListener("mouseover", this._handleMouseOver.bind(this)); 57 this.element.addEventListener("mouseout", this._handleMouseOut.bind(this)); 58 } 51 59 } 52 60 53 61 ondetach() 54 62 { 55 this.representedObject.removeEventListener(WI.ShaderProgram.Event.DisabledChanged, this._handleShaderProgramDisabledChanged, this); 63 // FIXME: add support for disabling/highlighting WebGPU shader pipelines. 64 let contextType = this.representedObject.canvas.contextType; 65 if (contextType === WI.Canvas.ContextType.WebGL || contextType === WI.Canvas.ContextType.WebGL2) 66 this.representedObject.removeEventListener(WI.ShaderProgram.Event.DisabledChanged, this._handleShaderProgramDisabledChanged, this); 56 67 57 68 super.ondetach(); … … 60 71 canSelectOnMouseDown(event) 61 72 { 62 if (this._disabledImageElement .contains(event.target))73 if (this._disabledImageElement && this._disabledImageElement.contains(event.target)) 63 74 return false; 64 75 return super.canSelectOnMouseDown(event); … … 67 78 populateContextMenu(contextMenu, event) 68 79 { 69 let disabled = this.representedObject.disabled; 70 contextMenu.appendItem(disabled ? WI.UIString("Enable Program") : WI.UIString("Disable Program"), () => { 71 this.representedObject.disabled = !disabled; 72 }); 80 // FIXME: add support for disabling/highlighting WebGPU shader pipelines. 81 let contextType = this.representedObject.canvas.contextType; 82 if (contextType === WI.Canvas.ContextType.WebGL || contextType === WI.Canvas.ContextType.WebGL2) { 83 let disabled = this.representedObject.disabled; 84 contextMenu.appendItem(disabled ? WI.UIString("Enable Program") : WI.UIString("Disable Program"), () => { 85 this.representedObject.disabled = !disabled; 86 }); 73 87 74 contextMenu.appendSeparator(); 88 contextMenu.appendSeparator(); 89 } 75 90 76 91 super.populateContextMenu(contextMenu, event);
Note:
See TracChangeset
for help on using the changeset viewer.