web api instance property
GPUCompilationMessage: message property
Secure contextAvailable in workers
The message read-only property of the
GPUCompilationMessage interface is a string representing human-readable message text.
Value
A string.
Examples
const shaderModule = device.createShaderModule({
code: shaders,
});
const shaderInfo = await shaderModule.getCompilationInfo();
const firstMessage = shaderInfo.messages[0];
console.log(firstMessage.message);
See the main GPUCompilationInfo page for a more detailed example.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The WebGPU API