mirror of
https://github.com/hulkholden/n64js.git
synced 2025-04-02 10:51:54 -04:00
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
/**
|
|
* @type {Object}
|
|
*/
|
|
function WebGLDebugUtils() {}
|
|
|
|
/**
|
|
* @param {string} functionName the name of the WebGL function.
|
|
* @param {number} args The arguments.
|
|
* @return {string} The arguments as a string.
|
|
*/
|
|
WebGLDebugUtils.glFunctionArgsToString = function(functionName, args) {};
|