diff --git a/apps/demo/package.json b/apps/demo/package.json index 247507c97..0eeca8ff6 100644 --- a/apps/demo/package.json +++ b/apps/demo/package.json @@ -18,7 +18,6 @@ "babylonjs-materials": "file:../../node_modules/babylonjs-materials", "chart.js": "file:../../node_modules/chart.js", "d3": "file:../../node_modules/d3", - "leaflet": "file:../../node_modules/leaflet", "matter-js": "file:../../node_modules/matter-js", "phaser": "file:../../node_modules/phaser", "phaser-ce": "file:../../node_modules/phaser-ce", @@ -28,7 +27,7 @@ "zen-3d": "file:../../node_modules/zen-3d" }, "devDependencies": { - "@nativescript/android": "~8.2.0", - "@nativescript/ios": "~8.2.0" + "@nativescript/android": "8.4.0-alpha.8", + "@nativescript/ios": "8.4.0-alpha.3" } } diff --git a/apps/demo/src/app.ts b/apps/demo/src/app.ts index bc132d187..db3e795f5 100644 --- a/apps/demo/src/app.ts +++ b/apps/demo/src/app.ts @@ -1,3 +1,24 @@ require('@nativescript/canvas-polyfill'); -import { Application } from '@nativescript/core'; +import { Application, Utils } from '@nativescript/core'; +declare const jp, GDPerformanceMonitor, org; +let monitor; +// uncomment for fps monitor +/* +Application.on('launch', (args) => { + if (global.isAndroid) { + jp.wasabeef.takt.Takt.stock(Utils.android.getApplicationContext()).seat(jp.wasabeef.takt.Seat.TOP_CENTER).color(-65536); + } else { + monitor = GDPerformanceMonitor.new(); + + monitor.startMonitoringWithConfiguration((label) => { + label.backgroundColor = UIColor.blackColor; + label.textColor = UIColor.whiteColor; + label.layer.borderColor = UIColor.redColor; + }); + + monitor.appVersionHidden = true; + monitor.deviceVersionHidden = true; + } +}); +*/ Application.run({ moduleName: 'app-root' }); diff --git a/package.json b/package.json index 18598fa09..11d27e6e6 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ }, "private": true, "devDependencies": { + "@angular-devkit/build-angular": "^14.0.0", "@angular/animations": "^14.0.0", "@angular/common": "^14.0.0", "@angular/compiler": "^14.0.0", @@ -32,9 +33,9 @@ "@angular/platform-browser-dynamic": "^14.0.0", "@angular/router": "^14.0.0", "@nativescript/angular": "^14.0.0", - "@nativescript/core": "~8.2.0", + "@nativescript/core": "~8.3.0", "@nativescript/plugin-tools": "4.0.0", - "@nativescript/types": "~8.2.0", + "@nativescript/types": "~8.3.0", "@nativescript/webpack": "~5.0.5", "@ngtools/webpack": "^14.0.0", "babylonjs": "^4.1.0", @@ -46,7 +47,6 @@ "eslint": "~7.4.0", "eslint-config-prettier": "~6.11.0", "husky": "^8.0.0", - "leaflet": "^1.7.1", "matter-js": "^0.14.2", "nativescript-permissions": "1.3.11", "nativescript-theme-core": "~1.0.4", @@ -66,8 +66,7 @@ "vexflow": "^3.0.9", "xmldom": "~0.6.0", "zen-3d": "0.0.3", - "zone.js": "~0.11.1", - "@angular-devkit/build-angular": "^14.0.0" + "zone.js": "~0.11.1" }, "lint-staged": { "**/*.{js,ts,scss,json,html}": [ diff --git a/packages/canvas-babylon/package.json b/packages/canvas-babylon/package.json index 89b5f83bc..816b3ba43 100644 --- a/packages/canvas-babylon/package.json +++ b/packages/canvas-babylon/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas-babylon", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "", "main": "index", "typings": "index.d.ts", @@ -33,9 +33,9 @@ "readmeFilename": "README.md", "bootstrapper": "@nativescript/plugin-seed", "dependencies": { - "@nativescript/canvas-polyfill": "*" + "@nativescript/canvas-polyfill": "alpha" }, "peerDependencies": { "babylonjs": "^4.1.0" } -} \ No newline at end of file +} diff --git a/packages/canvas-media/package.json b/packages/canvas-media/package.json index c36b82188..72f1cbdd2 100644 --- a/packages/canvas-media/package.json +++ b/packages/canvas-media/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas-media", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "Canvas media", "main": "index", "typings": "index.d.ts", @@ -32,4 +32,4 @@ "homepage": "https://github.com/NativeScript/plugins", "readmeFilename": "README.md", "bootstrapper": "@nativescript/plugin-seed" -} \ No newline at end of file +} diff --git a/packages/canvas-media/platforms/android/canvas_media.aar b/packages/canvas-media/platforms/android/canvas_media.aar new file mode 100644 index 000000000..e0cc937c5 Binary files /dev/null and b/packages/canvas-media/platforms/android/canvas_media.aar differ diff --git a/packages/canvas-phaser-ce/package.json b/packages/canvas-phaser-ce/package.json index 84d0eec51..01f9f4534 100644 --- a/packages/canvas-phaser-ce/package.json +++ b/packages/canvas-phaser-ce/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas-phaser-ce", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "Tools for using Phaser-ce to build native 2D games in NativeScript 👾", "main": "index", "typings": "index.d.ts", @@ -33,9 +33,9 @@ "readmeFilename": "README.md", "bootstrapper": "@nativescript/plugin-seed", "dependencies": { - "@nativescript/canvas-polyfill": "*" + "@nativescript/canvas-polyfill": "alpha" }, "peerDependencies": { "phaser-ce": "2.15.0" } -} \ No newline at end of file +} diff --git a/packages/canvas-phaser/game.ts b/packages/canvas-phaser/game.ts index e4b2086a4..af9421ed2 100644 --- a/packages/canvas-phaser/game.ts +++ b/packages/canvas-phaser/game.ts @@ -45,7 +45,7 @@ export const Game = (options) => { width, height, //canvas, - context, + context, title, type, scene, diff --git a/packages/canvas-phaser/package.json b/packages/canvas-phaser/package.json index 352e5d5d7..d91e951bf 100644 --- a/packages/canvas-phaser/package.json +++ b/packages/canvas-phaser/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas-phaser", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "Build awesome 2D games with Phaser.js and NativeScript", "main": "index", "typings": "index.d.ts", @@ -33,9 +33,9 @@ "readmeFilename": "README.md", "bootstrapper": "@nativescript/plugin-seed", "dependencies": { - "@nativescript/canvas-polyfill": "*" + "@nativescript/canvas-polyfill": "alpha" }, "peerDependencies": { "phaser": "^3.24.1" } -} \ No newline at end of file +} diff --git a/packages/canvas-pixi/package.json b/packages/canvas-pixi/package.json index 1f1c945da..efaa8aa75 100644 --- a/packages/canvas-pixi/package.json +++ b/packages/canvas-pixi/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas-pixi", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "Plugin for using pixi.js in NativeScript", "main": "index", "typings": "index.d.ts", @@ -33,9 +33,9 @@ "readmeFilename": "README.md", "bootstrapper": "nativescript-plugin-seed", "dependencies": { - "@nativescript/canvas-polyfill": "*" + "@nativescript/canvas-polyfill": "alpha" }, "peerDependencies": { "pixi.js": "^5.3.3" } -} \ No newline at end of file +} diff --git a/packages/canvas-polyfill/URL.android.ts b/packages/canvas-polyfill/URL.android.ts index 944331eb0..d749e3f64 100644 --- a/packages/canvas-polyfill/URL.android.ts +++ b/packages/canvas-polyfill/URL.android.ts @@ -23,7 +23,6 @@ export class URL { } catch (e) { throw new TypeError(`Failed to construct 'URL': Invalid base URL`); } - } try { if (baseUrl) { @@ -35,7 +34,6 @@ export class URL { throw new TypeError(`Failed to construct 'URL': Invalid URL`); } } - } get native() { @@ -44,15 +42,7 @@ export class URL { private _updateURL() { const currentURL = this.native; - this.#native = new java.net.URI( - this.#protocol || currentURL.getProtocol(), - `${this.#username}${this.password ? ':' : ''}${this.#password}` || currentURL.getUserInfo(), - this.#hostname || currentURL.getHost(), - this.#port || currentURL.getPort(), - this.#pathname || currentURL.getPath(), - this.#search || currentURL.getQuery(), - this.#hash || currentURL.getRef() - ) + this.#native = new java.net.URI(this.#protocol || currentURL.getProtocol(), `${this.#username}${this.password ? ':' : ''}${this.#password}` || currentURL.getUserInfo(), this.#hostname || currentURL.getHost(), this.#port || currentURL.getPort(), this.#pathname || currentURL.getPath(), this.#search || currentURL.getQuery(), this.#hash || currentURL.getRef()); } get hash() { @@ -73,7 +63,7 @@ export class URL { if (scheme === 'https' && port === 443) { returnPort = false; } - return `${this.#native.getHost()}${returnPort && port != -1 ? ':' : ''}${(returnPort && port != -1) ? port : ''}`; + return `${this.#native.getHost()}${returnPort && port != -1 ? ':' : ''}${returnPort && port != -1 ? port : ''}`; } set host(value: string) { @@ -83,7 +73,6 @@ export class URL { this._updateURL(); } - get hostname() { return this.#native.getHost(); } @@ -94,7 +83,6 @@ export class URL { this._updateURL(); } - get href() { return this.#native.toString(); } @@ -103,14 +91,13 @@ export class URL { this.#native = new java.net.URI(value); } - get origin() { let url = this.#native; if (this.#isBlobURL) { url = new java.net.URI(this.#native.toString().replace('blob:', '')); } - return `${url.getScheme()}://${url.getHost()}` + return `${url.getScheme()}://${url.getHost()}`; } #password = ''; @@ -124,7 +111,6 @@ export class URL { this._updateURL(); } - get pathname() { return this.#native.getPath(); } @@ -135,16 +121,15 @@ export class URL { this._updateURL(); } - get port() { const port = this.#native.getPort(); if (port === -1) { - return '' + return ''; } - return `${port}` + return `${port}`; } - #port = -1 + #port = -1; set port(value: string) { this.#port = +value; this._updateURL(); @@ -160,25 +145,22 @@ export class URL { this._updateURL(); } - get search() { const query = this.#native.getQuery(); return query ? `?${query}` : ''; } - #search = "" + #search = ''; set search(value: string) { this.#search = value; this._updateURL(); } - get username() { const user = this.#native.getUserInfo() || ''; return user.split(':')[0] || ''; } - #username = ''; set username(value: string) { this.username = value; @@ -189,12 +171,10 @@ export class URL { return this.#native.toString(); } - toString() { return this.#native.toString(); } - public static createObjectURL(object: any, options = null): string { const buf = (Blob as any).InternalAccessor.getBuffer(object); if (!!buf || object instanceof Blob || object instanceof File) { @@ -211,19 +191,19 @@ export class URL { const filePath = path.join(knownFolders.documents().path, BLOB_DIR, fileName); - if (isIOS) { - NSFile.fromPath(filePath).writeSync(NSData.dataWithData(buf)); - } else { - try { - const file = new java.io.File(filePath); - const fos = new java.io.FileOutputStream(file); - fos.write(Array.from(buf) as any); - fos.flush(); - fos.close(); - } catch (e) { - return null; - } + try { + const file = new java.io.File(filePath); + // faster write + const channel = new java.io.FileOutputStream(file).getChannel(); + channel.write(buf); + // fos.write(Array.from(buf) as any); + // fos.flush(); + // fos.close(); + } catch (e) { + return null; } + + URL.putItem(id, fileName); return `${BLOB_PATH}${id}`; } @@ -247,7 +227,7 @@ export class URL { const id = url.replace(BLOB_PATH, ''); return URL.getItem(id); } - return "" + return ''; } }; @@ -264,17 +244,13 @@ export class URL { sharedPreferences = (Application.getNativeApplication()).getApplicationContext().getSharedPreferences(BLOB_KEYS, 0); } - (sharedPreferences).edit().putString( - key, value - ).apply(); + (sharedPreferences).edit().putString(key, value).apply(); } else { - if (!sharedPreferences) { sharedPreferences = NSUserDefaults.alloc().initWithSuiteName(BLOB_KEYS); } (sharedPreferences).setObjectForKey(value, key); - } } @@ -286,11 +262,8 @@ export class URL { sharedPreferences = (Application.getNativeApplication()).getApplicationContext().getSharedPreferences(BLOB_KEYS, 0); } - fileName = (sharedPreferences).getString( - key, null - ); + fileName = (sharedPreferences).getString(key, null); } else { - if (!sharedPreferences) { sharedPreferences = NSUserDefaults.alloc().initWithSuiteName(BLOB_KEYS); } @@ -300,12 +273,10 @@ export class URL { } fileName = (sharedPreferences).stringForKey(key); - } - if (fileName) { - return path.join(fileDir.path, fileName) + return path.join(fileDir.path, fileName); } return null; } diff --git a/packages/canvas-polyfill/URL.ios.ts b/packages/canvas-polyfill/URL.ios.ts index 608f7355b..89323077f 100644 --- a/packages/canvas-polyfill/URL.ios.ts +++ b/packages/canvas-polyfill/URL.ios.ts @@ -4,9 +4,9 @@ const BLOB_DIR = 'ns_blobs'; const BLOB_KEYS = 'org.nativescript.canvas.blob.keys'; let sharedPreferences; - +declare const Utils; export class URL { - #native: NSURLComponents + #native: NSURLComponents; constructor(url: string, base?: string | URL) { let baseUrl: NSURL; let nativeURL: NSURL; @@ -17,20 +17,18 @@ export class URL { } if (baseUrl) { - nativeURL = NSURL.URLWithStringRelativeToURL(url, baseUrl) + nativeURL = NSURL.URLWithStringRelativeToURL(url, baseUrl); } else { nativeURL = NSURL.URLWithString(url); } this.#native = NSURLComponents.componentsWithString(nativeURL.absoluteString); - } get native() { return this.#native.URL; } - get hash() { const hash = this.native.fragment; return hash ? `#${hash}` : ''; @@ -40,7 +38,6 @@ export class URL { this.#native.fragment = value; } - get host() { return this.native.host; } @@ -49,7 +46,6 @@ export class URL { this.#native.host = value; } - get hostname() { return this.native.host; } @@ -58,7 +54,6 @@ export class URL { this.#native.host = value; } - get href() { return this.#native.URL.absoluteString; } @@ -67,12 +62,10 @@ export class URL { this.#native = NSURLComponents.componentsWithString(value); } - get origin() { - return `${this.native.scheme}${this.native.host}` + return `${this.native.scheme}${this.native.host}`; } - get password() { return this.native.password; } @@ -81,7 +74,6 @@ export class URL { this.#native.password = value; } - get pathname() { return this.native.path; } @@ -90,7 +82,6 @@ export class URL { this.#native.path = value; } - get port() { return String(this.native.port); } @@ -107,7 +98,6 @@ export class URL { this.#native.scheme = value; } - get search() { const query = this.native.query; return query ? `?${query}` : ''; @@ -117,7 +107,6 @@ export class URL { this.#native.query = value; } - get username() { return this.native.user; } @@ -126,17 +115,14 @@ export class URL { this.#native.user = value; } - toJSON() { return this.native.toString(); } - toString() { return this.native.toString(); } - public static createObjectURL(object: any, options = null): string { const buf = (Blob as any).InternalAccessor.getBuffer(object); if (!!buf || object instanceof Blob || object instanceof File) { @@ -153,19 +139,10 @@ export class URL { const filePath = path.join(knownFolders.documents().path, BLOB_DIR, fileName); - if (isIOS) { - NSFile.fromPath(filePath).writeSync(NSData.dataWithData(buf)); - } else { - try { - const file = new java.io.File(filePath); - const fos = new java.io.FileOutputStream(file); - fos.write(Array.from(buf) as any); - fos.flush(); - fos.close(); - } catch (e) { - return null; - } - } + try { + Utils.writeToFileError(buf, filePath); + } catch (error) {} + URL.putItem(id, fileName); return `${BLOB_PATH}${id}`; } @@ -189,7 +166,7 @@ export class URL { const id = url.replace(BLOB_PATH, ''); return URL.getItem(id); } - return "" + return ''; } }; @@ -206,17 +183,13 @@ export class URL { sharedPreferences = (Application.getNativeApplication()).getApplicationContext().getSharedPreferences(BLOB_KEYS, 0); } - (sharedPreferences).edit().putString( - key, value - ).apply(); + (sharedPreferences).edit().putString(key, value).apply(); } else { - if (!sharedPreferences) { sharedPreferences = NSUserDefaults.alloc().initWithSuiteName(BLOB_KEYS); } (sharedPreferences).setObjectForKey(value, key); - } } @@ -228,11 +201,8 @@ export class URL { sharedPreferences = (Application.getNativeApplication()).getApplicationContext().getSharedPreferences(BLOB_KEYS, 0); } - fileName = (sharedPreferences).getString( - key, null - ); + fileName = (sharedPreferences).getString(key, null); } else { - if (!sharedPreferences) { sharedPreferences = NSUserDefaults.alloc().initWithSuiteName(BLOB_KEYS); } @@ -242,12 +212,10 @@ export class URL { } fileName = (sharedPreferences).stringForKey(key); - } - if (fileName) { - return path.join(fileDir.path, fileName) + return path.join(fileDir.path, fileName); } return null; } diff --git a/packages/canvas-polyfill/async/file/file.android.ts b/packages/canvas-polyfill/async/file/file.android.ts index c65095d68..617bf5e5e 100644 --- a/packages/canvas-polyfill/async/file/file.android.ts +++ b/packages/canvas-polyfill/async/file/file.android.ts @@ -12,21 +12,20 @@ export class FileManager { } }); if (bytes instanceof java.nio.ByteBuffer) { - com.github.triniwiz.async.Async2.FileManager.writeFile(bytes.array(), path, listener); + com.github.triniwiz.async.Async2.FileManager.writeFile(bytes, path, listener); } else if (bytes instanceof ArrayBuffer) { if ((bytes as any).nativeObject) { - com.github.triniwiz.async.Async2.FileManager.writeFile((bytes as any).nativeObject.array(), path, listener); + com.github.triniwiz.async.Async2.FileManager.writeFile((bytes as any).nativeObject, path, listener); } } else { com.github.triniwiz.async.Async2.FileManager.writeFile(bytes, path, listener); } - } public static readFile(path: string, options: Options = {asStream: false}, callback: (...args) => void) { //const opts = new com.github.triniwiz.async.Async2.FileManager.Options(); //opts.asStream = options.asStream; - com.github.triniwiz.async.Async2.FileManager.readFile(path, null, new com.github.triniwiz.async.Async2.FileManager.Callback({ + com.github.triniwiz.async.Async2.FileManager.readFileBuffer(path, null, new com.github.triniwiz.async.Async2.FileManager.Callback({ onError(param0: string, param1: java.lang.Exception): void { callback(param0, null); }, diff --git a/packages/canvas-polyfill/async/xhr/TNSXMLHttpRequest.ts b/packages/canvas-polyfill/async/xhr/TNSXMLHttpRequest.ts index a2a7e697b..746fa73ba 100644 --- a/packages/canvas-polyfill/async/xhr/TNSXMLHttpRequest.ts +++ b/packages/canvas-polyfill/async/xhr/TNSXMLHttpRequest.ts @@ -2,7 +2,7 @@ import { CancellablePromise, Http } from '../http/http'; import { HttpError, HttpRequestOptions, ProgressEvent } from '../http/http-request-common'; import { FileManager } from '../file/file'; import { isNullOrUndefined, isObject, isFunction } from '@nativescript/core/utils/types'; -import { knownFolders, path as filePath, File as fsFile } from '@nativescript/core'; +import { knownFolders, path as filePath, File as fsFile, encoding } from '@nativescript/core'; enum XMLHttpRequestResponseType { empty = '', @@ -10,7 +10,7 @@ enum XMLHttpRequestResponseType { json = 'json', document = 'document', arraybuffer = 'arraybuffer', - blob = 'blob' + blob = 'blob', } const statuses = { @@ -53,20 +53,19 @@ const statuses = { 502: 'Bad Gateway', 503: 'Service Unavailable', 504: 'Gateway Timeout', - 505: 'HTTP Version Not Supported' + 505: 'HTTP Version Not Supported', }; enum Status { UNSENT = 0, OPENED = 0, LOADING = 200, - DONE = 200 + DONE = 200, } export class TNSXMLHttpRequestUpload { private _request: TNSXMLHttpRequest; - private _listeners: Map> = new Map>(); + private _listeners: Map> = new Map>(); constructor(req) { this._request = req; @@ -80,13 +79,13 @@ export class TNSXMLHttpRequestUpload { public removeEventListener(eventName: string, toDetach: (e) => void) { let handlers = this._listeners.get(eventName) || []; - handlers = handlers.filter(handler => handler !== toDetach); + handlers = handlers.filter((handler) => handler !== toDetach); this._listeners.set(eventName, handlers); } _emitEvent(eventName: string, ...args: Array) { const handlers = this._listeners.get(eventName) || []; - handlers.forEach(handler => { + handlers.forEach((handler) => { handler.apply(this, ...args); }); } @@ -132,8 +131,7 @@ export class TNSXMLHttpRequest { private _responseURL: string = ''; private _httpContent: any; private _upload: TNSXMLHttpRequestUpload; - private _listeners: Map> = new Map>(); + private _listeners: Map> = new Map>(); withCredentials: boolean; constructor() { @@ -157,10 +155,7 @@ export class TNSXMLHttpRequest { } get responseText() { - if ( - this._responseType === XMLHttpRequestResponseType.text || - this._responseType === XMLHttpRequestResponseType.json - ) { + if (this._responseType === XMLHttpRequestResponseType.text || this._responseType === XMLHttpRequestResponseType.json) { return this._responseText; } return null; @@ -175,10 +170,7 @@ export class TNSXMLHttpRequest { } get statusText(): string { - if ( - this._readyState === this.UNSENT || - this._readyState === this.OPENED - ) { + if (this._readyState === this.UNSENT || this._readyState === this.OPENED) { return ''; } return statuses[this.status]; @@ -188,18 +180,10 @@ export class TNSXMLHttpRequest { return this._upload; } - private textTypes: string[] = [ - 'text/plain', - 'application/xml', - 'application/rss+xml', - 'text/html', - 'text/xml', - ]; + private textTypes: string[] = ['text/plain', 'application/xml', 'application/rss+xml', 'text/html', 'text/xml']; get responseXML(): any { - const header = - this.getResponseHeader('Content-Type') || - this.getResponseHeader('content-type'); + const header = this.getResponseHeader('Content-Type') || this.getResponseHeader('content-type'); const contentType = header && header.toLowerCase(); if (this.isTextContentType(contentType)) { if (this._responseType === XMLHttpRequestResponseType.document) { @@ -221,21 +205,13 @@ export class TNSXMLHttpRequest { } private _setResponseType() { - const header = - this.getResponseHeader('Content-Type') || - this.getResponseHeader('content-type'); + const header = this.getResponseHeader('Content-Type') || this.getResponseHeader('content-type'); const contentType = header && header.toLowerCase(); if (contentType) { - if ( - contentType.indexOf('application/json') >= 0 || - contentType.indexOf('+json') >= 0 - ) { + if (contentType.indexOf('application/json') >= 0 || contentType.indexOf('+json') >= 0) { this._responseType = XMLHttpRequestResponseType.json; } else if (this.isTextContentType(contentType)) { - if ( - contentType.indexOf('text/html') || - contentType.indexOf('text/xml') - ) { + if (contentType.indexOf('text/html') || contentType.indexOf('text/xml')) { this._responseType = XMLHttpRequestResponseType.document; } this._responseType = XMLHttpRequestResponseType.text; @@ -263,11 +239,7 @@ export class TNSXMLHttpRequest { } public getResponseHeader(header: string): string { - if ( - typeof header === 'string' && - this._readyState > 1 && - this._headers - ) { + if (typeof header === 'string' && this._readyState > 1 && this._headers) { header = header.toLowerCase(); if (typeof this._headers === 'object') { const keys = Object.keys(this._headers); @@ -284,15 +256,11 @@ export class TNSXMLHttpRequest { return null; } - public overrideMimeType(mime: string) { - } + public overrideMimeType(mime: string) {} set responseType(value: any) { this._didUserSetResponseType = true; - if ( - value === XMLHttpRequestResponseType.empty || - value in XMLHttpRequestResponseType - ) { + if (value === XMLHttpRequestResponseType.empty || value in XMLHttpRequestResponseType) { this._responseType = value; } else { throw new Error(`Response type of '${value}' not supported.`); @@ -326,26 +294,21 @@ export class TNSXMLHttpRequest { let encodingType = encodings[i]; // let java decide :D if (encodingType === null) { - value = (new java.lang.String(data)).toString(); + //value = new java.lang.String(data).toString(); + value = (com as any).github.triniwiz.async.Async2.Http.decodeBuffer(data); break; } try { - let encoding = java.nio.charset.Charset.forName(encodingType); - value = (new java.lang.String(data, encoding)).toString(); + //let encoding = java.nio.charset.Charset.forName(encodingType); + //value = new java.lang.String(data, encoding).toString(); + value = (com as any).github.triniwiz.async.Async2.Http.decodeBuffer(data, encodingType); break; - } catch (e) { - } + } catch (e) {} } return value; } - open( - method: string, - url: string, - async: boolean = true, - username: string | null = null, - password: string | null = null - ): void { + open(method: string, url: string, async: boolean = true, username: string | null = null, password: string | null = null): void { this._headers = {}; this._responseURL = ''; this._httpContent = null; @@ -361,9 +324,7 @@ export class TNSXMLHttpRequest { setRequestHeader(header: string, value) { if (this._readyState !== this.OPENED) { - throw new Error( - "Failed to execute 'setRequestHeader' on 'XMLHttpRequest': The object's state must be OPENED." - ); + throw new Error("Failed to execute 'setRequestHeader' on 'XMLHttpRequest': The object's state must be OPENED."); } if (typeof this._headers === 'object') { this._headers[header] = value; @@ -372,27 +333,18 @@ export class TNSXMLHttpRequest { send(body: any = null): void { if (this._readyState !== this.OPENED) { - throw new Error( - "Failed to execute 'send' on 'XMLHttpRequest': The object's state must be OPENED" - ); + throw new Error("Failed to execute 'send' on 'XMLHttpRequest': The object's state must be OPENED"); } if (!this._headers['Accept']) { this._headers['Accept'] = '*/*'; } - if ( - typeof this._request.method === 'string' && - this._request.method.toLowerCase() === 'get' && - typeof this._request.url === 'string' && !this._request.url.startsWith('http') - ) { + if (typeof this._request.method === 'string' && this._request.method.toLowerCase() === 'get' && typeof this._request.url === 'string' && !this._request.url.startsWith('http')) { let path; if (this._request.url.startsWith('file://')) { path = this._request.url.replace('file://', ''); } else if (this._request.url.startsWith('~/')) { - path = filePath.join( - knownFolders.currentApp().path, - this._request.url.replace('~/', '') - ); + path = filePath.join(knownFolders.currentApp().path, this._request.url.replace('~/', '')); } else if (this._request.url.startsWith('/')) { path = this._request.url; } else if (this._request.url.startsWith('blob:nativescript')) { @@ -414,10 +366,7 @@ export class TNSXMLHttpRequest { target: this, }; - const startEvent = new ProgressEvent( - 'loadstart', - this._lastProgress - ); + const startEvent = new ProgressEvent('loadstart', this._lastProgress); if (this.onloadstart) { this.onloadstart(startEvent); @@ -429,10 +378,7 @@ export class TNSXMLHttpRequest { FileManager.readFile(path, {}, (error, data) => { if (error) { - const errorEvent = new ProgressEvent( - 'error', - this._lastProgress - ); + const errorEvent = new ProgressEvent('error', this._lastProgress); this._responseText = error.message; if (this.onerror) { @@ -441,10 +387,7 @@ export class TNSXMLHttpRequest { this.emitEvent('error', errorEvent); - const loadendEvent = new ProgressEvent( - 'loadend', - this._lastProgress - ); + const loadendEvent = new ProgressEvent('loadend', this._lastProgress); if (this.onloadend) { this.onloadend(loadendEvent); @@ -461,6 +404,7 @@ export class TNSXMLHttpRequest { this._httpContent = data; this._responseURL = responseURL; + let size = 0; if (this.responseType === XMLHttpRequestResponseType.json) { try { @@ -468,15 +412,9 @@ export class TNSXMLHttpRequest { this._responseText = this._toJSString(data); this._response = JSON.parse(this._responseText); } else { - this._responseText = NSString.alloc().initWithDataEncoding( - data, - NSUTF8StringEncoding - ); + this._responseText = NSString.alloc().initWithDataEncoding(data, NSUTF8StringEncoding); if (!this._responseText) { - this._responseText = NSString.alloc().initWithDataEncoding( - data, - NSISOLatin1StringEncoding - ); + this._responseText = NSString.alloc().initWithDataEncoding(data, NSISOLatin1StringEncoding); } this._response = JSON.parse(this._responseText); } @@ -484,88 +422,64 @@ export class TNSXMLHttpRequest { console.log('json parse error', e); // this should probably be caught before the promise resolves } - } else if ( - this.responseType === XMLHttpRequestResponseType.text - ) { + } else if (this.responseType === XMLHttpRequestResponseType.text) { if ((global as any).isIOS) { let code = NSUTF8StringEncoding; // long:4 - let encodedString = NSString.alloc().initWithDataEncoding( - data, - code - ); + let encodedString = NSString.alloc().initWithDataEncoding(data, code); // If UTF8 string encoding fails try with ISO-8859-1 if (!encodedString) { code = NSISOLatin1StringEncoding; // long:5 - encodedString = NSString.alloc().initWithDataEncoding( - data, - code - ); + encodedString = NSString.alloc().initWithDataEncoding(data, code); } this._responseText = this._response = encodedString.toString(); } else { const response = this._toJSString(data); - this._responseText = this._response = response - ? response.toString() - : ''; + this._responseText = this._response = response ? response.toString() : ''; } - } else if ( - this.responseType === XMLHttpRequestResponseType.document - ) { + } else if (this.responseType === XMLHttpRequestResponseType.document) { if ((global as any).isIOS) { let code = NSUTF8StringEncoding; // long:4 - let encodedString = NSString.alloc().initWithDataEncoding( - data, - code - ); + let encodedString = NSString.alloc().initWithDataEncoding(data, code); // If UTF8 string encoding fails try with ISO-8859-1 if (!encodedString) { code = NSISOLatin1StringEncoding; // long:5 - encodedString = NSString.alloc().initWithDataEncoding( - data, - code - ); + encodedString = NSString.alloc().initWithDataEncoding(data, code); } this._responseText = this._response = encodedString.toString(); } else { let response = this._toJSString(data); - this._responseText = this._response = response - ? response - : ''; + this._responseText = this._response = response ? response : ''; } - } else if ( - this.responseType === XMLHttpRequestResponseType.arraybuffer - ) { + } else if (this.responseType === XMLHttpRequestResponseType.arraybuffer) { if ((global as any).isIOS) { this._response = interop.bufferFromData(data); } else { - this._response = (ArrayBuffer as any).from( - java.nio.ByteBuffer.wrap(data) - ); + this._response = (ArrayBuffer as any).from(data); + size = data.byteLength; } - } else if ( - this.responseType === XMLHttpRequestResponseType.blob - ) { + } else if (this.responseType === XMLHttpRequestResponseType.blob) { let buffer: ArrayBuffer; if ((global as any).isIOS) { buffer = interop.bufferFromData(data); } else { - const buf = java.nio.ByteBuffer.wrap(data); - buffer = (ArrayBuffer as any).from(buf); + buffer = (ArrayBuffer as any).from(data); + size = buffer.byteLength; } this._response = new Blob([buffer]); } - let size = 0; - if ((global as any).isIOS) { - if (data instanceof NSData) { - size = data.length; + if (size === 0) { + if ((global as any).isIOS) { + if (data instanceof NSData) { + size = data.length; + } + } else { + size = data ? data?.length : 0; } - } else { - size = data ? data.length : 0; } this._lastProgress = { @@ -575,10 +489,7 @@ export class TNSXMLHttpRequest { target: this, }; - const progressEvent = new ProgressEvent( - 'progress', - this._lastProgress - ); + const progressEvent = new ProgressEvent('progress', this._lastProgress); if (this.onprogress) { this.onprogress(progressEvent); } @@ -586,10 +497,7 @@ export class TNSXMLHttpRequest { this._addToStringOnResponse(); - const loadEvent = new ProgressEvent( - 'load', - this._lastProgress - ); + const loadEvent = new ProgressEvent('load', this._lastProgress); if (this.onload) { this.onload(loadEvent); @@ -597,10 +505,7 @@ export class TNSXMLHttpRequest { this.emitEvent('load', loadEvent); - const loadendEvent = new ProgressEvent( - 'loadend', - this._lastProgress - ); + const loadendEvent = new ProgressEvent('loadend', this._lastProgress); if (this.onloadend) { this.onloadend(loadendEvent); @@ -609,7 +514,6 @@ export class TNSXMLHttpRequest { this.emitEvent('loadend', loadendEvent); this._updateReadyStateChange(this.DONE); - } }); @@ -628,13 +532,11 @@ export class TNSXMLHttpRequest { let contentLength = -1; if (typeof this._headers === 'object') { if (this._headers['Content-Length']) { - contentLength = - parseInt(this._headers['Content-Length'], 10) || -1; + contentLength = parseInt(this._headers['Content-Length'], 10) || -1; } if (this._headers['content-length']) { - contentLength = - parseInt(this._headers['content-length'], 10) || -1; + contentLength = parseInt(this._headers['content-length'], 10) || -1; } } this._lastProgress = { @@ -644,10 +546,7 @@ export class TNSXMLHttpRequest { target: this, }; - const loadStartEvent = new ProgressEvent( - 'loadstart', - this._lastProgress - ); + const loadStartEvent = new ProgressEvent('loadstart', this._lastProgress); if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('loadstart', loadStartEvent); @@ -678,10 +577,7 @@ export class TNSXMLHttpRequest { ...event, }; if (event.loaded > 0) { - const progressEvent = new ProgressEvent( - 'progress', - this._lastProgress - ); + const progressEvent = new ProgressEvent('progress', this._lastProgress); if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('progress', progressEvent); } @@ -719,18 +615,12 @@ export class TNSXMLHttpRequest { if (res.content instanceof NSData) { let code = NSUTF8StringEncoding; // long:4 - let encodedString = NSString.alloc().initWithDataEncoding( - res.content, - code - ); + let encodedString = NSString.alloc().initWithDataEncoding(res.content, code); // If UTF8 string encoding fails try with ISO-8859-1 if (!encodedString) { code = NSISOLatin1StringEncoding; // long:5 - encodedString = NSString.alloc().initWithDataEncoding( - res.content, - code - ); + encodedString = NSString.alloc().initWithDataEncoding(res.content, code); } this._responseText = encodedString.toString(); @@ -738,16 +628,12 @@ export class TNSXMLHttpRequest { } } else { if (res.content instanceof java.nio.ByteBuffer) { - this._responseText = this._toJSString( - res.content.array() - ); + this._responseText = this._toJSString(res.content.array()); this._response = JSON.parse(this._responseText); } } } - } else if ( - this.responseType === XMLHttpRequestResponseType.text - ) { + } else if (this.responseType === XMLHttpRequestResponseType.text) { if (typeof res.content === 'string') { this._responseText = res.content; } else if (typeof res.content === 'object') { @@ -757,34 +643,24 @@ export class TNSXMLHttpRequest { if (res.content instanceof NSData) { let code = NSUTF8StringEncoding; // long:4 - let encodedString = NSString.alloc().initWithDataEncoding( - res.content, - code - ); + let encodedString = NSString.alloc().initWithDataEncoding(res.content, code); // If UTF8 string encoding fails try with ISO-8859-1 if (!encodedString) { code = NSISOLatin1StringEncoding; // long:5 - encodedString = NSString.alloc().initWithDataEncoding( - res.content, - code - ); + encodedString = NSString.alloc().initWithDataEncoding(res.content, code); } this._responseText = this._response = encodedString.toString(); } } else { if (res.content instanceof java.nio.ByteBuffer) { - this._responseText = this._response = this._toJSString( - res.content.array() - ); + this._responseText = this._response = this._toJSString(res.content.array()); } } } this._response = this._responseText; - } else if ( - this.responseType === XMLHttpRequestResponseType.document - ) { + } else if (this.responseType === XMLHttpRequestResponseType.document) { if (typeof res.content === 'string') { this._responseText = res.content; } else { @@ -792,41 +668,29 @@ export class TNSXMLHttpRequest { if (res.content instanceof NSData) { let code = NSUTF8StringEncoding; // long:4 - let encodedString = NSString.alloc().initWithDataEncoding( - res.content, - code - ); + let encodedString = NSString.alloc().initWithDataEncoding(res.content, code); // If UTF8 string encoding fails try with ISO-8859-1 if (!encodedString) { code = NSISOLatin1StringEncoding; // long:5 - encodedString = NSString.alloc().initWithDataEncoding( - res.content, - code - ); + encodedString = NSString.alloc().initWithDataEncoding(res.content, code); } this._responseText = this._response = encodedString.toString(); } } else { if (res.content instanceof java.nio.ByteBuffer) { - this._responseText = this._response = this._toJSString( - res.content.array() - ); + this._responseText = this._response = this._toJSString(res.content.array()); } } } - } else if ( - this.responseType === XMLHttpRequestResponseType.arraybuffer - ) { + } else if (this.responseType === XMLHttpRequestResponseType.arraybuffer) { if ((global as any).isIOS) { this._response = interop.bufferFromData(res.content); } else { this._response = (ArrayBuffer as any).from(res.content); } - } else if ( - this.responseType === XMLHttpRequestResponseType.blob - ) { + } else if (this.responseType === XMLHttpRequestResponseType.blob) { const buffer = (ArrayBuffer as any).from(res.content); this._response = new Blob([buffer]); } @@ -847,10 +711,7 @@ export class TNSXMLHttpRequest { this.onloadend(); } - const loadendEvent = new ProgressEvent( - 'loadend', - this._lastProgress - ); + const loadendEvent = new ProgressEvent('loadend', this._lastProgress); if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('loadend', loadendEvent); @@ -867,15 +728,9 @@ export class TNSXMLHttpRequest { if (this.onabort) { this.onabort(); } - const abortEvent = new ProgressEvent( - 'abort', - this._lastProgress - ); - - if ( - this._upload && - (method === 'post' || method === 'put') - ) { + const abortEvent = new ProgressEvent('abort', this._lastProgress); + + if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('abort', abortEvent); } this.emitEvent('abort', abortEvent); @@ -884,24 +739,14 @@ export class TNSXMLHttpRequest { this.onloadend(); } - const _loadendEvent = new ProgressEvent( - 'loadend', - this._lastProgress - ); + const _loadendEvent = new ProgressEvent('loadend', this._lastProgress); - if ( - this._upload && - (method === 'post' || method === 'put') - ) { + if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('loadend', _loadendEvent); } this.emitEvent('loadend', _loadendEvent); - if ( - this._readyState === this.UNSENT || - this._readyState === this.OPENED || - this._readyState === this.DONE - ) { + if (this._readyState === this.UNSENT || this._readyState === this.OPENED || this._readyState === this.DONE) { this._updateReadyStateChange(this.UNSENT); } else { this._updateReadyStateChange(this.DONE); @@ -912,15 +757,9 @@ export class TNSXMLHttpRequest { if (this.ontimeout) { this.ontimeout(); } - const timeoutEvent = new ProgressEvent( - 'timeout', - this._lastProgress - ); - - if ( - this._upload && - (method === 'post' || method === 'put') - ) { + const timeoutEvent = new ProgressEvent('timeout', this._lastProgress); + + if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('timeout', timeoutEvent); } this.emitEvent('timeout', timeoutEvent); @@ -930,15 +769,9 @@ export class TNSXMLHttpRequest { this.onerror(error.message); } - const errorEvent = new ProgressEvent( - 'error', - this._lastProgress - ); + const errorEvent = new ProgressEvent('error', this._lastProgress); - if ( - this._upload && - (method === 'post' || method === 'put') - ) { + if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('error', errorEvent); } this.emitEvent('error', errorEvent); @@ -947,15 +780,9 @@ export class TNSXMLHttpRequest { this.onloadend(); } - const loadendEvent = new ProgressEvent( - 'loadend', - this._lastProgress - ); + const loadendEvent = new ProgressEvent('loadend', this._lastProgress); - if ( - this._upload && - (method === 'post' || method === 'put') - ) { + if (this._upload && (method === 'post' || method === 'put')) { this._upload._emitEvent('loadend', loadendEvent); } this.emitEvent('loadend', loadendEvent); @@ -1002,7 +829,6 @@ export class TNSXMLHttpRequest { } } - export class FormData { private _data: Map; @@ -1021,7 +847,7 @@ export class FormData { arr.push(`${encodeURIComponent(name)}=${encodeURIComponent(value)}`); }); - return arr.join("&"); + return arr.join('&'); } } @@ -1045,25 +871,18 @@ export class Blob { return this._type; } - constructor( - chunks: Array = [], - opts: { type?: string } = {} - ) { + constructor(chunks: Array = [], opts: { type?: string } = {}) { const dataChunks: Uint8Array[] = []; for (const chunk of chunks) { if (chunk instanceof Blob) { dataChunks.push(chunk._buffer); - } else if (typeof chunk === "string") { + } else if (typeof chunk === 'string') { const textEncoder = new TextEncoder(); dataChunks.push(textEncoder.encode(chunk)); } else if (chunk instanceof DataView) { dataChunks.push(new Uint8Array(chunk.buffer.slice(0))); } else if (chunk instanceof ArrayBuffer || ArrayBuffer.isView(chunk)) { - dataChunks.push(new Uint8Array( - ArrayBuffer.isView(chunk) - ? chunk.buffer.slice(0) - : chunk.slice(0) - )); + dataChunks.push(new Uint8Array(ArrayBuffer.isView(chunk) ? chunk.buffer.slice(0) : chunk.slice(0))); } else { const textEncoder = new TextEncoder(); dataChunks.push(textEncoder.encode(String(chunk))); @@ -1071,7 +890,7 @@ export class Blob { } const size = dataChunks.reduce((size, chunk) => size + chunk.byteLength, 0); - const buffer = new Uint8Array(size); + let buffer = new Uint8Array(size); let offset = 0; for (let i = 0; i < dataChunks.length; i++) { const chunk = dataChunks[i]; @@ -1082,9 +901,9 @@ export class Blob { this._buffer = buffer; this._size = this._buffer.byteLength; - this._type = opts.type || ""; + this._type = opts.type || ''; if (/[^\u0020-\u007E]/.test(this._type)) { - this._type = ""; + this._type = ''; } else { this._type = this._type.toLowerCase(); } @@ -1107,14 +926,14 @@ export class Blob { } public stream() { - throw new Error("stream is currently not supported"); + throw new Error('stream is currently not supported'); } public toString() { - return "[object Blob]"; + return '[object Blob]'; } - [Symbol.toStringTag] = "Blob"; + [Symbol.toStringTag] = 'Blob'; } export class File extends Blob { @@ -1129,24 +948,17 @@ export class File extends Blob { return this._lastModified; } - constructor( - chunks: Array, - name: string, - opts: { type?: string, lastModified?: number } = {} - ) { + constructor(chunks: Array, name: string, opts: { type?: string; lastModified?: number } = {}) { super(chunks, opts); - this._name = name.replace(/\//g, ":"); - this._lastModified = - opts.lastModified - ? new Date(opts.lastModified).valueOf() - : Date.now(); + this._name = name.replace(/\//g, ':'); + this._lastModified = opts.lastModified ? new Date(opts.lastModified).valueOf() : Date.now(); } public toString() { - return "[object File]"; + return '[object File]'; } - [Symbol.toStringTag] = "File"; + [Symbol.toStringTag] = 'File'; } export class FileReader { @@ -1179,7 +991,7 @@ export class FileReader { } private _array2base64(input: Uint8Array): string { - var byteToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; + var byteToCharMap = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; var output = []; @@ -1192,8 +1004,8 @@ export class FileReader { var outByte1 = byte1 >> 2; var outByte2 = ((byte1 & 0x03) << 4) | (byte2 >> 4); - var outByte3 = ((byte2 & 0x0F) << 2) | (byte3 >> 6); - var outByte4 = byte3 & 0x3F; + var outByte3 = ((byte2 & 0x0f) << 2) | (byte3 >> 6); + var outByte4 = byte3 & 0x3f; if (!haveByte3) { outByte4 = 64; @@ -1203,13 +1015,10 @@ export class FileReader { } } - output.push( - byteToCharMap[outByte1], byteToCharMap[outByte2], - byteToCharMap[outByte3], byteToCharMap[outByte4] - ); + output.push(byteToCharMap[outByte1], byteToCharMap[outByte2], byteToCharMap[outByte3], byteToCharMap[outByte4]); } - return output.join(""); + return output.join(''); } private _read(blob, kind) { @@ -1217,17 +1026,17 @@ export class FileReader { throw new TypeError(`Failed to execute '${kind}' on 'FileReader': parameter 1 is not of type 'Blob'.`); } - this._result = ""; + this._result = ''; setTimeout(() => { this._readyState = this.LOADING; - this.emitEvent("load"); - this.emitEvent("loadend"); + this.emitEvent('load'); + this.emitEvent('loadend'); }); } private emitEvent(eventName: string, ...args: Array) { - if (isFunction(this["on" + eventName])) { - this["on" + eventName](...args); + if (isFunction(this['on' + eventName])) { + this['on' + eventName](...args); } let handlers = this._listeners.get(eventName) || []; @@ -1237,8 +1046,8 @@ export class FileReader { } public addEventListener(eventName: string, handler: Function) { - if (["abort", "error", "load", "loadend", "loadstart", "progress"].indexOf(eventName) === -1) { - throw new Error("Event not supported: " + eventName); + if (['abort', 'error', 'load', 'loadend', 'loadstart', 'progress'].indexOf(eventName) === -1) { + throw new Error('Event not supported: ' + eventName); } let handlers = this._listeners.get(eventName) || []; @@ -1253,18 +1062,18 @@ export class FileReader { } public readAsDataURL(blob: Blob) { - this._read(blob, "readAsDataURL"); + this._read(blob, 'readAsDataURL'); this._result = `data:${blob.type};base64,${this._array2base64(Blob.InternalAccessor.getBuffer(blob))}`; } public readAsText(blob: Blob) { - this._read(blob, "readAsText"); + this._read(blob, 'readAsText'); const textDecoder = new TextDecoder(); this._result = textDecoder.decode(Blob.InternalAccessor.getBuffer(blob)); } public readAsArrayBuffer(blob: Blob) { - this._read(blob, "readAsArrayBuffer"); + this._read(blob, 'readAsArrayBuffer'); this._result = Blob.InternalAccessor.getBuffer(blob).buffer.slice(0); } @@ -1273,8 +1082,8 @@ export class FileReader { } public toString() { - return "[object FileReader]"; + return '[object FileReader]'; } - [Symbol.toStringTag] = "FileReader"; + [Symbol.toStringTag] = 'FileReader'; } diff --git a/packages/canvas-polyfill/package.json b/packages/canvas-polyfill/package.json index 12619dd2e..9e8c81fe7 100644 --- a/packages/canvas-polyfill/package.json +++ b/packages/canvas-polyfill/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas-polyfill", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "Polyfill for making NativeScript compatible with web libs like pixi.js, three.js, phaser.js, babylon.js, etc....", "main": "index", "typings": "index.d.ts", @@ -33,7 +33,7 @@ "readmeFilename": "README.md", "bootstrapper": "@nativescript/plugin-seed", "dependencies": { - "@nativescript/canvas": "*", + "@nativescript/canvas": "alpha", "xmldom": "~0.6.0" } -} \ No newline at end of file +} diff --git a/packages/canvas-polyfill/platforms/android/async-release.aar b/packages/canvas-polyfill/platforms/android/async-release.aar index 4eb52b491..08a6d2e3b 100644 Binary files a/packages/canvas-polyfill/platforms/android/async-release.aar and b/packages/canvas-polyfill/platforms/android/async-release.aar differ diff --git a/packages/canvas-polyfill/src-native/AsyncDemo/.idea/gradle.xml b/packages/canvas-polyfill/src-native/AsyncDemo/.idea/gradle.xml index c21228f58..20ba8ee9a 100644 --- a/packages/canvas-polyfill/src-native/AsyncDemo/.idea/gradle.xml +++ b/packages/canvas-polyfill/src-native/AsyncDemo/.idea/gradle.xml @@ -4,7 +4,7 @@ diff --git a/packages/canvas-polyfill/src-native/AsyncDemo/async/src/main/java/com/github/triniwiz/async/Async2.kt b/packages/canvas-polyfill/src-native/AsyncDemo/async/src/main/java/com/github/triniwiz/async/Async2.kt index d111d594b..ac6c902b3 100644 --- a/packages/canvas-polyfill/src-native/AsyncDemo/async/src/main/java/com/github/triniwiz/async/Async2.kt +++ b/packages/canvas-polyfill/src-native/AsyncDemo/async/src/main/java/com/github/triniwiz/async/Async2.kt @@ -14,6 +14,7 @@ import java.io.* import java.io.IOException import java.net.SocketTimeoutException import java.nio.ByteBuffer +import java.nio.ByteOrder import java.nio.charset.Charset import java.nio.charset.StandardCharsets import java.util.* @@ -24,319 +25,411 @@ import java.util.concurrent.TimeUnit public class Async2 { - private var handler: Handler? = null - - - class Base64 { - companion object { - @JvmStatic - fun b64WithoutPrefix(b64: String): String { - return b64.split(",").toTypedArray()[1] - } - - @JvmStatic - @Throws(Exception::class) - fun getMIMEForBase64String(b64: String): String { - var input = b64 - if (b64.contains(",")) { - input = b64WithoutPrefix(b64) - } - val first = input[0] - return b64Extensions[first.toString()] - ?: throw Exception("Unknown Base64 MIME type: $b64") - } - - @JvmStatic - internal val uUID: String - get() = UUID.randomUUID().toString() - - @JvmStatic - fun base64ToFile(base64: String, path: String, callback: Callback) { - executor.execute { - val MIME: String - MIME = try { - getMIMEForBase64String(base64) - } catch (e: Exception) { - callback.error(e, e.message) - return@execute - } - - val localUri = "$path$uUID-b64image.$MIME" - val file = File(localUri) - var os: FileOutputStream? = null - var isError = false - try { - os = FileOutputStream(file) - os.write(android.util.Base64.decode( - base64, - android.util.Base64.DEFAULT - )) - } catch (e: FileNotFoundException) { - isError = true - callback.error(e, e.message) - } catch (e: IOException) { - isError = true - callback.error(e, e.message) - } finally { - try { - os?.flush() - os?.close() - } catch (e: java.lang.Exception) { - - } - - if (!isError) { - callback.success(file.absolutePath) - } - } - } - } - - } - - interface Callback { - fun success(response: Any?) - fun error(error: Any?, message: String?) - } - } - - internal class ByteArrayOutputStream2 : ByteArrayOutputStream { - constructor() : super() {} - constructor(size: Int) : super(size) {} - - /** - * Returns the internal buffer of this ByteArrayOutputStream, without copying. - */ - @Synchronized - fun buf(): ByteArray { - return buf - } - } - - class Http { - companion object { - private val callMap = ConcurrentHashMap() - private val downloadCallMap = ConcurrentHashMap() - private val cancelList = ArrayList() - - internal fun isTextType(contentType: String?): Boolean { - var isTextType = false - if (contentType != null) { - val textTypes = arrayOf( - "text/plain", - "application/xml", - "application/rss+xml", - "text/html", - "text/xml") - for (type in textTypes) { - isTextType = contentType.contains(type) - if (isTextType) { - break - } + private var handler: Handler? = null + + + class Base64 { + companion object { + @JvmStatic + fun b64WithoutPrefix(b64: String): String { + return b64.split(",").toTypedArray()[1] + } + + @JvmStatic + @Throws(Exception::class) + fun getMIMEForBase64String(b64: String): String { + var input = b64 + if (b64.contains(",")) { + input = b64WithoutPrefix(b64) + } + val first = input[0] + return b64Extensions[first.toString()] + ?: throw Exception("Unknown Base64 MIME type: $b64") + } + + @JvmStatic + internal val uUID: String + get() = UUID.randomUUID().toString() + + @JvmStatic + fun base64ToFile(base64: String, path: String, callback: Callback) { + executor.execute { + val MIME: String + MIME = try { + getMIMEForBase64String(base64) + } catch (e: Exception) { + callback.error(e, e.message) + return@execute + } + + val localUri = "$path$uUID-b64image.$MIME" + val file = File(localUri) + var os: FileOutputStream? = null + var isError = false + try { + os = FileOutputStream(file) + os.write( + android.util.Base64.decode( + base64, + android.util.Base64.DEFAULT + ) + ) + } catch (e: FileNotFoundException) { + isError = true + callback.error(e, e.message) + } catch (e: IOException) { + isError = true + callback.error(e, e.message) + } finally { + try { + os?.flush() + os?.close() + } catch (e: java.lang.Exception) { + + } + + if (!isError) { + callback.success(file.absolutePath) + } + } + } + } + + } + + interface Callback { + fun success(response: Any?) + fun error(error: Any?, message: String?) + } + } + + internal class ByteArrayOutputStream2 : ByteArrayOutputStream { + constructor() : super() + constructor(size: Int) : super(size) + + /** + * Returns the internal buffer of this ByteArrayOutputStream, without copying. + */ + @Synchronized + fun buf(): ByteArray { + return buf + } + } + + class Http { + companion object { + private val callMap = ConcurrentHashMap() + private val downloadCallMap = ConcurrentHashMap() + private val cancelList = ArrayList() + + internal fun isTextType(contentType: String?): Boolean { + var isTextType = false + if (contentType != null) { + val textTypes = arrayOf( + "text/plain", + "application/xml", + "application/rss+xml", + "text/html", + "text/xml" + ) + for (type in textTypes) { + isTextType = contentType.contains(type) + if (isTextType) { + break + } + } + } + return isTextType + } + + + @JvmStatic + @JvmOverloads + fun decodeBuffer(stream: ByteBuffer, encoding: String? = null): String { + stream.rewind() + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + val ret = when (encoding) { + "UTF-8" -> { + StandardCharsets.UTF_8.decode(stream).toString() + } + "US-ASCII" -> { + StandardCharsets.US_ASCII.decode(stream).toString() + } + else -> StandardCharsets.ISO_8859_1.decode(stream).toString() + } + stream.rewind() + return ret + } else { + val encoding = encoding?.let { + when (it) { + "UTF-8", "US-ASCII", "ISO-8859-1" -> { + Charset.forName(it) } + else -> null } - return isTextType } - @JvmStatic - fun makeRequest(options: RequestOptions, callback: Callback): String { - val uuid = UUID.randomUUID() - val id = uuid.toString() - executor.execute { - val builder = OkHttpClient.Builder() - val listener = HttpEventListener() - builder.eventListener(listener) - builder.followRedirects(!options.dontFollowRedirects) - if (options.timeout > -1) { - builder.connectTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) - builder.readTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) - builder.writeTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) - } - if (options.username != null && options.password != null) { - builder.authenticator { route, response -> - if (response.request().header("Authorization") != null) { - null - } else response.request().newBuilder() - .header("Authorization", Credentials.basic(options.username, options.password)) - .build() + return if (stream.isDirect) { + val buf = ByteArray(stream.remaining()) + stream.get(buf) + stream.rewind() + encoding?.let { + String(buf, it) + } ?: String(buf) + } else { + val buf = stream.array() + encoding?.let { + String(buf, it) + } ?: String(buf) + } + } + } + + @JvmStatic + fun makeRequest(options: RequestOptions, callback: Callback): String { + val uuid = UUID.randomUUID() + val id = uuid.toString() + executor.execute { + val builder = OkHttpClient.Builder() + val listener = HttpEventListener() + builder.eventListener(listener) + builder.followRedirects(!options.dontFollowRedirects) + if (options.timeout > -1) { + builder.connectTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) + builder.readTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) + builder.writeTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) + } + if (options.username != null && options.password != null) { + builder.authenticator { route, response -> + if (response.request().header("Authorization") != null) { + null + } else response.request().newBuilder() + .header("Authorization", Credentials.basic(options.username, options.password)) + .build() + } + } + val request = Request.Builder() + request.url(options.url) + var contentType = "text/html" + if (options.headers != null) { + for (pair in options.headers!!) { + pair.value?.let { + request.addHeader(pair.key, it) + if (pair.key == "Content-Type") { + contentType = it } } - val request = Request.Builder() - request.url(options.url) - var contentType = "text/html" - if (options.headers != null) { - for (pair in options.headers!!) { - pair.value?.let { - request.addHeader(pair.key, it) - if (pair.key == "Content-Type") { - contentType = it - } - } + } + } + var body: RequestBody? = null + val isPostPutOrPatch = + options.method == "POST" || options.method == "PUT" || options.method == "PATCH" + if (isPostPutOrPatch) { + if (options.content is File) { + } else if (options.content is String) { + if (contentType == "application/x-www-form-urlencoded") { + val tokener = JSONTokener(options.content as String?) + var value: Any? = null + try { + value = tokener.nextValue() + } catch (e: JSONException) { + e.printStackTrace() } - } - var body: RequestBody? = null - val isPostPutOrPatch = options.method == "POST" || options.method == "PUT" || options.method == "PATCH" - if (isPostPutOrPatch) { - if (options.content is File) { - } else if (options.content is String) { - if (contentType == "application/x-www-form-urlencoded") { - val tokener = JSONTokener(options.content as String?) - var value: Any? = null - try { - value = tokener.nextValue() - } catch (e: JSONException) { - e.printStackTrace() - } - if (value is JSONObject) { - var formBody: FormBody.Builder? = null - formBody = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { - FormBody.Builder(StandardCharsets.UTF_8) - } else { - FormBody.Builder(Charset.forName("UTF-8")) - } - val it = value.keys() - while (it.hasNext()) { - val key = it.next() - formBody.addEncoded(key, value.opt(key).toString()) - } - body = ProgressRequestBody(formBody.build(), object : ProgressListener { - override fun onProgress(loaded: Long, total: Long) { - callback.onProgress(total > -1, loaded, total) - } - }) - } else { - body = ProgressRequestBody(RequestBody.create(MediaType.parse(contentType), options.content as String?), object : ProgressListener { - override fun onProgress(loaded: Long, total: Long) { - callback.onProgress(total > -1, loaded, total) - } - }) - } + if (value is JSONObject) { + var formBody: FormBody.Builder? + formBody = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + FormBody.Builder(StandardCharsets.UTF_8) } else { - body = ProgressRequestBody(RequestBody.create(MediaType.parse(contentType), options.content as String?), object : ProgressListener { - override fun onProgress(loaded: Long, total: Long) { - callback.onProgress(total > -1, loaded, total) - } - }) + FormBody.Builder(Charset.forName("UTF-8")) } - } else if (options.content is JSONObject || options.content is JSONArray) { - if (contentType == "application/x-www-form-urlencoded") { - if (options.content is JSONObject) { - var formBody: FormBody.Builder? = null - formBody = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { - FormBody.Builder(StandardCharsets.UTF_8) - } else { - FormBody.Builder(Charset.forName("UTF-8")) - } - val it = (options.content as JSONObject?)!!.keys() - while (it.hasNext()) { - val key = it.next() - formBody.addEncoded(key, (options.content as JSONObject?)!!.opt(key).toString()) - } - body = ProgressRequestBody(formBody.build(), object : ProgressListener { - override fun onProgress(loaded: Long, total: Long) { - callback.onProgress(total > -1, loaded, total) - } - }) - } else { - body = ProgressRequestBody(RequestBody.create(MediaType.parse(contentType), options.content.toString()), object : ProgressListener { - override fun onProgress(loaded: Long, total: Long) { - callback.onProgress(total > -1, loaded, total) - } - }) + val it = value.keys() + while (it.hasNext()) { + val key = it.next() + formBody.addEncoded(key, value.opt(key).toString()) + } + body = ProgressRequestBody(formBody.build(), object : ProgressListener { + override fun onProgress(loaded: Long, total: Long) { + callback.onProgress(total > -1, loaded, total) } - } else { - body = ProgressRequestBody(RequestBody.create(MediaType.parse(contentType), options.content.toString()), object : ProgressListener { + }) + } else { + body = ProgressRequestBody( + RequestBody.create( + MediaType.parse(contentType), + options.content as String? + ), object : ProgressListener { override fun onProgress(loaded: Long, total: Long) { callback.onProgress(total > -1, loaded, total) } }) - } - } else { - body = RequestBody.create(null, "") } - } - request.method(options.method, body) - val client = builder.build() - val call = client.newCall(request.build()) - call.enqueue(object : okhttp3.Callback { - var stream: ByteArrayOutputStream2? = null - override fun onFailure(call: Call, e: IOException) { - if (call.isCanceled) { - val result = Result() - if (stream != null) { - result.content = ByteBuffer.wrap(stream!!.buf()) - result.url = call.request().url().toString() - callback.onCancel(result) - } else { - result.content = ByteBuffer.allocate(0) - result.url = call.request().url().toString() - callback.onCancel(result) + } else { + body = ProgressRequestBody( + RequestBody.create( + MediaType.parse(contentType), + options.content as String? + ), object : ProgressListener { + override fun onProgress(loaded: Long, total: Long) { + callback.onProgress(total > -1, loaded, total) } - } else if (e is SocketTimeoutException) { - callback.onTimeout() + }) + } + } else if (options.content is JSONObject || options.content is JSONArray) { + if (contentType == "application/x-www-form-urlencoded") { + if (options.content is JSONObject) { + var formBody: FormBody.Builder? + formBody = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { + FormBody.Builder(StandardCharsets.UTF_8) } else { - callback.onError(e.message, e) + FormBody.Builder(Charset.forName("UTF-8")) } - callMap.remove(id) - } - - @Throws(IOException::class) - override fun onResponse(call: Call, response: Response) { - val responseBody = ProgressResponseBody(response.body(), object : ProgressListener { + val it = (options.content as JSONObject?)!!.keys() + while (it.hasNext()) { + val key = it.next() + formBody.addEncoded(key, (options.content as JSONObject?)!!.opt(key).toString()) + } + body = ProgressRequestBody(formBody.build(), object : ProgressListener { override fun onProgress(loaded: Long, total: Long) { - if (options.method != "POST" && options.method != "PUT") { + callback.onProgress(total > -1, loaded, total) + } + }) + } else { + body = ProgressRequestBody( + RequestBody.create( + MediaType.parse(contentType), + options.content.toString() + ), object : ProgressListener { + override fun onProgress(loaded: Long, total: Long) { callback.onProgress(total > -1, loaded, total) } + }) + } + } else { + body = ProgressRequestBody( + RequestBody.create( + MediaType.parse(contentType), + options.content.toString() + ), object : ProgressListener { + override fun onProgress(loaded: Long, total: Long) { + callback.onProgress(total > -1, loaded, total) } }) - var contentType = response.header("Content-Type") - if (contentType == null) { - contentType = response.header("content-type") + } + } else { + body = RequestBody.create(null, "") + } + } + request.method(options.method, body) + val client = builder.build() + val call = client.newCall(request.build()) + call.enqueue(object : okhttp3.Callback { + var stream: ByteBuffer? = null + override fun onFailure(call: Call, e: IOException) { + if (call.isCanceled) { + val result = Result() + if (stream != null) { + result.content = stream + result.url = call.request().url().toString() + callback.onCancel(result) + } else { + result.content = ByteBuffer.allocate(0) + result.url = call.request().url().toString() + callback.onCancel(result) + } + } else if (e is SocketTimeoutException) { + callback.onTimeout() + } else { + callback.onError(e.message, e) + } + callMap.remove(id) + } + + @Throws(IOException::class) + override fun onResponse(call: Call, response: Response) { + val responseBody = ProgressResponseBody(response.body(), object : ProgressListener { + override fun onProgress(loaded: Long, total: Long) { + if (options.method != "POST" && options.method != "PUT") { + callback.onProgress(total > -1, loaded, total) } - var acceptHeader: String? - if (contentType == null) { - acceptHeader = response.header("Accept") - if (acceptHeader == null) { - acceptHeader = response.header("accept") - } + } + }) + var contentType = response.header("Content-Type") + if (contentType == null) { + contentType = response.header("content-type") + } + var acceptHeader: String? + if (contentType == null) { + acceptHeader = response.header("Accept") + if (acceptHeader == null) { + acceptHeader = response.header("accept") + } + } else { + acceptHeader = contentType + } + var returnType = "text/plain" + if (acceptHeader != null) { + val acceptValues = acceptHeader.split(",").toTypedArray() + val quality = ArrayList() + val defaultQuality = ArrayList() + val customQuality = ArrayList() + for (value in acceptValues) { + if (value.contains(";q=")) { + customQuality.add(value) } else { - acceptHeader = contentType + defaultQuality.add(value) } - var returnType = "text/plain" - if (acceptHeader != null) { - val acceptValues = acceptHeader.split(",").toTypedArray() - val quality = ArrayList() - val defaultQuality = ArrayList() - val customQuality = ArrayList() - for (value in acceptValues) { - if (value.contains(";q=")) { - customQuality.add(value) - } else { - defaultQuality.add(value) - } - } - Collections.sort(customQuality, QualitySort()) - quality.addAll(defaultQuality) - quality.addAll(customQuality) - returnType = quality[0] + } + Collections.sort(customQuality, QualitySort()) + quality.addAll(defaultQuality) + quality.addAll(customQuality) + returnType = quality[0] + } + val source = responseBody.source() + + stream = ByteBuffer + .allocateDirect(responseBody.contentLength().toInt()) + .order(ByteOrder.nativeOrder()) + + val result = Result() + result.contentText = "" + result.url = response.request().url().toString() + result.headers = ArrayList() + try { + source.read(stream!!) + stream?.rewind() + if (isTextType(returnType)) { + result.headers!!.add(KeyValuePair("Content-Type", returnType)) + result.content = decodeBuffer(stream!!) + result.contentText = result.content as String? + callback.onComplete(result) + } else if (returnType.contains("application/json")) { + val returnValue = decodeBuffer(stream!!) + val tokener = JSONTokener(returnValue) + val value = tokener.nextValue() + if (value is JSONObject || value is JSONArray) { + result.headers!!.add(KeyValuePair("Content-Type", returnType)) + result.content = value + result.contentText = returnValue + } else { + result.headers!!.add(KeyValuePair("Content-Type", "text/plain")) + result.content = returnValue + result.contentText = returnValue } - val source = responseBody.source() - stream = ByteArrayOutputStream2() - val sink = stream!!.sink() - val result = Result() - result.contentText = "" - result.url = response.request().url().toString() - result.headers = ArrayList() - try { - source.readAll(sink) - if (isTextType(returnType)) { - result.headers!!.add(KeyValuePair("Content-Type", returnType)) - result.content = stream.toString() - result.contentText = result.content as String? - callback.onComplete(result) - } else if (returnType.contains("application/json")) { - val returnValue = stream.toString() - val tokener = JSONTokener(returnValue) + callback.onComplete(result) + } else { + result.headers!!.add(KeyValuePair("Content-Type", "application/octet-stream")) + result.content = stream + callback.onComplete(result) + } + } catch (e: StreamResetException) { + if (e.errorCode == ErrorCode.CANCEL) { + if (isTextType(returnType)) { + result.content = decodeBuffer(stream!!) + callback.onCancel(result) + } else if (returnType.contains("application/json")) { + val returnValue = decodeBuffer(stream!!) + val tokener = JSONTokener(returnValue) + try { val value = tokener.nextValue() if (value is JSONObject || value is JSONArray) { result.headers!!.add(KeyValuePair("Content-Type", returnType)) @@ -347,494 +440,540 @@ public class Async2 { result.content = returnValue result.contentText = returnValue } - callback.onComplete(result) - } else { - result.headers!!.add(KeyValuePair("Content-Type", "application/octet-stream")) - result.content = ByteBuffer.wrap(stream!!.buf()) - callback.onComplete(result) - } - } catch (e: StreamResetException) { - if (e.errorCode == ErrorCode.CANCEL) { - if (isTextType(returnType)) { - result.content = stream.toString() - callback.onCancel(result) - } else if (returnType.contains("application/json")) { - val returnValue = stream.toString() - val tokener = JSONTokener(returnValue) - try { - val value = tokener.nextValue() - if (value is JSONObject || value is JSONArray) { - result.headers!!.add(KeyValuePair("Content-Type", returnType)) - result.content = value - result.contentText = returnValue - } else { - result.headers!!.add(KeyValuePair("Content-Type", "text/plain")) - result.content = returnValue - result.contentText = returnValue - } - callback.onCancel(result) - } catch (e1: JSONException) { - callback.onError(e1.message, e1) - } - } else { - result.headers!!.add(KeyValuePair("Content-Type", "application/octet-stream")) - result.content = ByteBuffer.wrap(stream!!.buf()) - callback.onCancel(result) - } - } else { - callback.onError(e.message, e) + callback.onCancel(result) + } catch (e1: JSONException) { + callback.onError(e1.message, e1) } - } catch (e: SocketTimeoutException) { - callback.onTimeout() - } catch (e: Exception) { - callback.onError(e.message, e) + } else { + result.headers!!.add(KeyValuePair("Content-Type", "application/octet-stream")) + result.content = stream + callback.onCancel(result) } - responseBody.close() - callMap.remove(id) - } - }) - callMap[id] = CallOptions(call, options, callback) - for (cancelId in cancelList) { - if (id == cancelId) { - call.cancel() - callMap.remove(cancelId) - cancelList.remove(cancelId) + } else { + callback.onError(e.message, e) } + } catch (e: SocketTimeoutException) { + callback.onTimeout() + } catch (e: Exception) { + callback.onError(e.message, e) } + responseBody.close() + callMap.remove(id) + } + }) + callMap[id] = CallOptions(call, options, callback) + for (cancelId in cancelList) { + if (id == cancelId) { + call.cancel() + callMap.remove(cancelId) + cancelList.remove(cancelId) } - return id } - - @JvmStatic - fun getFileRequest(options: DownloadRequestOptions, callback: Callback): String { - val uuid = UUID.randomUUID() - val id = uuid.toString() - executor.execute { - val builder = OkHttpClient.Builder() - builder.eventListener(HttpEventListener()) - builder.followRedirects(!options.dontFollowRedirects) - if (options.timeout > -1) { - builder.connectTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) - builder.readTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) - builder.writeTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) - } - if (options.username != null && options.password != null) { - builder.authenticator { route, response -> - if (response.request().header("Authorization") != null) { - null - } else response.request().newBuilder() - .header("Authorization", Credentials.basic(options.username, options.password)) - .build() - } + } + return id + } + + @JvmStatic + fun getFileRequest(options: DownloadRequestOptions, callback: Callback): String { + val uuid = UUID.randomUUID() + val id = uuid.toString() + executor.execute { + val builder = OkHttpClient.Builder() + builder.eventListener(HttpEventListener()) + builder.followRedirects(!options.dontFollowRedirects) + if (options.timeout > -1) { + builder.connectTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) + builder.readTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) + builder.writeTimeout(options.timeout.toLong(), TimeUnit.MILLISECONDS) + } + if (options.username != null && options.password != null) { + builder.authenticator { route, response -> + if (response.request().header("Authorization") != null) { + null + } else response.request().newBuilder() + .header("Authorization", Credentials.basic(options.username, options.password)) + .build() + } + } + val request = Request.Builder() + request.url(options.url) + val client = builder.build() + val call = client.newCall(request.build()) + call.enqueue(object : okhttp3.Callback { + override fun onFailure(call: Call, e: IOException) { + if (call.isCanceled) { + val result = FileResult() + callback.onCancel(result) + } else if (e is SocketTimeoutException) { + callback.onTimeout() + } else { + callback.onError(e.message, e) } - val request = Request.Builder() - request.url(options.url) - val client = builder.build() - val call = client.newCall(request.build()) - call.enqueue(object : okhttp3.Callback { - override fun onFailure(call: Call, e: IOException) { - if (call.isCanceled) { - val result = FileResult() - callback.onCancel(result) - } else if (e is SocketTimeoutException) { - callback.onTimeout() - } else { - callback.onError(e.message, e) + downloadCallMap.remove(id) + } + + @Throws(IOException::class) + override fun onResponse(call: Call, response: Response) { + val responseBody = ProgressResponseBody( + response.body(), + response.headers(), + object : ProgressListener { + override fun onProgress(loaded: Long, total: Long) { + callback.onProgress(total > -1, loaded, total) } - downloadCallMap.remove(id) + }) + val bufferedSource = responseBody.source() + val file = File(options.filePath) + var sink: BufferedSink? = null + try { + sink = file.sink().buffer() + sink.writeAll(bufferedSource) + val result = FileResult() + result.url = response.request().url().toString() + result.headers = ArrayList() + result.filePath = file.absolutePath + sink.close() + callback.onComplete(result) + } catch (e: StreamResetException) { + if (e.errorCode == ErrorCode.CANCEL) { + val result = FileResult() + callback.onCancel(result) + } else { + callback.onError(e.message, e) } - - @Throws(IOException::class) - override fun onResponse(call: Call, response: Response) { - val responseBody = ProgressResponseBody(response.body(), response.headers(), object : ProgressListener { - override fun onProgress(loaded: Long, total: Long) { - callback.onProgress(total > -1, loaded, total) - } - }) - val bufferedSource = responseBody.source() - val file = File(options.filePath) - var sink: BufferedSink? = null + } catch (e: SocketTimeoutException) { + callback.onTimeout() + } catch (e: Exception) { + callback.onError(e.message, e) + } finally { + if (sink != null) { try { - sink = file.sink().buffer() - sink.writeAll(bufferedSource) - val result = FileResult() - result.url = response.request().url().toString() - result.headers = ArrayList() - result.filePath = file.absolutePath sink.close() - callback.onComplete(result) - } catch (e: StreamResetException) { - if (e.errorCode == ErrorCode.CANCEL) { - val result = FileResult() - callback.onCancel(result) - } else { - callback.onError(e.message, e) - } - } catch (e: SocketTimeoutException) { - callback.onTimeout() - } catch (e: Exception) { - callback.onError(e.message, e) - } finally { - if (sink != null) { - try { - sink.close() - } catch (e: IOException) { - } - } - if (bufferedSource != null) { - try { - bufferedSource.close() - } catch (e: IOException) { - } - } - responseBody.close() - downloadCallMap.remove(id) + } catch (e: IOException) { } } - }) - downloadCallMap[id] = DownloadCallOptions(call, options, callback) - for (cancelId in cancelList) { - if (id == cancelId) { - call.cancel() - downloadCallMap.remove(cancelId) - cancelList.remove(cancelId) + if (bufferedSource != null) { + try { + bufferedSource.close() + } catch (e: IOException) { + } } + responseBody.close() + downloadCallMap.remove(id) } } - return id + }) + downloadCallMap[id] = DownloadCallOptions(call, options, callback) + for (cancelId in cancelList) { + if (id == cancelId) { + call.cancel() + downloadCallMap.remove(cancelId) + cancelList.remove(cancelId) + } } - - @JvmStatic - fun cancelRequest(id: String?) { - if (id != null) { - executor.execute { - val pair = callMap[id] - val downloadPair = downloadCallMap[id] - pair?.call?.cancel() - downloadPair?.call?.cancel() - if (pair == null && downloadPair == null) { - cancelList.add(id) - } + } + return id + } + + @JvmStatic + fun cancelRequest(id: String?) { + if (id != null) { + executor.execute { + val pair = callMap[id] + val downloadPair = downloadCallMap[id] + pair?.call?.cancel() + downloadPair?.call?.cancel() + if (pair == null && downloadPair == null) { + cancelList.add(id) + } + } + } + } + } + + internal interface ProgressListener { + fun onProgress(loaded: Long, total: Long) + } + + class Result internal constructor() { + var content: Any? = null + var url: String? = null + var headers: ArrayList? = null + var contentText: String? = null + } + + class FileResult internal constructor() { + var filePath: String? = null + var url: String? = null + var headers: ArrayList? = null + } + + internal class ProgressRequestBody(var body: RequestBody, var listener: ProgressListener?) : + RequestBody() { + override fun contentType(): MediaType? { + return body.contentType() + } + + @Throws(IOException::class) + override fun contentLength(): Long { + return body.contentLength() + } + + @Throws(IOException::class) + override fun writeTo(sink: BufferedSink) { + val bufferedSink: BufferedSink + bufferedSink = forwardingSink(sink).buffer() + body.writeTo(bufferedSink) + bufferedSink.close() + } + + fun forwardingSink(sink: BufferedSink?): ForwardingSink { + var contentLength: Long = -1 + try { + contentLength = contentLength() + } catch (ignored: IOException) { + } + val length = contentLength + return object : ForwardingSink(sink!!) { + var totalBytesWrite: Long = 0 + + @Throws(IOException::class) + override fun write(source: Buffer, byteCount: Long) { + super.write(source, byteCount) + if (listener != null) { + totalBytesWrite += if (byteCount != -1L) byteCount else 0 + if (length < 0) { + listener!!.onProgress(totalBytesWrite, length) + } + if (byteCount >= 0) { + listener!!.onProgress(totalBytesWrite, length) + } + } + } + } + } + } + + internal class ProgressResponseBody : ResponseBody { + var body: ResponseBody? + var listener: ProgressListener? + var bufferedSource: BufferedSource? = null + var headers: Headers? = null + + constructor(body: ResponseBody?, listener: ProgressListener?) { + this.body = body + this.listener = listener + } + + constructor(body: ResponseBody?, headers: Headers?, listener: ProgressListener?) { + this.body = body + this.listener = listener + this.headers = headers + } + + override fun contentType(): MediaType? { + return body!!.contentType() + } + + override fun contentLength(): Long { + return body!!.contentLength() + } + + override fun source(): BufferedSource { + if (bufferedSource == null) { + bufferedSource = source(body!!.source()).buffer() + } + return bufferedSource!! + } + + private fun source(source: Source): Source { + return object : ForwardingSource(body!!.source()) { + var totalBytesRead: Long = 0 + var length = contentLength() + + @Throws(IOException::class) + override fun read(sink: Buffer, byteCount: Long): Long { + val bytesRead = super.read(sink, byteCount) + if (listener != null) { + totalBytesRead += if (bytesRead != -1L) bytesRead else 0 + if (length < 0) { + listener!!.onProgress(totalBytesRead, length) + } + if (bytesRead >= 0) { + listener!!.onProgress(totalBytesRead, length) + } + } + return bytesRead + } + } + } + } + + interface Callback { + fun onComplete(result: Any?) + fun onError(error: String?, e: Exception?) + fun onProgress(lengthComputable: Boolean, loaded: Long, total: Long) + fun onHeaders(headers: ArrayList?, status: Int) + fun onCancel(result: Any?) + fun onLoading() + fun onTimeout() + } + + internal class HttpEventListener : okhttp3.EventListener() { + override fun requestHeadersEnd(call: Call, request: Request) { + super.requestHeadersEnd(call, request) + } + + override fun responseHeadersEnd(call: Call, response: Response) { + + for (key in callMap.keys) { + val options = callMap[key] + if (options != null && options.call == call) { + val responseHeaders = response.headers() + val headers = ArrayList() + for (value in responseHeaders.names()) { + headers.add(KeyValuePair(value, responseHeaders[value])) + } + options.callback.onHeaders(headers, response.code()) + } + } + super.responseHeadersEnd(call, response) + } + + override fun responseBodyStart(call: Call) { + val method = call.request().method() + if (method != "POST" && method != "PUT") { + for (key in callMap.keys) { + val options = callMap[key] + if (options != null && options.call == call) { + options.callback.onLoading() + } + } + } + super.responseBodyStart(call) + } + + override fun responseBodyEnd(call: Call, byteCount: Long) { + super.responseBodyEnd(call, byteCount) + } + + override fun requestBodyStart(call: Call) { + val method = call.request().method() + if (method == "POST" || method == "PUT") { + for (key in callMap.keys) { + val options = callMap[key] + if (options != null && options.call == call) { + options.callback.onLoading() + } + } + } + super.requestBodyStart(call) + } + + override fun requestBodyEnd(call: Call, byteCount: Long) { + super.requestBodyEnd(call, byteCount) + } + } + + internal class CallOptions(var call: Call, var options: RequestOptions, var callback: Callback) + internal class DownloadCallOptions( + var call: Call, + var options: DownloadRequestOptions, + var callback: Callback + ) + + class KeyValuePair(var key: String, var value: String?) + class RequestOptions { + var url: String? = null + var method: String? = null + var headers: ArrayList? = null + var content: Any? = null + var timeout = -1 + var dontFollowRedirects = false + var username: String? = null + var password: String? = null + } + + class DownloadRequestOptions { + var url: String? = null + var filePath: String? = null + var headers: ArrayList? = null + var timeout = -1 + var dontFollowRedirects = false + var username: String? = null + var password: String? = null + } + } + + internal class QualitySort : Comparator { + override fun compare(a: String, b: String): Int { + val a_quality = java.lang.Float.valueOf(a.substring(a.indexOf(";q=")).replace(";q=", "")) + val b_quality = java.lang.Float.valueOf(b.substring(b.indexOf(";q=")).replace(";q=", "")) + return (b_quality - a_quality).toInt() + } + } + + class FileManager { + + companion object { + @JvmStatic + fun writeFile(bytes: ByteArray?, path: String?, callback: Callback) { + executor.execute { + val file = File(path) + var stream: FileOutputStream? = null + var isError = false + try { + stream = FileOutputStream(file) + stream.write(bytes) + } catch (e: FileNotFoundException) { + isError = true + callback.onError(e.message, e) + } catch (e: IOException) { + isError = true + callback.onError(e.message, e) + } finally { + if (stream != null) { + try { + stream.flush() + stream.close() + } catch (e: IOException) { } } + if (!isError) { + callback.onComplete(true) + } + } + } + } + + @JvmStatic + fun writeFile(bytes: ByteBuffer?, path: String?, callback: Callback) { + executor.execute { + val file = File(path) + var stream: FileOutputStream? = null + var isError = false + try { + stream = FileOutputStream(file) + val channel = stream.channel + channel.write(bytes) + } catch (e: FileNotFoundException) { + isError = true + callback.onError(e.message, e) + } catch (e: IOException) { + isError = true + callback.onError(e.message, e) + } finally { + if (stream != null) { + try { + stream.flush() + stream.close() + } catch (e: IOException) { + } + } + if (!isError) { + callback.onComplete(true) + } + } + } + } + + @JvmStatic + fun readFile(path: String?, options: Options?, callback: Callback) { + executor.execute { + val file = File(path) + var stream: FileInputStream? = null + var outputStream: ByteArrayOutputStream2? = null + var isError = false + try { + stream = FileInputStream(file) + var count: Int + val buffer = ByteArray(DEFAULT_BUFFER_SIZE) + outputStream = ByteArrayOutputStream2(stream.available()) + while (true) { + count = stream.read(buffer) + if (count <= 0) break + outputStream.write(buffer, 0, count) + } + } catch (e: FileNotFoundException) { + isError = true + callback.onError(e.message, e) + isError = true + } catch (e: IOException) { + callback.onError(e.message, e) + } finally { + try { + stream?.close() + + } catch (ignored: IOException) { + } + if (!isError) { + callback.onComplete(outputStream!!.buf()) + } + } + } + } + + @JvmStatic + fun readFileBuffer(path: String?, options: Options?, callback: Callback) { + executor.execute { + val file = File(path) + var stream: FileInputStream? = null + var buffer: ByteBuffer? = null + var isError = false + try { + stream = FileInputStream(file) + val channel = stream.channel + buffer = ByteBuffer.allocateDirect(stream.available()) + channel.read(buffer) + } catch (e: FileNotFoundException) { + isError = true + callback.onError(e.message, e) + isError = true + } catch (e: IOException) { + callback.onError(e.message, e) + } finally { + try { + stream?.close() + + } catch (ignored: IOException) { + } + if (!isError) { + callback.onComplete(buffer) + } } - } - - internal interface ProgressListener { - fun onProgress(loaded: Long, total: Long) - } - - class Result internal constructor() { - var content: Any? = null - var url: String? = null - var headers: ArrayList? = null - var contentText: String? = null - } - - class FileResult internal constructor() { - var filePath: String? = null - var url: String? = null - var headers: ArrayList? = null - } - - internal class ProgressRequestBody(var body: RequestBody, var listener: ProgressListener?) : RequestBody() { - override fun contentType(): MediaType? { - return body.contentType() - } - - @Throws(IOException::class) - override fun contentLength(): Long { - return body.contentLength() - } - - @Throws(IOException::class) - override fun writeTo(sink: BufferedSink) { - val bufferedSink: BufferedSink - bufferedSink = forwardingSink(sink).buffer() - body.writeTo(bufferedSink) - bufferedSink.close() - } - - fun forwardingSink(sink: BufferedSink?): ForwardingSink { - var contentLength: Long = -1 - try { - contentLength = contentLength() - } catch (ignored: IOException) { - } - val length = contentLength - return object : ForwardingSink(sink!!) { - var totalBytesWrite: Long = 0 - - @Throws(IOException::class) - override fun write(source: Buffer, byteCount: Long) { - super.write(source, byteCount) - if (listener != null) { - totalBytesWrite += if (byteCount != -1L) byteCount else 0 - if (length < 0) { - listener!!.onProgress(totalBytesWrite, length) - } - if (byteCount >= 0) { - listener!!.onProgress(totalBytesWrite, length) - } - } - } - } - } - } - - internal class ProgressResponseBody : ResponseBody { - var body: ResponseBody? - var listener: ProgressListener? - var bufferedSource: BufferedSource? = null - var headers: Headers? = null - - constructor(body: ResponseBody?, listener: ProgressListener?) { - this.body = body - this.listener = listener - } - - constructor(body: ResponseBody?, headers: Headers?, listener: ProgressListener?) { - this.body = body - this.listener = listener - this.headers = headers - } - - override fun contentType(): MediaType? { - return body!!.contentType() - } - - override fun contentLength(): Long { - return body!!.contentLength() - } - - override fun source(): BufferedSource { - if (bufferedSource == null) { - bufferedSource = source(body!!.source()).buffer() - } - return bufferedSource!! - } - - private fun source(source: Source): Source { - return object : ForwardingSource(body!!.source()) { - var totalBytesRead: Long = 0 - var length = contentLength() - - @Throws(IOException::class) - override fun read(sink: Buffer, byteCount: Long): Long { - val bytesRead = super.read(sink, byteCount) - if (listener != null) { - totalBytesRead += if (bytesRead != -1L) bytesRead else 0 - if (length < 0) { - listener!!.onProgress(totalBytesRead, length) - } - if (bytesRead >= 0) { - listener!!.onProgress(totalBytesRead, length) - } - } - return bytesRead - } - } - } - } - - interface Callback { - fun onComplete(result: Any?) - fun onError(error: String?, e: Exception?) - fun onProgress(lengthComputable: Boolean, loaded: Long, total: Long) - fun onHeaders(headers: ArrayList?, status: Int) - fun onCancel(result: Any?) - fun onLoading() - fun onTimeout() - } - - internal class HttpEventListener : okhttp3.EventListener() { - override fun requestHeadersEnd(call: Call, request: Request) { - super.requestHeadersEnd(call, request) - } - - override fun responseHeadersEnd(call: Call, response: Response) { - - for (key in callMap.keys) { - val options = callMap[key] - if (options != null && options.call == call) { - val responseHeaders = response.headers() - val headers = ArrayList() - for (value in responseHeaders.names()) { - headers.add(KeyValuePair(value, responseHeaders[value])) - } - options.callback.onHeaders(headers, response.code()) - } - } - super.responseHeadersEnd(call, response) - } - - override fun responseBodyStart(call: Call) { - val method = call.request().method() - if (method != "POST" && method != "PUT") { - for (key in callMap.keys) { - val options = callMap[key] - if (options != null && options.call == call) { - options.callback.onLoading() - } - } - } - super.responseBodyStart(call) - } - - override fun responseBodyEnd(call: Call, byteCount: Long) { - super.responseBodyEnd(call, byteCount) - } - - override fun requestBodyStart(call: Call) { - val method = call.request().method() - if (method == "POST" || method == "PUT") { - for (key in callMap.keys) { - val options = callMap[key] - if (options != null && options.call == call) { - options.callback.onLoading() - } - } - } - super.requestBodyStart(call) - } - - override fun requestBodyEnd(call: Call, byteCount: Long) { - super.requestBodyEnd(call, byteCount) - } - } - - internal class CallOptions(var call: Call, var options: RequestOptions, var callback: Callback) - internal class DownloadCallOptions(var call: Call, var options: DownloadRequestOptions, var callback: Callback) - class KeyValuePair(var key: String, var value: String?) - class RequestOptions { - var url: String? = null - var method: String? = null - var headers: ArrayList? = null - var content: Any? = null - var timeout = -1 - var dontFollowRedirects = false - var username: String? = null - var password: String? = null - } - - class DownloadRequestOptions { - var url: String? = null - var filePath: String? = null - var headers: ArrayList? = null - var timeout = -1 - var dontFollowRedirects = false - var username: String? = null - var password: String? = null - } - } - - internal class QualitySort : Comparator { - override fun compare(a: String, b: String): Int { - val a_quality = java.lang.Float.valueOf(a.substring(a.indexOf(";q=")).replace(";q=", "")) - val b_quality = java.lang.Float.valueOf(b.substring(b.indexOf(";q=")).replace(";q=", "")) - return (b_quality - a_quality).toInt() - } - } - - class FileManager { - - companion object { - @JvmStatic - fun writeFile(bytes: ByteArray?, path: String?, callback: Callback) { - executor.execute { - val file = File(path) - var stream: FileOutputStream? = null - var isError = false - try { - stream = FileOutputStream(file) - stream.write(bytes) - } catch (e: FileNotFoundException) { - isError = true - callback.onError(e.message, e) - } catch (e: IOException) { - isError = true - callback.onError(e.message, e) - } finally { - if (stream != null) { - try { - stream.flush() - stream.close() - } catch (e: IOException) { - } - } - if (!isError) { - callback.onComplete(true) - } - } - } - } - - @JvmStatic - fun readFile(path: String?, options: Options?, callback: Callback) { - executor.execute { - val file = File(path) - var stream: FileInputStream? = null - var outputStream: ByteArrayOutputStream2? = null - var isError = false - try { - stream = FileInputStream(file) - var count: Int - val buffer = ByteArray(DEFAULT_BUFFER_SIZE) - outputStream = ByteArrayOutputStream2(stream.available()) - while (true) { - count = stream.read(buffer) - if (count <= 0) break - outputStream.write(buffer, 0, count) - } - } catch (e: FileNotFoundException) { - isError = true - callback.onError(e.message, e) - isError = true - } catch (e: IOException) { - callback.onError(e.message, e) - } finally { - try { - stream?.close() - - } catch (ignored: IOException) { - } - if (!isError) { - callback.onComplete(outputStream!!.buf()) - } - } - } - } - } - - interface Callback { - fun onError(error: String?, e: Exception?) - fun onComplete(result: Any) - } - - class Options { - var asStream = false - } - } - - companion object { - @JvmStatic - private val executor = Executors.newCachedThreadPool() - - @JvmStatic - val b64Extensions: MutableMap = HashMap() - - @JvmStatic - fun runInBackground(runnable: Runnable?) { - executor.submit { - runnable?.run() - } - } - - init { - b64Extensions["/"] = "jpg" - b64Extensions["i"] = "png" - b64Extensions["R"] = "gif" - b64Extensions["U"] = "webp" - } - } + } + } + } + + interface Callback { + fun onError(error: String?, e: Exception?) + fun onComplete(result: Any?) + } + + class Options { + var asStream = false + } + } + + companion object { + @JvmStatic + private val executor = Executors.newCachedThreadPool() + + @JvmStatic + val b64Extensions: MutableMap = HashMap() + + @JvmStatic + fun runInBackground(runnable: Runnable?) { + executor.submit { + runnable?.run() + } + } + + init { + b64Extensions["/"] = "jpg" + b64Extensions["i"] = "png" + b64Extensions["R"] = "gif" + b64Extensions["U"] = "webp" + } + } } diff --git a/packages/canvas-three/package.json b/packages/canvas-three/package.json index b50d5f63a..27db33b68 100644 --- a/packages/canvas-three/package.json +++ b/packages/canvas-three/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas-three", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "Utilities for using THREE.js on NativeScript", "main": "index", "typings": "index.d.ts", @@ -33,9 +33,9 @@ "readmeFilename": "README.md", "bootstrapper": "@nativescript/plugin-seed", "dependencies": { - "@nativescript/canvas-polyfill": "*" + "@nativescript/canvas-polyfill": "alpha" }, "peerDependencies": { "three": "^0.120.1" } -} \ No newline at end of file +} diff --git a/packages/canvas/Canvas/common.ts b/packages/canvas/Canvas/common.ts index 1e384f470..5f915679e 100644 --- a/packages/canvas/Canvas/common.ts +++ b/packages/canvas/Canvas/common.ts @@ -1,4 +1,4 @@ -import { CSSType, PercentLength, View, Screen, GestureStateTypes, Utils, Application, Property, booleanConverter } from '@nativescript/core'; +import { CSSType, PercentLength, View, Screen, GestureStateTypes, Utils, Application, Property, booleanConverter, ImageSource } from '@nativescript/core'; import { CanvasRenderingContext } from '../common'; import { Pointer, TouchGestureEventData, GestureTypes } from '@nativescript/core/ui/gestures'; @@ -6,19 +6,18 @@ export interface ICanvasBase { on(eventName: 'ready', callback: (data: any) => void, thisArg?: any): void; } - export class TouchEvent { readonly type: string; constructor(name, init?: { [key: string]: any }) { this.type = name; if (init && typeof init === 'object') { - Object.keys(init).forEach(key => { + Object.keys(init).forEach((key) => { this[key] = init[key]; }); } } - preventDefault() { } - stopPropagation() { } + preventDefault() {} + stopPropagation() {} } export class PointerEvent { @@ -26,22 +25,27 @@ export class PointerEvent { constructor(name, init?: { [key: string]: any }) { this.type = name; if (init && typeof init === 'object') { - Object.keys(init).forEach(key => { + Object.keys(init).forEach((key) => { this[key] = init[key]; }); } } - preventDefault() { } - stopPropagation() { } + preventDefault() {} + stopPropagation() {} } -const WEB_GESTURE_EVENTS = ['touchmove', 'touchstart', 'touchcancel', 'touchend', 'change', 'pointerup', 'pointerdown', 'pointermove', 'pointercancel']; - +const WEB_GESTURE_EVENTS = ['touchmove', 'touchstart', 'touchcancel', 'touchend', 'change', 'pointerup', 'pointerdown', 'pointermove', 'pointercancel', 'mousedown', 'mousemove']; export const ignorePixelScalingProperty = new Property({ name: 'ignorePixelScaling', defaultValue: false, - valueConverter: booleanConverter + valueConverter: booleanConverter, +}); + +export const scalingProperty = new Property({ + name: 'scaling', + defaultValue: false, + valueConverter: booleanConverter, }); let pointerId = 0; @@ -49,6 +53,7 @@ let pointerId = 0; export abstract class CanvasBase extends View implements ICanvasBase { public static readyEvent = 'ready'; ignorePixelScaling: boolean; + scaling: boolean; _isCustom: boolean = false; _classList: Set; @@ -62,14 +67,13 @@ export abstract class CanvasBase extends View implements ICanvasBase { private _previousPinchDistance = 0; private _previousPointerCount = 0; - private _pointers: { id: number, coords: { x: number, y: number } }[] = []; + private _pointers: { id: number; coords: { x: number; y: number } }[] = []; protected constructor() { super(); this._classList = new Set(); } - public addEventListener(arg: string, callback: any, thisArg?: any) { super.addEventListener(arg, callback, thisArg); if (WEB_GESTURE_EVENTS.indexOf(arg) !== -1) { @@ -81,7 +85,7 @@ export abstract class CanvasBase extends View implements ICanvasBase { super.removeEventListener(arg, callback, thisArg); if (WEB_GESTURE_EVENTS.indexOf(arg) !== -1) { // if we dont have any other web gestures we can unregister gestures - if (!WEB_GESTURE_EVENTS.some(e => this.hasListeners(e))) { + if (!WEB_GESTURE_EVENTS.some((e) => this.hasListeners(e))) { this.__unregisterGestures(); } } @@ -169,6 +173,7 @@ export abstract class CanvasBase extends View implements ICanvasBase { } return this[attrib]; } + setAttribute(attrib) { if (attrib === 'width') { @@ -186,6 +191,8 @@ export abstract class CanvasBase extends View implements ICanvasBase { } } + public abstract snapshot(flip?: boolean): ImageSource | null; + public abstract getContext(type: string, options?: any): CanvasRenderingContext | null; public abstract getBoundingClientRect(): { @@ -204,7 +211,10 @@ export abstract class CanvasBase extends View implements ICanvasBase { value = PercentLength.parse(value); } if (typeof value === 'number') { - // treat as px + // treat as dip + if (global.isIOS) { + return Utils.layout.toDevicePixels(value) || 0; + } return value || 0; } else if ((value !== null || true) && typeof value === 'object' && typeof value.value && typeof value.unit) { if (value.unit === 'px') { @@ -227,10 +237,9 @@ export abstract class CanvasBase extends View implements ICanvasBase { } } + setPointerCapture() {} - setPointerCapture() { } - - releasePointerCapture() { } + releasePointerCapture() {} __ensureGestures() { if (!this._gesturesRegistered) { @@ -266,11 +275,11 @@ export abstract class CanvasBase extends View implements ICanvasBase { for (let i = 0; i < set.count; i++) { const touch = objects.objectAtIndex(i); const point = touch.locationInView(touch.view); - positions.push(point.x, point.y) + positions.push(point.x, point.y); } } else { const count = event.ios.numberOfTouches; - const rec = (event.ios); + const rec = event.ios; for (let i = 0; i < count; i++) { const point = rec.locationOfTouchInView(i, rec.view); positions.push(point.x, point.y); @@ -296,12 +305,15 @@ export abstract class CanvasBase extends View implements ICanvasBase { let hasPointerDown = false; let hasTouchStart = false; + let hasMouseDown = false; let hasPointerMove = false; let hasTouchMove = false; + let hasMouseMove = false; let hasPointerUp = false; let hasTouchEnd = false; + let hasMouseUp = false; let hasPointerCancel = false; let hasTouchCancel = false; @@ -311,7 +323,8 @@ export abstract class CanvasBase extends View implements ICanvasBase { case 'down': hasPointerDown = this.hasListeners('pointerdown'); hasTouchStart = this.hasListeners('touchstart'); - if (hasPointerDown || hasTouchStart) { + hasMouseDown = this.hasListeners('mousedown'); + if (hasPointerDown || hasTouchStart || hasMouseDown) { const numberOfPointers = (event).getPointerCount(); const positions = this._positionsFromEvent(event); const x = (event).getX(); @@ -320,11 +333,11 @@ export abstract class CanvasBase extends View implements ICanvasBase { numberOfPointers, positions, x, - y - } + y, + }; } - if (hasPointerDown && this._previousPointerCount !== extraData.numberOfPointers) { + if ((hasPointerDown || hasMouseDown) && this._previousPointerCount !== extraData.numberOfPointers) { this._previousPointerCount = extraData.numberOfPointers; pointerId++; @@ -332,28 +345,36 @@ export abstract class CanvasBase extends View implements ICanvasBase { id: pointerId, coords: { x: extraData.x, - y: extraData.y - } + y: extraData.y, + }, + }; + + if (hasPointerDown) { + this.notify({ + ...this._createPointerEvent('pointerdown', extraData), + pointerId: pointerId, + }); } - this.notify({ - ...this._createPointerEvent('pointerdown', extraData), - pointerId: pointerId - }); + if (hasMouseDown) { + this.notify({ + ...this._createPointerEvent('mousedown', extraData), + pointerId: pointerId, + }); + } } if (hasTouchStart) { - this.notify( - this._createTouchEvent('touchstart', extraData) - ); + this.notify(this._createTouchEvent('touchstart', extraData)); } break; case 'up': hasPointerUp = this.hasListeners('pointerup'); hasTouchEnd = this.hasListeners('touchend'); + hasMouseUp = this.hasListeners('mouseup'); - if (hasPointerUp || hasTouchEnd) { + if (hasPointerUp || hasTouchEnd || hasMouseUp) { const numberOfPointers = (event).getPointerCount(); const positions = this._positionsFromEvent(event); const x = (event).getX(); @@ -362,26 +383,35 @@ export abstract class CanvasBase extends View implements ICanvasBase { numberOfPointers, positions, x, - y - } + y, + }; } - if (hasPointerUp) { + if (hasPointerUp || hasMouseUp) { this._previousPointerCount -= extraData.numberOfPointers; for (let i = 0; i < extraData.numberOfPointers; i++) { const x = extraData.positions[i]; const y = extraData.positions[i + 1]; - this.notify({ - ...this._createPointerEvent('pointerup', { ...extraData, x, y }), - pointerId: this._pointers[i].id - }); + + const id = this._pointers[i]?.id; + if (hasPointerUp) { + this.notify({ + ...this._createPointerEvent('pointerup', { ...extraData, x, y }), + pointerId: id, + }); + } + + if (hasMouseUp) { + this.notify({ + ...this._createPointerEvent('mouseup', { ...extraData, x, y }), + pointerId: id, + }); + } } } if (hasTouchEnd) { - this.notify( - this._createTouchEvent('touchend', extraData) - ); + this.notify(this._createTouchEvent('touchend', extraData)); } break; case 'cancel': @@ -396,8 +426,8 @@ export abstract class CanvasBase extends View implements ICanvasBase { numberOfPointers, positions, x, - y - } + y, + }; } if (hasPointerCancel) { if (global.isAndroid) { @@ -410,15 +440,13 @@ export abstract class CanvasBase extends View implements ICanvasBase { const y = extraData.positions[i + 1]; this.notify({ ...this._createPointerEvent('pointercancel', { ...extraData, x, y }), - pointerId: this._pointers[i].id + pointerId: this._pointers[i]?.id, }); } } if (hasTouchCancel) { - this.notify( - this._createTouchEvent('touchcancel', extraData) - ); + this.notify(this._createTouchEvent('touchcancel', extraData)); } break; case 'move': @@ -426,16 +454,17 @@ export abstract class CanvasBase extends View implements ICanvasBase { const numberOfPointers = this._pointerCountFromEvent(event); hasPointerMove = this.hasListeners('pointermove'); hasTouchMove = this.hasListeners('touchmove'); + hasMouseMove = this.hasListeners('mousemove'); let data = {}; - if (hasPointerMove || hasTouchMove) { + if (hasPointerMove || hasTouchMove || hasMouseMove) { const positions = this._positionsFromEvent(event); extraData = { numberOfPointers, positions, x: positions[0], - y: positions[1] - } + y: positions[1], + }; const dx = extraData.positions[2] - extraData.positions[0]; const dy = extraData.positions[3] - extraData.positions[1]; @@ -447,8 +476,8 @@ export abstract class CanvasBase extends View implements ICanvasBase { } this._previousPinchDistance = distance; - const x = dx //event.getFocusX(); - const y = dy //event.getFocusY(); + const x = dx; //event.getFocusX(); + const y = dy; //event.getFocusY(); const scale = event.scale; data = { @@ -463,23 +492,31 @@ export abstract class CanvasBase extends View implements ICanvasBase { }; } - if (hasPointerMove) { + if (hasPointerMove || hasMouseMove) { const count = extraData.numberOfPointers; const positions = extraData.positions; for (let i = 0; i < count; i++) { let x = positions[i] - extraData.x; let y = positions[i + 1] - extraData.y; - this.notify({ - ...this._createPointerEvent('pointermove', { ...extraData, x, y }), - pointerId: this._pointers[i].id - }); + const id = this._pointers[i]?.id; + if (hasPointerMove) { + this.notify({ + ...this._createPointerEvent('pointermove', { ...extraData, x, y }), + pointerId: id, + }); + } + + if (hasMouseMove) { + this.notify({ + ...this._createPointerEvent('mousemove', { ...extraData, x, y }), + pointerId: id, + }); + } } } if (hasTouchMove) { - this.notify( - this._createTouchEvent('touchmove', { ...extraData, data }) - ); + this.notify(this._createTouchEvent('touchmove', { ...extraData, data })); } } break; @@ -488,7 +525,7 @@ export abstract class CanvasBase extends View implements ICanvasBase { } } else if (event.eventName === 'pinch') { if (global.isAndroid) { - if ((event.state === GestureStateTypes.began || event.state === GestureStateTypes.changed)) { + if (event.state === GestureStateTypes.began || event.state === GestureStateTypes.changed) { this._isPinching = true; this._previousPinchDistance = 0; } @@ -508,16 +545,17 @@ export abstract class CanvasBase extends View implements ICanvasBase { if (global.isIOS) { hasPointerMove = this.hasListeners('pointermove'); hasTouchMove = this.hasListeners('touchmove'); + hasMouseMove = this.hasListeners('mousemove'); let data = {}; let delta = 0; - if (hasPointerMove || hasTouchMove) { + if (hasPointerMove || hasTouchMove || hasMouseMove) { const positions = this._positionsFromEvent(event); extraData = { numberOfPointers, positions, x: positions[0], - y: positions[1] - } + y: positions[1], + }; const dx = extraData.positions[2] - extraData.positions[0]; const dy = extraData.positions[3] - extraData.positions[1]; @@ -544,36 +582,44 @@ export abstract class CanvasBase extends View implements ICanvasBase { }; } - if (hasPointerMove) { + if (hasPointerMove || hasMouseMove) { const count = extraData.numberOfPointers; const positions = extraData.positions; for (let i = 0; i < count; i++) { let x = positions[i] - extraData.x; let y = positions[i + 1] - extraData.y; - this.notify({ - ...this._createPointerEvent('pointermove', { ...extraData, x, y }), - pointerId: this._pointers[i].id - }); + const id = this._pointers[i]?.id; + if (hasPointerMove) { + this.notify({ + ...this._createPointerEvent('pointermove', { ...extraData, x, y }), + pointerId: id, + }); + } + + if (hasMouseMove) { + this.notify({ + ...this._createPointerEvent('mousemove', { ...extraData, x, y }), + pointerId: id, + }); + } } } if (hasTouchMove) { - this.notify( - this._createTouchEvent('touchmove', { ...extraData, data }) - ); + this.notify(this._createTouchEvent('touchmove', { ...extraData, data })); } } } } - } - else if (event.eventName === 'pan') { + } else if (event.eventName === 'pan') { if (this._isPinching) { return; } if (event.state === GestureStateTypes.began || event.state === GestureStateTypes.changed) { hasPointerMove = this.hasListeners('pointermove'); hasTouchMove = this.hasListeners('touchmove'); - if (hasPointerMove || hasTouchMove) { + hasMouseMove = this.hasListeners('mousemove'); + if (hasPointerMove || hasTouchMove || hasMouseMove) { const numberOfPointers = this._pointerCountFromEvent(event); const positions = this._positionsFromEvent(event); const x = positions[0]; @@ -582,26 +628,35 @@ export abstract class CanvasBase extends View implements ICanvasBase { numberOfPointers, positions, x, - y - } + y, + }; } - if (hasPointerMove) { + if (hasPointerMove || hasMouseMove) { const positions = extraData.positions; for (let i = 0; i < extraData.numberOfPointers; i++) { const x = positions[i]; const y = positions[i + 1]; - this.notify({ - ...this._createPointerEvent('pointermove', { numberOfPointers: extraData.numberOfPointers, positions, x, y }), - pointerId: this._pointers[i].id - }); + const id = this._pointers[i]?.id; + if (hasPointerMove) { + this.notify({ + ...this._createPointerEvent('pointermove', { numberOfPointers: extraData.numberOfPointers, positions, x, y }), + pointerId: id, + }); + } + + if (hasMouseMove) { + this.notify({ + ...this._createPointerEvent('mousemove', { numberOfPointers: extraData.numberOfPointers, positions, x, y }), + pointerId: id, + }); + } } } if (hasTouchMove) { this.notify(this._createTouchEvent('touchmove', extraData)); } - } } } @@ -648,7 +703,6 @@ export abstract class CanvasBase extends View implements ICanvasBase { }); } - return Object.assign(new TouchEvent(name), { eventName: name, defaultPrevented: false, @@ -661,7 +715,7 @@ export abstract class CanvasBase extends View implements ICanvasBase { changedTouches: pointers, targetTouches: pointers, touches: pointers, - ...activePointer + ...activePointer, }); } @@ -686,7 +740,7 @@ export abstract class CanvasBase extends View implements ICanvasBase { y, width: 23.4375, height: 23.4375, - isPrimary: true + isPrimary: true, }; return Object.assign(new PointerEvent(name), { @@ -698,9 +752,12 @@ export abstract class CanvasBase extends View implements ICanvasBase { metaKey: false, shiftKey: false, target: this, - ...activePointer + ...activePointer, + preventDefault: () => {}, }); } + + preventDefault() {} } -ignorePixelScalingProperty.register(CanvasBase); \ No newline at end of file +scalingProperty.register(CanvasBase); diff --git a/packages/canvas/Canvas/index.android.ts b/packages/canvas/Canvas/index.android.ts index 566771e36..65b7abcd4 100644 --- a/packages/canvas/Canvas/index.android.ts +++ b/packages/canvas/Canvas/index.android.ts @@ -1,16 +1,15 @@ -import { CanvasBase, ignorePixelScalingProperty } from './common'; +import { CanvasBase, ignorePixelScalingProperty, scalingProperty } from './common'; import { DOMMatrix } from '../Canvas2D'; import { CanvasRenderingContext2D } from '../Canvas2D/CanvasRenderingContext2D'; import { WebGLRenderingContext } from '../WebGL/WebGLRenderingContext'; import { WebGL2RenderingContext } from '../WebGL2/WebGL2RenderingContext'; -import { Application, View, profile } from '@nativescript/core'; +import { Application, View, profile, ImageSource } from '@nativescript/core'; export function createSVGMatrix(): DOMMatrix { return new DOMMatrix(org.nativescript.canvas.TNSCanvas.createSVGMatrix()); } export * from './common'; - export class Canvas extends CanvasBase { _ready = false; private _2dContext: CanvasRenderingContext2D; @@ -32,7 +31,11 @@ export class Canvas extends CanvasBase { } [ignorePixelScalingProperty.setNative](value: boolean) { - this._canvas.setIgnorePixelScaling(value); + this._canvas?.setIgnorePixelScaling?.(value); + } + + [scalingProperty.setNative](value: boolean) { + this._canvas?.setScaling?.(value); } // @ts-ignore @@ -109,6 +112,11 @@ export class Canvas extends CanvasBase { if (this.ignorePixelScaling) { this._canvas.setIgnorePixelScaling(this.ignorePixelScaling); } + + if (this.scaling) { + this._canvas.setScaling(this.scaling); + } + const ref = new WeakRef(this); this.on(View.layoutChangedEvent, (args) => { const parent = this.parent as any; @@ -176,6 +184,16 @@ export class Canvas extends CanvasBase { return this.android.toDataURL(type, encoderOptions); } + public snapshot(flip: boolean = false): ImageSource | null { + if (this._canvas) { + const bm = this._canvas.getImage?.(flip ?? false); + if (bm) { + return new ImageSource(bm); + } + } + return null; + } + _layoutNative() { if (!this.parent) { if ((typeof this.width === 'string' && this.width.indexOf('%')) || (typeof this.height === 'string' && this.height.indexOf('%'))) { @@ -195,17 +213,7 @@ export class Canvas extends CanvasBase { return null; } const getNativeOptions = (options) => { - const jsOptions = this._handleContextOptions(type, options); - const opts = new java.util.HashMap(); - Object.keys(jsOptions).forEach((key) => { - let val = jsOptions[key]; - if (typeof val === 'boolean') { - opts.put(key, java.lang.Boolean.valueOf(String(val))); - } else { - opts.put(key, val); - } - }); - return opts; + return JSON.stringify(this._handleContextOptions(type, options)); }; if (typeof type === 'string') { @@ -278,9 +286,7 @@ export class Canvas extends CanvasBase { }; } + setPointerCapture() {} - setPointerCapture() { } - - releasePointerCapture() { } - + releasePointerCapture() {} } diff --git a/packages/canvas/Canvas/index.d.ts b/packages/canvas/Canvas/index.d.ts index cf0b1ca90..8b3288a91 100644 --- a/packages/canvas/Canvas/index.d.ts +++ b/packages/canvas/Canvas/index.d.ts @@ -40,6 +40,10 @@ export declare class Canvas extends CanvasBase { toDataURL(type?: string, encoderOptions?: number): any; + + getContext(type: '2d', options?: any): CanvasRenderingContext2D | null; + getContext(type: 'webgl' | 'experimental-webgl', options?: any): WebGLRenderingContext | null; + getContext(type: 'webgl2', options?: any): WebGL2RenderingContext | null; getContext(type: string, options?: any): CanvasRenderingContext2D | WebGLRenderingContext | WebGL2RenderingContext | null; getBoundingClientRect(): { diff --git a/packages/canvas/Canvas/index.ios.ts b/packages/canvas/Canvas/index.ios.ts index bbac3c01d..3b6358145 100644 --- a/packages/canvas/Canvas/index.ios.ts +++ b/packages/canvas/Canvas/index.ios.ts @@ -1,12 +1,11 @@ -import { CanvasBase, ignorePixelScalingProperty } from './common'; +import { CanvasBase, ignorePixelScalingProperty, scalingProperty } from './common'; import { DOMMatrix } from '../Canvas2D'; import { CanvasRenderingContext2D } from '../Canvas2D/CanvasRenderingContext2D'; import { WebGLRenderingContext } from '../WebGL/WebGLRenderingContext'; import { WebGL2RenderingContext } from '../WebGL2/WebGL2RenderingContext'; -import { Utils, profile } from '@nativescript/core'; +import { Utils, profile, ImageSource } from '@nativescript/core'; declare var TNSCanvas, TNSCanvasListener; - export * from './common'; export function createSVGMatrix(): DOMMatrix { @@ -50,6 +49,10 @@ export class Canvas extends CanvasBase { this._canvas.ignorePixelScaling = value; } + [scalingProperty.setNative](value: boolean) { + this._canvas.scaling = value; + } + // @ts-ignore get ios() { return this._canvas; @@ -145,7 +148,9 @@ export class Canvas extends CanvasBase { initNativeView() { super.initNativeView(); - this._canvas.ignorePixelScaling = this.ignorePixelScaling; + if (this.scaling) { + this._canvas.scaling = this.scaling; + } } flush() { @@ -190,17 +195,8 @@ export class Canvas extends CanvasBase { } const width = Utils.layout.toDeviceIndependentPixels(size.width || 0); const height = Utils.layout.toDeviceIndependentPixels(size.height || 0); - let frameSize = this._canvas.frame.size; - - if (width === frameSize.width && height === frameSize.height) { - return; - } - const frame_origin = this._canvas.frame.origin; - const frame = CGRectMake(frame_origin.x, frame_origin.y, width, height); - this._canvas.frame = frame; - this._canvas.setNeedsLayout(); - this._canvas.layoutIfNeeded(); + TNSCanvas.layoutView(this._canvas, width, height); } } @@ -213,10 +209,14 @@ export class Canvas extends CanvasBase { return null; } if (!this._2dContext) { - this._2dContext = new CanvasRenderingContext2D(this._canvas.getContextContextAttributes(type, this._handleContextOptions(type, options))); + if (!options) { + this._2dContext = new CanvasRenderingContext2D(this._canvas.getContext(type)); + } else { + this._2dContext = new CanvasRenderingContext2D(this._canvas.getContextWithTypeAttributes(type, JSON.stringify(this._handleContextOptions(type, options)))); + } this._2dContext._canvas = this; } else { - this._canvas.getContextContextAttributes(type, this._handleContextOptions(type, options)); + this._canvas.getContextContextAttributes(type, this._handleContextOptions(type, JSON.stringify(this._handleContextOptions(type, options)))); } this._2dContext._type = '2d'; return this._2dContext; @@ -225,7 +225,11 @@ export class Canvas extends CanvasBase { return null; } if (!this._webglContext) { - this._webglContext = new WebGLRenderingContext(this._canvas.getContextContextAttributes('webgl', this._handleContextOptions(type, options))); + if (!options) { + this._webglContext = new WebGLRenderingContext(this._canvas.getContext('webgl')); + } else { + this._webglContext = new WebGLRenderingContext(this._canvas.getContextContextAttributes('webgl', this._handleContextOptions(type, options))); + } this._webglContext._canvas = this; } else { this._canvas.getContextContextAttributes('webgl', this._handleContextOptions(type, options)); @@ -237,7 +241,11 @@ export class Canvas extends CanvasBase { return null; } if (!this._webgl2Context) { - this._webgl2Context = new WebGL2RenderingContext(this._canvas.getContextContextAttributes('webgl2', this._handleContextOptions(type, options))); + if (!options) { + this._webgl2Context = new WebGL2RenderingContext(this._canvas.getContext('webgl2')); + } else { + this._webgl2Context = new WebGL2RenderingContext(this._canvas.getContextContextAttributes('webgl2', this._handleContextOptions(type, options))); + } (this._webgl2Context as any)._canvas = this; } else { this._canvas.getContextContextAttributes('webgl2', this._handleContextOptions(type, options)); @@ -252,6 +260,16 @@ export class Canvas extends CanvasBase { return this._canvas.toDataURL(type, encoderOptions); } + public snapshot(flip: boolean = false): ImageSource | null { + if (this._canvas) { + const bm = this._canvas.getImage?.(flip ?? false); + if (bm) { + return new ImageSource(bm); + } + } + return null; + } + getBoundingClientRect(): { x: number; y: number; @@ -277,5 +295,4 @@ export class Canvas extends CanvasBase { y: frame.origin.y, }; } - } diff --git a/packages/canvas/Canvas2D/CanvasPattern/CanvasPattern.ios.ts b/packages/canvas/Canvas2D/CanvasPattern/CanvasPattern.ios.ts index 01f0247de..2e0edbdeb 100644 --- a/packages/canvas/Canvas2D/CanvasPattern/CanvasPattern.ios.ts +++ b/packages/canvas/Canvas2D/CanvasPattern/CanvasPattern.ios.ts @@ -8,4 +8,8 @@ export class CanvasPattern extends CanvasPatternBase { public setTransform(matrix: DOMMatrix) { this.native.setTransformWithMatrix(matrix.native); } + + get [Symbol.toStringTag](){ + return 'CanvasPattern' + } } diff --git a/packages/canvas/Canvas2D/CanvasRenderingContext2D/common.ts b/packages/canvas/Canvas2D/CanvasRenderingContext2D/common.ts index ea51481cc..08a2ac1c2 100644 --- a/packages/canvas/Canvas2D/CanvasRenderingContext2D/common.ts +++ b/packages/canvas/Canvas2D/CanvasRenderingContext2D/common.ts @@ -1,12 +1,11 @@ -import { CanvasRenderingContext } from "../../common"; +import { CanvasRenderingContext } from '../../common'; import { CanvasGradient } from '../CanvasGradient'; import { CanvasPattern } from '../CanvasPattern'; import { Path2D } from '../Path2D'; import { ImageData } from '../ImageData'; import { TextMetrics } from '../TextMetrics'; -export abstract class CanvasRenderingContext2DBase - implements CanvasRenderingContext { +export abstract class CanvasRenderingContext2DBase implements CanvasRenderingContext { abstract lineWidth: number; abstract fillStyle: string | CanvasGradient | CanvasPattern; abstract strokeStyle: string | CanvasGradient | CanvasPattern; @@ -39,42 +38,17 @@ export abstract class CanvasRenderingContext2DBase public abstract addHitRegion(region: any): void; - public abstract arc( - x: number, - y: number, - radius: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean - ): void; - - public abstract arcTo( - x1: number, - y1: number, - x2: number, - y2: number, - radius: number - ): void; + public abstract arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise: boolean): void; + + public abstract arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void; public abstract beginPath(): void; - public abstract bezierCurveTo( - cp1x: number, - cp1y: number, - cp2x: number, - cp2y: number, - x: number, - y: number - ): void; + public abstract bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void; public abstract clearHitRegions(): void; - public abstract clearRect( - x: number, - y: number, - width: number, - height: number - ): void; + public abstract clearRect(x: number, y: number, width: number, height: number): void; public abstract clip(): void; @@ -88,107 +62,40 @@ export abstract class CanvasRenderingContext2DBase public abstract createImageData(data: ImageData): ImageData; - public abstract createLinearGradient( - x0: number, - y0: number, - x1: number, - y1: number - ); - - public abstract createPattern( - image: any, - repetition: string - ): CanvasPattern | null; - - public abstract createRadialGradient( - x0: number, - y0: number, - r0: number, - x1: number, - y1: number, - r1: number - ); + public abstract createLinearGradient(x0: number, y0: number, x1: number, y1: number); + + public abstract createPattern(image: any, repetition: string): CanvasPattern | null; + + public abstract createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number); public abstract drawFocusIfNeeded(element): void; public abstract drawFocusIfNeeded(path, element): void; public abstract drawImage(image: any, dx: number, dy: number): void; - public abstract drawImage( - image: any, - dx: number, - dy: number, - dWidth: number, - dHeight: number - ): void; - public abstract drawImage( - image: any, - sx: number, - sy: number, - sWidth: number, - sHeight: number, - dx: number, - dy: number, - dWidth: number, - dHeight: number - ): void; - - public abstract ellipse( - x: number, - y: number, - radiusX: number, - radiusY: number, - rotation: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean - ): void; + public abstract drawImage(image: any, dx: number, dy: number, dWidth: number, dHeight: number): void; + public abstract drawImage(image: any, sx: number, sy: number, sWidth: number, sHeight: number, dx: number, dy: number, dWidth: number, dHeight: number): void; + + public abstract ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise: boolean): void; public abstract fill(): void; public abstract fill(fillRule?: string): void; public abstract fill(path: Path2D, fillRule: string): void; - public abstract fillRect( - x: number, - y: number, - width: number, - height: number - ): void; - - public abstract fillText( - text: string, - x: number, - y: number, - maxWidth?: number - ): void; - - public abstract getImageData( - sx: number, - sy: number, - sw: number, - sh: number - ): ImageData; + public abstract fillRect(x: number, y: number, width: number, height: number): void; + + public abstract fillText(text: string, x: number, y: number, maxWidth?: number): void; + + public abstract getImageData(sx: number, sy: number, sw: number, sh: number): ImageData; public abstract getLineDash(): number[]; - public abstract isPointInPath( - x: number, - y: number, - fillRule: string - ): boolean; - public abstract isPointInPath( - path: Path2D, - x: number, - y: number, - fillRule: string - ): boolean; + public abstract isPointInPath(x: number, y: number, fillRule: string): boolean; + + public abstract isPointInPath(path: Path2D, x: number, y: number, fillRule: string): boolean; public abstract isPointInStroke(x: number, y: number): boolean; - public abstract isPointInStroke( - path: Path2D, - x: number, - y: number - ): boolean; + public abstract isPointInStroke(path: Path2D, x: number, y: number): boolean; public abstract lineTo(x: number, y: number): void; @@ -196,35 +103,17 @@ export abstract class CanvasRenderingContext2DBase public abstract moveTo(x: number, y: number): void; - public abstract putImageData( - imageData: ImageData, - dx: number, - dy: number - ): void; - - public abstract putImageData( - imageData: ImageData, - dx: number, - dy: number, - dirtyX: number, - dirtyY: number, - dirtyWidth: number, - dirtyHeight: number - ): void; - - public abstract quadraticCurveTo( - cpx: number, - cpy: number, - x: number, - y: number - ); - - public abstract rect( - x: number, - y: number, - width: number, - height: number - ): void; + public abstract putImageData(imageData: ImageData, dx: number, dy: number): void; + + public abstract putImageData(imageData: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void; + + public abstract quadraticCurveTo(cpx: number, cpy: number, x: number, y: number); + + public abstract rect(x: number, y: number, width: number, height: number): void; + + public abstract roundRect(x: number, y: number, width: number, height: number, radii: number): void; + + public abstract roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; public abstract removeHitRegion(id: string): void; @@ -244,41 +133,17 @@ export abstract class CanvasRenderingContext2DBase public abstract setLineDash(segments: number[]): void; - public abstract setTransform( - a: number, - b: number, - c: number, - d: number, - e: number, - f: number - ): void; + public abstract setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void; public abstract stroke(): void; public abstract stroke(path: Path2D): void; - public abstract strokeRect( - x: number, - y: number, - width: number, - height: number - ): void; - - public abstract strokeText( - text: string, - x: number, - y: number, - maxWidth?: number - ): void; - - public abstract transform( - a: number, - b: number, - c: number, - d: number, - e: number, - f: number - ): void; + public abstract strokeRect(x: number, y: number, width: number, height: number): void; + + public abstract strokeText(text: string, x: number, y: number, maxWidth?: number): void; + + public abstract transform(a: number, b: number, c: number, d: number, e: number, f: number): void; public abstract translate(x: number, y: number): void; } diff --git a/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.android.ts b/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.android.ts index 7ed746c1f..ad3417578 100644 --- a/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.android.ts +++ b/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.android.ts @@ -1,12 +1,12 @@ -import {CanvasRenderingContext2DBase} from './common'; -import {CanvasGradient} from '../CanvasGradient'; -import {Path2D} from '../Path2D'; -import {ImageData} from '../ImageData'; -import {TextMetrics} from '../TextMetrics'; -import {Color, ImageSource} from '@nativescript/core'; -import {ImageAsset} from '../../ImageAsset'; -import {CanvasPattern} from '../CanvasPattern'; -import {Canvas} from '../../Canvas'; +import { CanvasRenderingContext2DBase } from './common'; +import { CanvasGradient } from '../CanvasGradient'; +import { Path2D } from '../Path2D'; +import { ImageData } from '../ImageData'; +import { TextMetrics } from '../TextMetrics'; +import { Color, ImageSource } from '@nativescript/core'; +import { ImageAsset } from '../../ImageAsset'; +import { CanvasPattern } from '../CanvasPattern'; +import { Canvas } from '../../Canvas'; import lazy from '@nativescript/core/utils/lazy'; const FillRule = { @@ -75,15 +75,14 @@ const CompositeOperationType = { }; const PatternRepetition = { - NoRepeat: lazy(()=> org.nativescript.canvas.TNSPatternRepetition.NoRepeat), - Repeat: lazy(()=> org.nativescript.canvas.TNSPatternRepetition.Repeat), - RepeatX: lazy(()=> org.nativescript.canvas.TNSPatternRepetition.RepeatX), - RepeatY: lazy(()=> org.nativescript.canvas.TNSPatternRepetition.RepeatY) -} + NoRepeat: lazy(() => org.nativescript.canvas.TNSPatternRepetition.NoRepeat), + Repeat: lazy(() => org.nativescript.canvas.TNSPatternRepetition.Repeat), + RepeatX: lazy(() => org.nativescript.canvas.TNSPatternRepetition.RepeatX), + RepeatY: lazy(() => org.nativescript.canvas.TNSPatternRepetition.RepeatY), +}; export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { public static isDebug = false; - static colorCache = {}; private context: org.nativescript.canvas.TNSCanvasRenderingContext2D; constructor(context: any) { @@ -135,16 +134,14 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { get direction(): string { this.log('direction'); - return this.context.getDirection() === TextDirection.Ltr() ? "ltr" : "rtl"; + return this.context.getDirection() === TextDirection.Ltr() ? 'ltr' : 'rtl'; } set direction(value: string) { this.log('direction value:', value); this._ensureLayoutBeforeDraw(); if (this.context) { - this.context.setDirection( - value === "rtl" ? TextDirection.Rtl() : TextDirection.Ltr() - ); + this.context.setDirection(value === 'rtl' ? TextDirection.Rtl() : TextDirection.Ltr()); } } @@ -430,18 +427,18 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } } - get fillStyle() { this.log('fillStyle'); - if(this.context){ - switch (this.context.getFillStyle().getStyleType()) { + if (this.context) { + const style = this.context.getFillStyle(); + switch (style.getStyleType()) { case org.nativescript.canvas.TNSColorStyleType.Color: - const color = this.context.getFillStyle() as org.nativescript.canvas.TNSColor; + const color = style as org.nativescript.canvas.TNSColor; return color.getColor(); case org.nativescript.canvas.TNSColorStyleType.Gradient: - return CanvasGradient.fromNative(this.context.getFillStyle()); + return CanvasGradient.fromNative(style); case org.nativescript.canvas.TNSColorStyleType.Pattern: - return new CanvasPattern(this.context.getFillStyle()); + return new CanvasPattern(style); } } return 'black'; @@ -454,7 +451,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } this._ensureLayoutBeforeDraw(); if (typeof color === 'string') { - this.context.setFillStyle(new org.nativescript.canvas.TNSColor(color)); + this.context.setFillStyleWithString(color); } else if (color instanceof CanvasGradient) { this.context.setFillStyle(color.native); } else if (color instanceof CanvasPattern) { @@ -462,8 +459,6 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } } - - get filter(): string { this.log('get filter'); return this.context.getFilter(); @@ -475,18 +470,18 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.setFilter(value); } } - get strokeStyle() { this.log('strokeStyle'); - switch (this.context.getStrokeStyle().getStyleType()) { + const style = this.context.getStrokeStyle(); + switch (style.getStyleType()) { case CanvasColorStyleType.Color: - const color = this.context.getStrokeStyle() as org.nativescript.canvas.TNSColor; + const color = style as org.nativescript.canvas.TNSColor; return color.getColor(); case CanvasColorStyleType.Gradient: - return CanvasGradient.fromNative(this.context.getStrokeStyle()); + return CanvasGradient.fromNative(style); case CanvasColorStyleType.Pattern: - return new CanvasPattern(this.context.getStrokeStyle()); + return new CanvasPattern(style); } } @@ -497,7 +492,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } this._ensureLayoutBeforeDraw(); if (typeof color === 'string') { - this.context.setStrokeStyle(new org.nativescript.canvas.TNSColor(color)); + this.context.setStrokeStyleWithString(color); } else if (color instanceof CanvasGradient) { this.context.setStrokeStyle(color.native); } else if (color instanceof CanvasPattern) { @@ -518,17 +513,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } } - addHitRegion(region: any): void { - } + addHitRegion(region: any): void {} - arc( - x: number, - y: number, - radius: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean = false - ): void { + arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise: boolean = false): void { this.log('arc value:', x, y, radius, startAngle, endAngle, anticlockwise); this._ensureLayoutBeforeDraw(); this.context.arc(x, y, radius, startAngle, endAngle, anticlockwise); @@ -546,21 +533,13 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.beginPath(); } - bezierCurveTo( - cp1x: number, - cp1y: number, - cp2x: number, - cp2y: number, - x: number, - y: number - ): void { + bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void { this.log('bezierCurveTo value:', cp1x, cp1y, cp2x, cp2y, x, y); this._ensureLayoutBeforeDraw(); this.context.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); } - clearHitRegions(): void { - } + clearHitRegions(): void {} clearRect(x: number, y: number, width: number, height: number): void { this.log('clearRect value:', x, y, width, height); @@ -603,20 +582,16 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { createImageData(width: number | ImageData, height?: number): ImageData { this.log('createImageData value:', arguments); if (width instanceof ImageData) { - return ImageData.from(width); + return ImageData.fromNative(this.context.createImageData(width.native)); } else { - return ImageData.fromNative( - this.context.createImageData(width as any, height) - ); + return ImageData.fromNative(this.context.createImageData(width, height)); } } createLinearGradient(x0: number, y0: number, x1: number, y1: number) { this.log('createLinearGradient value:', x0, y0, x1, y1); this._ensureLayoutBeforeDraw(); - return CanvasGradient.fromNative( - this.context.createLinearGradient(x0, y0, x1, y1) - ); + return CanvasGradient.fromNative(this.context.createLinearGradient(x0, y0, x1, y1)); } createPattern(image: any, repetition: string): CanvasPattern | null { @@ -646,13 +621,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } else if (typeof image.src === 'string') { img = ImageSource.fromFileSync(image.src).android; } - } else if ( - image && - typeof image.tagName === 'string' && - image.tagName === 'CANVAS' && image._canvas instanceof Canvas - ) { + } else if (image && typeof image.tagName === 'string' && image.tagName === 'CANVAS' && image._canvas instanceof Canvas) { img = image._canvas.android; - } else if(image instanceof ImageBitmap || image?.nativeInstance instanceof org.nativescript.canvas.TNSImageBitmap){ + } else if (image instanceof ImageBitmap || image?.nativeInstance instanceof org.nativescript.canvas.TNSImageBitmap) { img = image.native; } if (!img) { @@ -677,49 +648,29 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { return new CanvasPattern(this.context.createPattern(img, rep)); } - createRadialGradient( - x0: number, - y0: number, - r0: number, - x1: number, - y1: number, - r1: number - ) { + createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number) { this.log('createRadialGradient value:', x0, y0, r0, x1, y1, r1); this._ensureLayoutBeforeDraw(); - return CanvasGradient.fromNative( - this.context.createRadialGradient(x0, y0, r0, x1, y1, r1) - ); + return CanvasGradient.fromNative(this.context.createRadialGradient(x0, y0, r0, x1, y1, r1)); + } + + createConicGradient(startAngle: number, x: number, y: number) { + this.log('createConicGradient value:', startAngle, x, y); + this._ensureLayoutBeforeDraw(); + return CanvasGradient.fromNative(this.context.createConicGradient(startAngle, x, y)); } drawFocusIfNeeded(element): void; drawFocusIfNeeded(path, element): void; - drawFocusIfNeeded(...args: any): void { - } + drawFocusIfNeeded(...args: any): void {} drawImage(image: any, dx: number, dy: number): void; - drawImage( - image: any, - dx: number, - dy: number, - dWidth: number, - dHeight: number - ): void; - - drawImage( - image: any, - sx: number, - sy: number, - sWidth: number, - sHeight: number, - dx: number, - dy: number, - dWidth: number, - dHeight: number - ): void; + drawImage(image: any, dx: number, dy: number, dWidth: number, dHeight: number): void; + + drawImage(image: any, sx: number, sy: number, sWidth: number, sHeight: number, dx: number, dy: number, dWidth: number, dHeight: number): void; drawImage(...args): void { this.log('drawImage value:', ...args); @@ -743,13 +694,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } else if (typeof image.src === 'string') { image = ImageSource.fromFileSync(image.src).android; } - } else if ( - image && - typeof image.tagName === 'string' && - image.tagName === 'CANVAS' && image._canvas instanceof Canvas - ) { + } else if (image && typeof image.tagName === 'string' && image.tagName === 'CANVAS' && image._canvas instanceof Canvas) { image = image._canvas.android; - } else if(image instanceof ImageBitmap || image?.nativeInstance instanceof org.nativescript.canvas.TNSImageBitmap){ + } else if (image instanceof ImageBitmap || image?.nativeInstance instanceof org.nativescript.canvas.TNSImageBitmap) { image = image.native; } @@ -758,52 +705,16 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } else if (args.length === 5) { this.context.drawImage(image, args[1], args[2], args[3], args[4]); } else if (args.length === 9) { - this.context.drawImage( - image, - args[1], - args[2], - args[3], - args[4], - args[5], - args[6], - args[7], - args[8] - ); + this.context.drawImage(image, args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]); } } - ellipse( - x: number, - y: number, - radiusX: number, - radiusY: number, - rotation: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean = false - ): void { - this.log('ellipse value:', x, - y, - radiusX, - radiusY, - rotation, - startAngle, - endAngle, - anticlockwise); + ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise: boolean = false): void { + this.log('ellipse value:', x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise); this._ensureLayoutBeforeDraw(); - this.context.ellipse( - x, - y, - radiusX, - radiusY, - rotation, - startAngle, - endAngle, - anticlockwise - ); + this.context.ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise); } - fill(): void; fill(fillRule: string): void; @@ -813,6 +724,10 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { fill(...args: any): void { this.log('fill value:', ...args); this._ensureLayoutBeforeDraw(); + if (arguments.length === 0) { + this.context.fill(); + return; + } if (typeof args[0] === 'string') { const rule = this._fillRuleFromString(args[0]); this.context.fill(rule); @@ -836,9 +751,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.log('fillText value:', text, x, y, maxWidth); this._ensureLayoutBeforeDraw(); if (typeof maxWidth === 'number') { - this.context.fillText(text, x, y, maxWidth); + this.context.fillText(text + '', x, y, maxWidth); } else { - this.context.fillText(text, x, y); + this.context.fillText(text + '', x, y); } } @@ -856,12 +771,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { isPointInPath(x: number, y: number, fillRule: string): boolean; - isPointInPath( - path: Path2D, - x: number, - y: number, - fillRule: string - ): boolean; + isPointInPath(path: Path2D, x: number, y: number, fillRule: string): boolean; isPointInPath(...args): boolean { this.log('isPointInPath value:', ...args); @@ -911,25 +821,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { putImageData(imageData: ImageData, dx: number, dy: number): void; - putImageData( - imageData: ImageData, - dx: number, - dy: number, - dirtyX: number, - dirtyY: number, - dirtyWidth: number, - dirtyHeight: number - ): void; - - putImageData( - imageData: ImageData, - dx: number, - dy: number, - dirtyX?: number, - dirtyY?: number, - dirtyWidth?: number, - dirtyHeight?: number - ): void; + putImageData(imageData: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void; + + putImageData(imageData: ImageData, dx: number, dy: number, dirtyX?: number, dirtyY?: number, dirtyWidth?: number, dirtyHeight?: number): void; putImageData(...args): void { this.log('putImageData value:', ...args); @@ -957,9 +851,20 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.rect(x, y, width, height); } - removeHitRegion(id: string): void { + roundRect(x: number, y: number, width: number, height: number, radii: number): void; + roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; + roundRect(x: number, y: number, width: number, height: number, radii: any): void { + this.log('roundRect value:', x, y, width, height, radii); + this._ensureLayoutBeforeDraw(); + if (Array.isArray(radii)) { + this.context.roundRect(x, y, width, height, radii); + } else if (typeof radii === 'number') { + this.context.roundRect(x, y, width, height, radii); + } } + removeHitRegion(id: string): void {} + resetTransform(): void { this.log('resetTransform value:'); this._ensureLayoutBeforeDraw(); @@ -994,8 +899,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { scrollPathIntoView(path: Path2D): void; - scrollPathIntoView(path?: Path2D): void { - } + scrollPathIntoView(path?: Path2D): void {} setLineDash(segments: number[]): void { this.log('setLineDash value:', segments); @@ -1003,14 +907,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.setLineDash(segments); } - setTransform( - a: number, - b: number, - c: number, - d: number, - e: number, - f: number - ): void { + setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void { this.log('setTransform value:', a, b, c, d, e, f); this._ensureLayoutBeforeDraw(); this.context.setTransform(a, b, c, d, e, f); @@ -1038,20 +935,13 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.log('strokeText value:', text, x, y, maxWidth); this._ensureLayoutBeforeDraw(); if (typeof maxWidth === 'number') { - this.context.strokeText(text, x, y, maxWidth); + this.context.strokeText(text + '', x, y, maxWidth); } else { - this.context.strokeText(text, x, y); + this.context.strokeText(text + '', x, y); } } - transform( - a: number, - b: number, - c: number, - d: number, - e: number, - f: number - ): void { + transform(a: number, b: number, c: number, d: number, e: number, f: number): void { this.log('transform value:', a, b, c, d, e, f); this._ensureLayoutBeforeDraw(); this.context.transform(a, b, c, d, e, f); diff --git a/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.d.ts b/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.d.ts index ccb89423e..d162a237c 100644 --- a/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.d.ts +++ b/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.d.ts @@ -57,6 +57,8 @@ export declare class CanvasRenderingContext2D extends CanvasRenderingContext2DBa createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient; + createConicGradient(startAngle: number, x: number, y: number): CanvasGradient; + drawFocusIfNeeded(element: any): void; drawFocusIfNeeded(path: any, element: any): void; @@ -100,6 +102,10 @@ export declare class CanvasRenderingContext2D extends CanvasRenderingContext2DBa rect(x: number, y: number, width: number, height: number): void; + roundRect(x: number, y: number, width: number, height: number, radii: number): void; + + roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; + removeHitRegion(id: string): void; resetTransform(): void; diff --git a/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.ios.ts b/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.ios.ts index 95a14e854..9ae383291 100644 --- a/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.ios.ts +++ b/packages/canvas/Canvas2D/CanvasRenderingContext2D/index.ios.ts @@ -1,14 +1,14 @@ -import {CanvasRenderingContext2DBase} from './common'; -import {CanvasGradient} from '../CanvasGradient'; -import {Path2D} from '../Path2D'; -import {ImageData} from '../ImageData'; -import {TextMetrics} from '../TextMetrics'; -import {ImageSource} from '@nativescript/core'; -import {ImageAsset} from '../../ImageAsset'; -import {CanvasPattern} from '../CanvasPattern'; -import {Canvas} from '../../Canvas'; - -declare let TNSImageAsset, TNSCanvas, TNSFillRule; +import { CanvasRenderingContext2DBase } from './common'; +import { CanvasGradient } from '../CanvasGradient'; +import { Path2D } from '../Path2D'; +import { ImageData } from '../ImageData'; +import { TextMetrics } from '../TextMetrics'; +import { ImageSource, knownFolders } from '@nativescript/core'; +import { ImageAsset } from '../../ImageAsset'; +import { CanvasPattern } from '../CanvasPattern'; +import { Canvas } from '../../Canvas'; + +declare let TNSImageAsset, TNSCanvas; export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { public static isDebug = false; @@ -38,16 +38,14 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { get direction(): string { this.log('direction'); - return this.context.getDirection() === TNSTextDirection.Ltr ? "ltr" : "rtl"; + return this.context.getDirection() === TNSTextDirection.Ltr ? 'ltr' : 'rtl'; } set direction(value: string) { this.log('direction value:', value); this._ensureLayoutBeforeDraw(); if (this.context) { - this.context.setDirection( - value === "rtl" ? TNSTextDirection.Rtl : TNSTextDirection.Ltr - ); + this.context.setDirection(value === 'rtl' ? TNSTextDirection.Rtl : TNSTextDirection.Ltr); } } @@ -363,7 +361,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.globalCompositeOperation = TNSCompositeOperationType.SourceOver; break; case 'source-in': + console.log('source-in',this.context.globalCompositeOperation); this.context.globalCompositeOperation = TNSCompositeOperationType.SourceIn; + console.log(this.context.globalCompositeOperation); break; case 'source-out': this.context.globalCompositeOperation = TNSCompositeOperationType.SourceOut; @@ -453,7 +453,6 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } } - get fillStyle() { this.log('get fillStyle'); switch (this.context.fillStyle.getStyleType()) { @@ -474,7 +473,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } this._ensureLayoutBeforeDraw(); if (typeof color === 'string') { - this.context.fillStyle = TNSColor.alloc().init(color); + this.context.setFillStyleWithString(color); } else if (color instanceof CanvasGradient) { this.context.fillStyle = color.native; } else if (color instanceof CanvasPattern) { @@ -482,7 +481,6 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } } - get strokeStyle() { this.log('get strokeStyle'); switch (this.context.strokeStyle.getStyleType()) { @@ -503,7 +501,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } this._ensureLayoutBeforeDraw(); if (typeof color === 'string') { - this.context.strokeStyle = TNSColor.alloc().init(color); + this.context.setStrokeStyleWithString(color); } else if (color instanceof CanvasGradient) { this.context.strokeStyle = color.native; } else if (color instanceof CanvasPattern) { @@ -524,27 +522,12 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } } - addHitRegion(region: any): void { - } + addHitRegion(region: any): void {} - arc( - x: number, - y: number, - radius: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean = false - ): void { + arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise: boolean = false): void { this.log('arc', x, y, radius, startAngle, anticlockwise); this._ensureLayoutBeforeDraw(); - this.context.arc( - x, - y, - radius, - startAngle, - endAngle, - anticlockwise - ); + this.context.arc(x, y, radius, startAngle, endAngle, anticlockwise); } arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void { @@ -559,21 +542,13 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.beginPath(); } - bezierCurveTo( - cp1x: number, - cp1y: number, - cp2x: number, - cp2y: number, - x: number, - y: number - ): void { + bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void { this.log('bezierCurveTo', cp1x, cp1y, cp2x, cp2y, x, y); this._ensureLayoutBeforeDraw(); this.context.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); } - clearHitRegions(): void { - } + clearHitRegions(): void {} clearRect(x: number, y: number, width: number, height: number): void { this.log('clearRect', x, y, width, height); @@ -617,22 +592,16 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { createImageData(width: number | ImageData, height?: number): ImageData { this.log('createImageData', width, height); if (width instanceof ImageData) { - return ImageData.fromNative( - this.context.createImageData(width.native) - ); + return ImageData.fromNative(this.context.createImageData(width.native)); } else { - return ImageData.fromNative( - this.context.createImageData(width, height) - ); + return ImageData.fromNative(this.context.createImageData(width, height)); } } createLinearGradient(x0: number, y0: number, x1: number, y1: number) { this.log('createLinearGradient', x0, y0, x1, y1); this._ensureLayoutBeforeDraw(); - return CanvasGradient.fromNative( - this.context.createLinearGradient(x0, y0, x1, y1) - ); + return CanvasGradient.fromNative(this.context.createLinearGradient(x0, y0, x1, y1)); } createPattern(image: any, repetition: string): CanvasPattern | null { @@ -662,22 +631,18 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } else if (typeof image.src === 'string') { img = ImageSource.fromFileSync(image.src).ios; } - } else if ( - image && - typeof image.tagName === 'string' && - image.tagName === 'CANVAS' - ) { + } else if (image && typeof image.tagName === 'string' && image.tagName === 'CANVAS') { if (image._canvas instanceof Canvas) { img = image._canvas.ios; } - } else if(image instanceof ImageBitmap || image?.native instanceof TNSImageBitmap){ + } else if (image instanceof ImageBitmap || image?.native instanceof TNSImageBitmap) { img = image.native; } if (!img) { return null; } - + let rep; switch (repetition) { case 'no-repeat': @@ -696,7 +661,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { if (img instanceof TNSImageAsset) { return new CanvasPattern(this.context.createPattern(img, rep)); - }else if (img instanceof TNSImageBitmap) { + } else if (img instanceof TNSImageBitmap) { return new CanvasPattern(this.context.createPattern(img, rep)); } else if (img instanceof UIImage) { return new CanvasPattern(this.context.createPattern(img, rep)); @@ -706,49 +671,29 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { return null; } - createRadialGradient( - x0: number, - y0: number, - r0: number, - x1: number, - y1: number, - r1: number - ) { + createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number) { this.log('createRadialGradient', x0, y0, r0, x1, y1, r1); this._ensureLayoutBeforeDraw(); - return CanvasGradient.fromNative( - this.context.createRadialGradient(x0, y0, r0, x1, y1, r1) - ); + return CanvasGradient.fromNative(this.context.createRadialGradient(x0, y0, r0, x1, y1, r1)); + } + + createConicGradient(startAngle: number, x: number, y: number) { + this.log('createConicGradient value:', startAngle, x, y); + this._ensureLayoutBeforeDraw(); + return CanvasGradient.fromNative(this.context.createConicGradient(startAngle, x, y)); } drawFocusIfNeeded(element): void; drawFocusIfNeeded(path, element): void; - drawFocusIfNeeded(...args: any): void { - } + drawFocusIfNeeded(...args: any): void {} drawImage(image: any, dx: number, dy: number): void; - drawImage( - image: any, - dx: number, - dy: number, - dWidth: number, - dHeight: number - ): void; - - drawImage( - image: any, - sx: number, - sy: number, - sWidth: number, - sHeight: number, - dx: number, - dy: number, - dWidth: number, - dHeight: number - ): void; + drawImage(image: any, dx: number, dy: number, dWidth: number, dHeight: number): void; + + drawImage(image: any, sx: number, sy: number, sWidth: number, sHeight: number, dx: number, dy: number, dWidth: number, dHeight: number): void; drawImage(...args): void { this.log('drawImage', ...args); @@ -764,11 +709,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { image = image.ios; } else if (image instanceof ImageAsset || image instanceof UIImage) { // NOOP - } else if ( - image && - typeof image.tagName === 'string' && - (image.tagName === 'IMG' || image.tagName === 'IMAGE') - ) { + } else if (image && typeof image.tagName === 'string' && (image.tagName === 'IMG' || image.tagName === 'IMAGE')) { width = image.width; height = image.height; if (image._imageSource instanceof ImageSource) { @@ -780,17 +721,12 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } else if (typeof image.src === 'string') { image = ImageSource.fromFileSync(image.src).ios; } - } else if ( - image && - typeof image.tagName === 'string' && - image.tagName === 'CANVAS' && image._canvas instanceof Canvas - ) { + } else if (image && typeof image.tagName === 'string' && image.tagName === 'CANVAS' && image._canvas instanceof Canvas) { image = image._canvas; - } else if(image instanceof ImageBitmap || image?.native instanceof TNSImageBitmap){ + } else if (image instanceof ImageBitmap || image?.native instanceof TNSImageBitmap) { image = image.native; } - if (args.length === 3) { if (image instanceof ImageAsset) { this.context.drawImage(image.native, args[1], args[2]); @@ -799,97 +735,29 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { } else { this.context.drawImage(image, args[1], args[2]); } - } else if (args.length === 5) { if (image instanceof ImageAsset) { - this.context.drawImage( - image.native, - args[1], - args[2], - args[3], - args[4] - ); + this.context.drawImage(image.native, args[1], args[2], args[3], args[4]); } else if (image instanceof Canvas) { - this.context.drawImage(image.ios, args[1], - args[2], - args[3], - args[4]); + this.context.drawImage(image.ios, args[1], args[2], args[3], args[4]); } else { - this.context.drawImage( - image, - args[1], - args[2], - args[3], - args[4] - ); + this.context.drawImage(image, args[1], args[2], args[3], args[4]); } } else if (args.length === 9) { if (image instanceof ImageAsset) { - this.context.drawImage( - image.native, - args[1], - args[2], - args[3], - args[4], - args[5], - args[6], - args[7], - args[8] - ); + this.context.drawImage(image.native, args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]); } else if (image instanceof Canvas) { - this.context.drawImage(image.ios, args[1], - args[2], - args[3], - args[4], - args[5], - args[6], - args[7], - args[8]); + this.context.drawImage(image.ios, args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]); } else { - this.context.drawImage( - image, - args[1], - args[2], - args[3], - args[4], - args[5], - args[6], - args[7], - args[8] - ); + this.context.drawImage(image, args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]); } } } - ellipse( - x: number, - y: number, - radiusX: number, - radiusY: number, - rotation: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean = false - ): void { - this.log('ellipse', x, - y, - radiusX, - radiusY, - rotation, - startAngle, - endAngle, - anticlockwise); + ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise: boolean = false): void { + this.log('ellipse', x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise); this._ensureLayoutBeforeDraw(); - this.context.ellipse( - x, - y, - radiusX, - radiusY, - rotation, - startAngle, - endAngle, - anticlockwise - ); + this.context.ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise); } fill(): void; @@ -924,9 +792,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.log('fillText', text, x, y, maxWidth); this._ensureLayoutBeforeDraw(); if (typeof maxWidth === 'number') { - this.context.fillText(text, x, y, maxWidth); + this.context.fillText(text + '', x, y, maxWidth); } else { - this.context.fillText(text, x, y); + this.context.fillText(text + '', x, y); } } @@ -944,12 +812,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { isPointInPath(x: number, y: number, fillRule: string): boolean; - isPointInPath( - path: Path2D, - x: number, - y: number, - fillRule: string - ): boolean; + isPointInPath(path: Path2D, x: number, y: number, fillRule: string): boolean; isPointInPath(...args): boolean { this.log('isPointInPath', ...args); @@ -999,25 +862,9 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { putImageData(imageData: ImageData, dx: number, dy: number): void; - putImageData( - imageData: ImageData, - dx: number, - dy: number, - dirtyX: number, - dirtyY: number, - dirtyWidth: number, - dirtyHeight: number - ): void; - - putImageData( - imageData: ImageData, - dx: number, - dy: number, - dirtyX?: number, - dirtyY?: number, - dirtyWidth?: number, - dirtyHeight?: number - ): void; + putImageData(imageData: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void; + + putImageData(imageData: ImageData, dx: number, dy: number, dirtyX?: number, dirtyY?: number, dirtyWidth?: number, dirtyHeight?: number): void; putImageData(...args): void { this.log('putImageData', ...args); @@ -1029,15 +876,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { if (args.length === 3) { this.context.putImageData(data.native, args[1], args[2]); } else if (args.length === 7) { - this.context.putImageData( - data.native, - args[1], - args[2], - args[3], - args[4], - args[5], - args[6] - ); + this.context.putImageData(data.native, args[1], args[2], args[3], args[4], args[5], args[6]); } } @@ -1053,9 +892,20 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.rect(x, y, width, height); } - removeHitRegion(id: string): void { + roundRect(x: number, y: number, width: number, height: number, radii: number): void; + roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; + roundRect(x: number, y: number, width: number, height: number, radii: any): void { + this.log('rect value:', x, y, width, height); + this._ensureLayoutBeforeDraw(); + if (Array.isArray(radii)) { + this.context.roundRect(x, y, width, height, radii); + } else if (typeof radii === 'number') { + this.context.roundRectWithXYWidthHeightRadii(x, y, width, height, radii); + } } + removeHitRegion(id: string): void {} + resetTransform(): void { this.log('resetTransform'); this._ensureLayoutBeforeDraw(); @@ -1092,8 +942,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { scrollPathIntoView(path: Path2D): void; - scrollPathIntoView(path?: Path2D): void { - } + scrollPathIntoView(path?: Path2D): void {} setLineDash(segments: number[]): void { this.log('setLineDash', segments); @@ -1101,14 +950,7 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.context.setLineDash(segments); } - setTransform( - a: number, - b: number, - c: number, - d: number, - e: number, - f: number - ): void { + setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void { this.log('setTransform', a, b, c, d, e, f); this._ensureLayoutBeforeDraw(); this.context.setTransform(a, b, c, d, e, f); @@ -1136,20 +978,13 @@ export class CanvasRenderingContext2D extends CanvasRenderingContext2DBase { this.log('strokeText', text, x, y, maxWidth); this._ensureLayoutBeforeDraw(); if (typeof maxWidth === 'number') { - this.context.strokeText(text, x, y, maxWidth); + this.context.strokeText(text + '', x, y, maxWidth); } else { - this.context.strokeText(text, x, y); + this.context.strokeText(text + '', x, y); } } - transform( - a: number, - b: number, - c: number, - d: number, - e: number, - f: number - ): void { + transform(a: number, b: number, c: number, d: number, e: number, f: number): void { this.log('transform', a, b, c, d, e, f); this._ensureLayoutBeforeDraw(); this.context.transform(a, b, c, d, e, f); diff --git a/packages/canvas/Canvas2D/DOMMatrix/common.ts b/packages/canvas/Canvas2D/DOMMatrix/common.ts index 41ea755c3..a0ae9c542 100644 --- a/packages/canvas/Canvas2D/DOMMatrix/common.ts +++ b/packages/canvas/Canvas2D/DOMMatrix/common.ts @@ -6,21 +6,21 @@ export abstract class DOMMatrixBase { abstract e: number; abstract f: number; - abstract m11: number - abstract m12: number - abstract m13: number - abstract m14: number - abstract m21: number - abstract m22: number - abstract m23: number - abstract m24: number + abstract m11: number; + abstract m12: number; + abstract m13: number; + abstract m14: number; + abstract m21: number; + abstract m22: number; + abstract m23: number; + abstract m24: number; abstract m31: number; abstract m32: number; abstract m33: number; abstract m34: number; abstract m41: number; abstract m42: number; - abstract m43: number + abstract m43: number; abstract m44: number; protected nativeInstance: any; @@ -36,4 +36,8 @@ export abstract class DOMMatrixBase { static [Symbol.hasInstance](obj) { if (obj?.native && obj.constructor.name === 'DOMMatrix') return true; } + + get [Symbol.toStringTag]() { + return 'DOMMatrix'; + } } diff --git a/packages/canvas/Canvas2D/ImageData/common.ts b/packages/canvas/Canvas2D/ImageData/common.ts index 3b6f16b45..d149bb12b 100644 --- a/packages/canvas/Canvas2D/ImageData/common.ts +++ b/packages/canvas/Canvas2D/ImageData/common.ts @@ -15,4 +15,8 @@ export abstract class ImageDataBase { static [Symbol.hasInstance](obj) { if (obj?.native && obj.constructor.name === 'ImageData') return true; } + + get [Symbol.toStringTag]() { + return 'ImageData'; + } } diff --git a/packages/canvas/Canvas2D/Path2D/Path2D.android.ts b/packages/canvas/Canvas2D/Path2D/Path2D.android.ts index 2a699df01..74b273897 100644 --- a/packages/canvas/Canvas2D/Path2D/Path2D.android.ts +++ b/packages/canvas/Canvas2D/Path2D/Path2D.android.ts @@ -1,6 +1,5 @@ -import {Path2DBase} from './common'; -import {DOMMatrix} from '../DOMMatrix'; - +import { Path2DBase } from './common'; +import { DOMMatrix } from '../DOMMatrix'; export class Path2D extends Path2DBase { constructor(instance?: any) { @@ -60,4 +59,14 @@ export class Path2D extends Path2DBase { rect(x: number, y: number, width: number, height: number): void { this.nativeInstance.rect(x, y, width, height); } + + roundRect(x: number, y: number, width: number, height: number, radii: number): void; + roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; + roundRect(x: number, y: number, width: number, height: number, radii: any): void { + if (Array.isArray(radii)) { + this.nativeInstance.roundRect(x, y, width, height, radii); + } else if (typeof radii === 'number') { + this.nativeInstance.roundRect(x, y, width, height, radii); + } + } } diff --git a/packages/canvas/Canvas2D/Path2D/Path2D.d.ts b/packages/canvas/Canvas2D/Path2D/Path2D.d.ts index 3da09a562..c6f03b4c9 100644 --- a/packages/canvas/Canvas2D/Path2D/Path2D.d.ts +++ b/packages/canvas/Canvas2D/Path2D/Path2D.d.ts @@ -23,4 +23,8 @@ export declare class Path2D extends Path2DBase { quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void; rect(x: number, y: number, width: number, height: number): void; + + roundRect(x: number, y: number, width: number, height: number, radii: number): void; + + roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; } diff --git a/packages/canvas/Canvas2D/Path2D/Path2D.ios.ts b/packages/canvas/Canvas2D/Path2D/Path2D.ios.ts index 8b82de543..80bf45752 100644 --- a/packages/canvas/Canvas2D/Path2D/Path2D.ios.ts +++ b/packages/canvas/Canvas2D/Path2D/Path2D.ios.ts @@ -59,7 +59,7 @@ export class Path2D extends Path2DBase { x: number, y: number ): void { - this.nativeInstance.arcTo( + this.nativeInstance.bezierCurveTo( cp1x, cp1y, cp2x, @@ -110,4 +110,14 @@ export class Path2D extends Path2DBase { rect(x: number, y: number, width: number, height: number): void { this.nativeInstance.rect(x, y, width, height); } + + roundRect(x: number, y: number, width: number, height: number, radii: number): void; + roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; + roundRect(x: number, y: number, width: number, height: number, radii: any): void { + if (Array.isArray(radii)) { + this.nativeInstance.roundRectWithXYWidthHeightRadii(x, y, width, height, radii); + } else if (typeof radii === 'number') { + this.nativeInstance.roundRectWithRadii(x, y, width, height, radii); + } + } } diff --git a/packages/canvas/Canvas2D/Path2D/common.ts b/packages/canvas/Canvas2D/Path2D/common.ts index b33c254b1..de3505b49 100644 --- a/packages/canvas/Canvas2D/Path2D/common.ts +++ b/packages/canvas/Canvas2D/Path2D/common.ts @@ -1,4 +1,4 @@ -import {DOMMatrixBase} from "../DOMMatrix"; +import { DOMMatrixBase } from '../DOMMatrix'; export abstract class Path2DBase { protected nativeInstance: any; @@ -15,10 +15,11 @@ export abstract class Path2DBase { if (obj?.native && obj.constructor.name === 'Path2D') return true; } - public abstract addPath( - path: Path2DBase, - transform?: DOMMatrixBase - ): void; + get [Symbol.toStringTag]() { + return 'Path2D'; + } + + public abstract addPath(path: Path2DBase, transform?: DOMMatrixBase): void; public abstract closePath(): void; @@ -26,54 +27,19 @@ export abstract class Path2DBase { public abstract lineTo(x: number, y: number): void; - public abstract bezierCurveTo( - cp1x: number, - cp1y: number, - cp2x: number, - cp2y: number, - x: number, - y: number - ): void; - - public abstract quadraticCurveTo( - cpx: number, - cpy: number, - x: number, - y: number - ): void; - - public abstract arc( - x: number, - y: number, - radius: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean - ): void; - - public abstract arcTo( - x1: number, - y1: number, - x2: number, - y2: number, - radius: number - ): void; - - public abstract ellipse( - x: number, - y: number, - radiusX: number, - radiusY: number, - rotation: number, - startAngle: number, - endAngle: number, - anticlockwise: boolean - ): void; - - public abstract rect( - x: number, - y: number, - width: number, - height: number - ): void; + public abstract bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void; + + public abstract quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void; + + public abstract arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise: boolean): void; + + public abstract arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void; + + public abstract ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise: boolean): void; + + public abstract rect(x: number, y: number, width: number, height: number): void; + + public abstract roundRect(x: number, y: number, width: number, height: number, radii: number): void; + + public abstract roundRect(x: number, y: number, width: number, height: number, radii: number[]): void; } diff --git a/packages/canvas/Canvas2D/TextMetrics/common.ts b/packages/canvas/Canvas2D/TextMetrics/common.ts index 23dcf8ed7..0530df137 100644 --- a/packages/canvas/Canvas2D/TextMetrics/common.ts +++ b/packages/canvas/Canvas2D/TextMetrics/common.ts @@ -13,6 +13,10 @@ export abstract class TextMetricsBase { if (obj?.native && obj.constructor.name === 'TextMetrics') return true; } + get [Symbol.toStringTag]() { + return 'TextMetrics'; + } + public abstract readonly width: number; public abstract readonly actualBoundingBoxLeft: number; public abstract readonly actualBoundingBoxRight: number; diff --git a/packages/canvas/ImageAsset/ImageAsset.android.ts b/packages/canvas/ImageAsset/ImageAsset.android.ts index 3bea372ce..82dd4dabe 100644 --- a/packages/canvas/ImageAsset/ImageAsset.android.ts +++ b/packages/canvas/ImageAsset/ImageAsset.android.ts @@ -119,9 +119,9 @@ export class ImageAsset extends ImageAssetBase { loadFromBytes(bytes: Uint8Array | Uint8ClampedArray) { if (bytes instanceof Uint8Array || bytes instanceof Uint8ClampedArray) { - return this.native.loadImageFromBytes(Array.from(bytes)); + return this.native.loadImageFromBuffer(bytes); } - return this.native.loadImageFromBytes(bytes as any); + return this.native.loadImageFromBuffer(bytes as any); } loadFromBytesAsync(bytes: Uint8Array | Uint8ClampedArray) { @@ -135,9 +135,9 @@ export class ImageAsset extends ImageAssetBase { }, }); if (bytes instanceof Uint8Array || bytes instanceof Uint8ClampedArray) { - this.native.loadImageFromBytesAsync(Array.from(bytes), callback); + this.native.loadImageFromBuffer(bytes, callback); } else { - this.native.loadImageFromBytesAsync(bytes as any, callback); + this.native.loadImageFromBuffer(bytes as any, callback); } }); } diff --git a/packages/canvas/ImageAsset/ImageAsset.ios.ts b/packages/canvas/ImageAsset/ImageAsset.ios.ts index b143e8e22..d15bfdb5d 100644 --- a/packages/canvas/ImageAsset/ImageAsset.ios.ts +++ b/packages/canvas/ImageAsset/ImageAsset.ios.ts @@ -8,8 +8,8 @@ const background_queue = dispatch_get_global_queue(21, 0); export class ImageAsset extends ImageAssetBase { //@ts-ignore - native: TNSImageAsset - constructor(native?: TNSImageAsset) { + native: TNSImageAsset; + constructor(native?: TNSImageAsset) { super(native || TNSImageAsset.alloc().init()); } @@ -45,10 +45,7 @@ export class ImageAsset extends ImageAssetBase { let realPath = path; if (typeof realPath === 'string') { if (realPath.startsWith('~/')) { - realPath = filePath.join( - knownFolders.currentApp().path, - realPath.replace('~/', '') - ); + realPath = filePath.join(knownFolders.currentApp().path, realPath.replace('~/', '')); } } return this.native.loadImageFromPathWithPath(realPath); @@ -59,10 +56,7 @@ export class ImageAsset extends ImageAssetBase { let realPath = path; if (typeof realPath === 'string') { if (realPath.startsWith('~/')) { - realPath = filePath.join( - knownFolders.currentApp().path, - realPath.replace('~/', '') - ); + realPath = filePath.join(knownFolders.currentApp().path, realPath.replace('~/', '')); } } this.native.loadImageFromPathAsyncWithPathCallback(realPath, (error) => { @@ -81,29 +75,29 @@ export class ImageAsset extends ImageAssetBase { loadFromNativeAsync(image: any) { return new Promise((resolve, reject) => { - this.native.loadImageFromImageAsyncWithImageCallback(image, error => { + this.native.loadImageFromImageAsyncWithImageCallback(image, (error) => { if (error) { reject(error); return; } resolve(true); - }) + }); }); } loadFromBytes(bytes: Uint8Array | Uint8ClampedArray): boolean { - return this.native.loadImageFromBytesWithArray(Array.from(bytes as any)); + return this.native.loadImageFromBuffer(NSData.dataWithData(bytes as any)); } loadFromBytesAsync(bytes: Uint8Array | Uint8ClampedArray) { return new Promise((resolve, reject) => { - this.native.loadImageFromBytesAsyncWithArrayCallback(Array.from(bytes as any), (error) => { + this.native.loadImageFromBufferAsyncCallback(NSData.dataWithData(bytes as any), (error) => { if (error) { reject(error); return; } resolve(true); - }) + }); }); } diff --git a/packages/canvas/ImageAsset/common.ts b/packages/canvas/ImageAsset/common.ts index 628633041..e1a1ea216 100644 --- a/packages/canvas/ImageAsset/common.ts +++ b/packages/canvas/ImageAsset/common.ts @@ -13,6 +13,9 @@ export class ImageAssetBase { if (obj?.native && obj.constructor.name === 'ImageAsset') return true; } + get [Symbol.toStringTag]() { + return 'ImageAsset'; + } } export enum ImageAssetSaveFormat { diff --git a/packages/canvas/ImageBitmap/common.ts b/packages/canvas/ImageBitmap/common.ts index fdd53ebe6..1f7d06ef8 100644 --- a/packages/canvas/ImageBitmap/common.ts +++ b/packages/canvas/ImageBitmap/common.ts @@ -16,4 +16,8 @@ export abstract class ImageBitmapBase { abstract readonly width: number; abstract readonly height: number; abstract close(); + + get [Symbol.toStringTag]() { + return 'ImageBitmap'; + } } diff --git a/packages/canvas/ImageBitmap/index.android.ts b/packages/canvas/ImageBitmap/index.android.ts index 3cfce0225..b6922cee0 100644 --- a/packages/canvas/ImageBitmap/index.android.ts +++ b/packages/canvas/ImageBitmap/index.android.ts @@ -18,7 +18,7 @@ const ImageBitmapResizeQuality = { Medium: lazy(() => org.nativescript.canvas.TNSImageBitmapResizeQuality.Medium), High: lazy(() => org.nativescript.canvas.TNSImageBitmapResizeQuality.High), Pixelated: lazy(() => org.nativescript.canvas.TNSImageBitmapResizeQuality.Pixelated), -} +}; export class ImageBitmap extends ImageBitmapBase { private constructor(bitmap: any) { super(bitmap); @@ -156,7 +156,7 @@ export class ImageBitmap extends ImageBitmapBase { }) ); } else if (source instanceof ImageData) { - org.nativescript.canvas.TNSImageBitmap.createFromImageAsset( + org.nativescript.canvas.TNSImageBitmap.createFromImageData( source.native, opts, new org.nativescript.canvas.TNSImageBitmap.Callback({ @@ -169,19 +169,37 @@ export class ImageBitmap extends ImageBitmapBase { }) ); } else if (source instanceof Blob) { - const bytes = (Blob as any).InternalAccessor.getBuffer(source); - org.nativescript.canvas.TNSImageBitmap.createFromBytesEncoded( - Array.from(bytes), - opts, - new org.nativescript.canvas.TNSImageBitmap.Callback({ - onError(error) { - reject(error); - }, - onSuccess(bitmap) { - resolve(ImageBitmap.fromNative(bitmap)); - }, - }) - ); + const bytes = (Blob as any).InternalAccessor.getBuffer(source) as Uint8Array; + + //@ts-ignore + if (bytes?.buffer?.nativeObject) { + org.nativescript.canvas.TNSImageBitmap.createFromBufferEncoded( + //@ts-ignore + bytes.buffer.nativeObject, + opts, + new org.nativescript.canvas.TNSImageBitmap.Callback({ + onError(error) { + reject(error); + }, + onSuccess(bitmap) { + resolve(ImageBitmap.fromNative(bitmap)); + }, + }) + ); + } else { + org.nativescript.canvas.TNSImageBitmap.createFromBufferEncoded( + bytes as any, + opts, + new org.nativescript.canvas.TNSImageBitmap.Callback({ + onError(error) { + reject(error); + }, + onSuccess(bitmap) { + resolve(ImageBitmap.fromNative(bitmap)); + }, + }) + ); + } } else if (source && typeof source === 'object' && typeof source.tagName === 'string' && (source.tagName === 'IMG' || source.tagName === 'IMAGE')) { org.nativescript.canvas.TNSImageBitmap.createFromImageAsset( source._asset.native, @@ -195,9 +213,9 @@ export class ImageBitmap extends ImageBitmapBase { }, }) ); - }else if (source instanceof ArrayBuffer){ + } else if (source instanceof ArrayBuffer) { //@ts-ignore - if(source.nativeObject){ + if (source.nativeObject) { org.nativescript.canvas.TNSImageBitmap.createFromBufferEncoded( //@ts-ignore source.nativeObject, @@ -211,9 +229,9 @@ export class ImageBitmap extends ImageBitmapBase { }, }) ); - }else { + } else { org.nativescript.canvas.TNSImageBitmap.createFromBytesEncoded( - Array.from(new Uint8Array(source as any) as any), + source as any, opts, new org.nativescript.canvas.TNSImageBitmap.Callback({ onError(error) { @@ -298,7 +316,7 @@ export class ImageBitmap extends ImageBitmapBase { }) ); } else if (source instanceof ImageData) { - org.nativescript.canvas.TNSImageBitmap.createFromImageAsset( + org.nativescript.canvas.TNSImageBitmap.createFromImageData( source.native, sx, sy, @@ -316,24 +334,42 @@ export class ImageBitmap extends ImageBitmapBase { ); } else if (source instanceof Blob) { const bytes = (Blob as any).InternalAccessor.getBuffer(source); - org.nativescript.canvas.TNSImageBitmap.createFromBytesEncoded( - Array.from(bytes), - sx, - sy, - sWidth, - sHeight, - opts, - new org.nativescript.canvas.TNSImageBitmap.Callback({ - onError(error) { - reject(error); - }, - onSuccess(bitmap) { - resolve(ImageBitmap.fromNative(bitmap)); - }, - }) - ); + if (bytes?.buffer?.nativeObject) { + org.nativescript.canvas.TNSImageBitmap.createFromBufferEncoded( + bytes.buffer.nativeObject, + sx, + sy, + sWidth, + sHeight, + opts, + new org.nativescript.canvas.TNSImageBitmap.Callback({ + onError(error) { + reject(error); + }, + onSuccess(bitmap) { + resolve(ImageBitmap.fromNative(bitmap)); + }, + }) + ); + } else { + org.nativescript.canvas.TNSImageBitmap.createFromBufferEncoded( + bytes, + sx, + sy, + sWidth, + sHeight, + opts, + new org.nativescript.canvas.TNSImageBitmap.Callback({ + onError(error) { + reject(error); + }, + onSuccess(bitmap) { + resolve(ImageBitmap.fromNative(bitmap)); + }, + }) + ); + } } else if (source && typeof source === 'object' && typeof source.tagName === 'string' && (source.tagName === 'IMG' || source.tagName === 'IMAGE')) { - console.log(source._asset.native) org.nativescript.canvas.TNSImageBitmap.createFromImageAsset( source._asset.native, sx, @@ -343,18 +379,16 @@ export class ImageBitmap extends ImageBitmapBase { opts, new org.nativescript.canvas.TNSImageBitmap.Callback({ onError(error) { - console.log('error',error); reject(error); }, onSuccess(bitmap) { - console.log('bitmap',bitmap); resolve(ImageBitmap.fromNative(bitmap)); }, }) ); - }else if (source instanceof ArrayBuffer){ + } else if (source instanceof ArrayBuffer) { //@ts-ignore - if(source.nativeObject){ + if (source.nativeObject) { org.nativescript.canvas.TNSImageBitmap.createFromBufferEncoded( //@ts-ignore source.nativeObject, @@ -372,9 +406,9 @@ export class ImageBitmap extends ImageBitmapBase { }, }) ); - }else { + } else { org.nativescript.canvas.TNSImageBitmap.createFromBytesEncoded( - Array.from(new Uint8Array(source as any) as any), + source as any, sx, sy, sWidth, diff --git a/packages/canvas/ImageBitmap/index.ios.ts b/packages/canvas/ImageBitmap/index.ios.ts index cc3c117f4..b980c1250 100644 --- a/packages/canvas/ImageBitmap/index.ios.ts +++ b/packages/canvas/ImageBitmap/index.ios.ts @@ -7,19 +7,19 @@ export class ImageBitmap extends ImageBitmapBase { private constructor(bitmap: any) { super(bitmap); } - #width = -1; - #height = -1; + _width = -1; + _height = -1; get width(): number { - if (this.#width === -1) { - this.#width = this.native.width; + if (this._width === -1) { + this._width = this.native.width; } - return this.#width; + return this._width; } get height(): number { - if (this.#height === -1) { - this.#height = this.native.height; + if (this._height === -1) { + this._height = this.native.height; } - return this.#height; + return this._height; } close() { @@ -125,7 +125,7 @@ export class ImageBitmap extends ImageBitmapBase { } }); } else if (source instanceof ImageData) { - TNSImageBitmap.createFromImageAsset(source.native, opts, (bitmap, error) => { + TNSImageBitmap.createFromImageData(source.native, opts, (bitmap, error) => { if (bitmap) { resolve(ImageBitmap.fromNative(bitmap)); } else { @@ -134,7 +134,8 @@ export class ImageBitmap extends ImageBitmapBase { }); } else if (source instanceof Blob) { const bytes = (Blob as any).InternalAccessor.getBuffer(source); - TNSImageBitmap.createFromBytesEncoded(Array.from(bytes), opts, (bitmap, error) => { + const data = NSData.dataWithData(bytes.buffer); + TNSImageBitmap.createFromDataEncoded(data, opts, (bitmap, error) => { if (bitmap) { resolve(ImageBitmap.fromNative(bitmap)); } else { @@ -198,7 +199,7 @@ export class ImageBitmap extends ImageBitmapBase { } }); } else if (source instanceof ImageData) { - (TNSImageBitmap as any).createFromImageAsset(source.native, sx, sy, sWidth, sHeight, opts, (bitmap, error) => { + (TNSImageBitmap as any).createFromImageData(source.native, sx, sy, sWidth, sHeight, opts, (bitmap, error) => { if (bitmap) { resolve(ImageBitmap.fromNative(bitmap)); } else { @@ -207,7 +208,8 @@ export class ImageBitmap extends ImageBitmapBase { }); } else if (source instanceof Blob) { const bytes = (Blob as any).InternalAccessor.getBuffer(source); - (TNSImageBitmap as any).createFromBytesEncoded(Array.from(bytes), sx, sy, sWidth, sHeight, opts, (bitmap, error) => { + const data = NSData.dataWithData(bytes.buffer); + (TNSImageBitmap as any).createFromDataEncoded(data, sx, sy, sWidth, sHeight, opts, (bitmap, error) => { if (bitmap) { resolve(ImageBitmap.fromNative(bitmap)); } else { @@ -223,7 +225,7 @@ export class ImageBitmap extends ImageBitmapBase { } }); } else if (source instanceof ArrayBuffer) { - (TNSImageBitmap as any).createFromDataEncoded(NSData.dataWithData(source as any), sx, sy, sWidth, sHeight, opts, (bitmap, error) => { + (TNSImageBitmap as any).createFromDataEncoded(NSData.dataWithData(source as any), sx, sy, sWidth, sHeight, opts, (bitmap, error) => { if (bitmap) { resolve(ImageBitmap.fromNative(bitmap)); } else { diff --git a/packages/canvas/TextDecoder/common.ts b/packages/canvas/TextDecoder/common.ts index 0eee8124f..578b175ce 100644 --- a/packages/canvas/TextDecoder/common.ts +++ b/packages/canvas/TextDecoder/common.ts @@ -16,4 +16,7 @@ export abstract class TextDecoderBase { if (obj?.native && obj.constructor.name === 'TextDecoder') return true; } + get [Symbol.toStringTag]() { + return 'TextDecoder'; + } } diff --git a/packages/canvas/TextEncoder/common.ts b/packages/canvas/TextEncoder/common.ts index 8e8400e8d..317c78f5a 100644 --- a/packages/canvas/TextEncoder/common.ts +++ b/packages/canvas/TextEncoder/common.ts @@ -15,4 +15,8 @@ export abstract class TextEncoderBase { static [Symbol.hasInstance](obj) { if (obj?.native && obj.constructor.name === 'TextEncoder') return true; } + + get [Symbol.toStringTag]() { + return 'TextEncoder'; + } } diff --git a/packages/canvas/WebGL/WebGLActiveInfo.ts b/packages/canvas/WebGL/WebGLActiveInfo.ts index 3f0f5f05b..feddf1398 100644 --- a/packages/canvas/WebGL/WebGLActiveInfo.ts +++ b/packages/canvas/WebGL/WebGLActiveInfo.ts @@ -1,13 +1,39 @@ export class WebGLActiveInfo { - readonly name: string; - readonly size: number; - readonly type: number; + _native: any; + _name: string; + get name(): string { + if (this._native) { + this._name = this._native.getName(); + } + return this._name; + } + + _size: number; + get size(): number { + if (this._native) { + this._size = this._native.getSize(); + } + return this._size; + } + + _type: number; + get type(): number { + if (this._native) { + this._type = this._native.getType(); + } + return this._type; + } + [Symbol.toStringTag] = 'WebGLActiveInfo'; constructor(name: string, size: number, type: number) { - this.name = name; - this.size = size; - this.type = type; + if (arguments.length === 1) { + this._native = name; + } else { + this._name = name; + this._size = size; + this._type = type; + } } public toString() { diff --git a/packages/canvas/WebGL/WebGLProgram.ts b/packages/canvas/WebGL/WebGLProgram.ts index 74631e667..7fa4c7e04 100644 --- a/packages/canvas/WebGL/WebGLProgram.ts +++ b/packages/canvas/WebGL/WebGLProgram.ts @@ -9,8 +9,4 @@ export class WebGLProgram { public get native() { return this.nativeInstance; } - - public toString() { - return '[object WebGLProgram]'; - } } diff --git a/packages/canvas/WebGL/WebGLRenderingContext/index.android.ts b/packages/canvas/WebGL/WebGLRenderingContext/index.android.ts index 92ac3f37a..f4d297af0 100644 --- a/packages/canvas/WebGL/WebGLRenderingContext/index.android.ts +++ b/packages/canvas/WebGL/WebGLRenderingContext/index.android.ts @@ -657,7 +657,7 @@ export class WebGLRenderingContext extends WebGLRenderingContextBase { this._checkArgs('getActiveAttrib', arguments); const value = program ? program.native : 0; const attrib = this.context.getActiveAttrib(value, index); - return new WebGLActiveInfo(attrib.getName(), attrib.getSize(), attrib.getType()); + return new (WebGLActiveInfo as any)(attrib as any); } getActiveUniform(program: WebGLProgram, index: number): WebGLActiveInfo { @@ -665,7 +665,7 @@ export class WebGLRenderingContext extends WebGLRenderingContextBase { this._checkArgs('getActiveUniform', arguments); const value = program ? program.native : 0; const uniform = this.context.getActiveUniform(value, index); - return new WebGLActiveInfo(uniform.getName(), uniform.getSize(), uniform.getType()); + return new (WebGLActiveInfo as any)(uniform as any);; } getAttachedShaders(program: WebGLProgram): WebGLShader[] { diff --git a/packages/canvas/WebGL2/WebGL2RenderingContext/index.android.ts b/packages/canvas/WebGL2/WebGL2RenderingContext/index.android.ts index 154be54e8..f8afda0f4 100644 --- a/packages/canvas/WebGL2/WebGL2RenderingContext/index.android.ts +++ b/packages/canvas/WebGL2/WebGL2RenderingContext/index.android.ts @@ -1,22 +1,22 @@ -import {WebGLQuery} from '../WebGLQuery'; -import {WebGLSampler} from '../WebGLSampler'; -import {WebGLSync} from '../WebGLSync'; -import {WebGLTransformFeedback} from '../WebGLTransformFeedback'; -import {WebGLVertexArrayObject} from '../WebGLVertexArrayObject'; -import {WebGLShader} from '../../WebGL/WebGLShader'; -import {WebGLFramebuffer} from '../../WebGL/WebGLFramebuffer'; -import {WebGLTexture} from '../../WebGL/WebGLTexture'; -import {WebGLProgram} from '../../WebGL/WebGLProgram'; -import {WebGLUniformLocation} from '../../WebGL/WebGLUniformLocation'; -import {WebGLActiveInfo} from '../../WebGL/WebGLActiveInfo'; -import {WebGLRenderbuffer} from '../../WebGL/WebGLRenderbuffer'; -import {WebGLShaderPrecisionFormat} from '../../WebGL/WebGLShaderPrecisionFormat'; -import {WebGLBuffer} from '../../WebGL/WebGLBuffer'; - -import {ImageAsset} from '../../ImageAsset'; -import {ImageSource} from '@nativescript/core'; -import {WebGL2RenderingContextBase} from "./common"; -import {Canvas} from '../../Canvas'; +import { WebGLQuery } from '../WebGLQuery'; +import { WebGLSampler } from '../WebGLSampler'; +import { WebGLSync } from '../WebGLSync'; +import { WebGLTransformFeedback } from '../WebGLTransformFeedback'; +import { WebGLVertexArrayObject } from '../WebGLVertexArrayObject'; +import { WebGLShader } from '../../WebGL/WebGLShader'; +import { WebGLFramebuffer } from '../../WebGL/WebGLFramebuffer'; +import { WebGLTexture } from '../../WebGL/WebGLTexture'; +import { WebGLProgram } from '../../WebGL/WebGLProgram'; +import { WebGLUniformLocation } from '../../WebGL/WebGLUniformLocation'; +import { WebGLActiveInfo } from '../../WebGL/WebGLActiveInfo'; +import { WebGLRenderbuffer } from '../../WebGL/WebGLRenderbuffer'; +import { WebGLShaderPrecisionFormat } from '../../WebGL/WebGLShaderPrecisionFormat'; +import { WebGLBuffer } from '../../WebGL/WebGLBuffer'; + +import { ImageAsset } from '../../ImageAsset'; +import { ImageSource } from '@nativescript/core'; +import { WebGL2RenderingContextBase } from './common'; +import { Canvas } from '../../Canvas'; import { ImageBitmap } from '../../ImageBitmap'; export class WebGL2RenderingContext extends WebGL2RenderingContextBase { @@ -24,7 +24,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { super(context); } - native: org.nativescript.canvas.TNSWebGL2RenderingContext; + native: org.nativescript.canvas.TNSWebGL2RenderingContext; /* Transform feedback */ static toPrimitive(value): any { @@ -65,13 +65,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.bindBufferBase(target, index, value); } - bindBufferRange( - target: number, - index: number, - buffer: WebGLBuffer, - offset: number, - size: number - ): void { + bindBufferRange(target: number, index: number, buffer: WebGLBuffer, offset: number, size: number): void { this._glCheckError('bindBufferRange'); const value = buffer ? buffer.native : 0; this.native.bindBufferRange(target, index, value, offset, size); @@ -83,10 +77,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.bindSampler(unit, value); } - bindTransformFeedback( - target: number, - transformFeedback: WebGLTransformFeedback - ): void { + bindTransformFeedback(target: number, transformFeedback: WebGLTransformFeedback): void { this._glCheckError('bindTransformFeedback'); const value = transformFeedback ? transformFeedback.native : 0; this.native.bindTransformFeedback(target, value); @@ -95,52 +86,25 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { bindVertexArray(vertexArray: WebGLVertexArrayObject): void { this._glCheckError('bindVertexArray'); const value = vertexArray ? vertexArray.native : 0; - this.native.bindVertexArray(value); - } - - blitFramebuffer( - srcX0: number, - srcY0: number, - srcX1: number, - srcY1: number, - dstX0: number, - dstY0: number, - dstX1: number, - dstY1: number, - mask: number, - filter: number - ): void { + if (value) { + this.native.bindVertexArray(value); + } else { + this.native.bindVertexArray(); + } + } + + blitFramebuffer(srcX0: number, srcY0: number, srcX1: number, srcY1: number, dstX0: number, dstY0: number, dstX1: number, dstY1: number, mask: number, filter: number): void { this._glCheckError('blitFramebuffer'); - this.native.blitFramebuffer( - srcX0, - srcY0, - srcX1, - srcY1, - dstX0, - dstY0, - dstX1, - dstY1, - mask, - filter - ); - } - - clearBufferfi( - buffer: WebGLBuffer, - drawbuffer: number, - depth: number, - stencil: number - ): void { + this.native.blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); + } + + clearBufferfi(buffer: WebGLBuffer, drawbuffer: number, depth: number, stencil: number): void { this._glCheckError('clearBufferfi'); const value = buffer ? buffer.native : 0; this.native.clearBufferfi(value, drawbuffer, depth, stencil); } - clearBufferfv( - buffer: WebGLBuffer, - drawbuffer: number, - values: number[] | Float32Array - ): void { + clearBufferfv(buffer: WebGLBuffer, drawbuffer: number, values: number[] | Float32Array): void { this._glCheckError('clearBufferfv'); const value = buffer ? buffer.native : 0; if (values instanceof Float32Array) { @@ -149,11 +113,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.clearBufferfv(value, drawbuffer, values as any); } - clearBufferiv( - buffer: WebGLBuffer, - drawbuffer: number, - values: number[] | Int32Array - ): void { + clearBufferiv(buffer: WebGLBuffer, drawbuffer: number, values: number[] | Int32Array): void { this._glCheckError('clearBufferiv'); const value = buffer ? buffer.native : 0; if (values instanceof Int32Array) { @@ -162,11 +122,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.clearBufferiv(value, drawbuffer, values as any); } - clearBufferuiv( - buffer: WebGLBuffer, - drawbuffer: number, - values: number[] | Uint32Array - ): void { + clearBufferuiv(buffer: WebGLBuffer, drawbuffer: number, values: number[] | Uint32Array): void { this._glCheckError('clearBufferuiv'); const value = buffer ? buffer.native : 0; if (values instanceof Uint32Array) { @@ -181,65 +137,15 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { return this.native.clientWaitSync(value, flags, timeout); } - compressedTexSubImage3D( - target: number, - level: number, - xoffset: number, - yoffset: number, - zoffset: number, - width: number, - height: number, - depth: number, - format: number, - imageSize: number, - offset: any - ); - - compressedTexSubImage3D( - target: number, - level: number, - xoffset: number, - yoffset: number, - zoffset: number, - width: number, - height: number, - depth: number, - format: number, - srcData: any, - srcOffset: number = 0, - srcLengthOverride: number = 0 - ): void { + compressedTexSubImage3D(target: number, level: number, xoffset: number, yoffset: number, zoffset: number, width: number, height: number, depth: number, format: number, imageSize: number, offset: any); + + compressedTexSubImage3D(target: number, level: number, xoffset: number, yoffset: number, zoffset: number, width: number, height: number, depth: number, format: number, srcData: any, srcOffset: number = 0, srcLengthOverride: number = 0): void { this._glCheckError('compressedTexSubImage3D'); if (typeof srcOffset === 'number') { - this.native.compressedTexSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - srcData, - srcOffset - ); + this.native.compressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, srcData, srcOffset); } else if (srcData && srcData.buffer) { if (srcData instanceof Uint8Array) { - this.native.compressedTexSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - this.toNativeArray(srcData as any, 'byte'), - srcOffset, - srcLengthOverride - ); + this.native.compressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, this.toNativeArray(srcData as any, 'byte'), srcOffset, srcLengthOverride); } } } @@ -248,46 +154,14 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { /* Framebuffers and renderbuffers */ - copyBufferSubData( - readTarget: number, - writeTarget: number, - readOffset: number, - writeOffset: number, - size: number - ): void { + copyBufferSubData(readTarget: number, writeTarget: number, readOffset: number, writeOffset: number, size: number): void { this._glCheckError('copyBufferSubData'); - this.native.copyBufferSubData( - readTarget, - writeTarget, - readOffset, - writeOffset, - size - ); - } - - copyTexSubImage3D( - target: number, - level: number, - xoffset: number, - yoffset: number, - zoffset: number, - x: number, - y: number, - width: number, - height: number - ): void { + this.native.copyBufferSubData(readTarget, writeTarget, readOffset, writeOffset, size); + } + + copyTexSubImage3D(target: number, level: number, xoffset: number, yoffset: number, zoffset: number, x: number, y: number, width: number, height: number): void { this._glCheckError('copyTexSubImage3D'); - this.native.copyTexSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - x, - y, - width, - height - ); + this.native.copyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height); } createQuery(): WebGLQuery { @@ -340,12 +214,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.deleteVertexArray(value); } - drawArraysInstanced( - mode: number, - first: number, - count: number, - instanceCount: number - ): void { + drawArraysInstanced(mode: number, first: number, count: number, instanceCount: number): void { this._glCheckError('drawArraysInstanced'); this.native.drawArraysInstanced(mode, first, count, instanceCount); } @@ -355,25 +224,12 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.drawBuffers(buffers); } - drawElementsInstanced( - mode: number, - count: number, - type: number, - offset: number, - instanceCount: number - ): void { + drawElementsInstanced(mode: number, count: number, type: number, offset: number, instanceCount: number): void { this._glCheckError('drawElementsInstanced'); this.native.drawElementsInstanced(mode, count, type, offset, instanceCount); } - drawRangeElements( - mode: number, - start: number, - end: number, - count: number, - type: number, - offset: number - ): void { + drawRangeElements(mode: number, start: number, end: number, count: number, type: number, offset: number): void { this._glCheckError('drawRangeElements'); this.native.drawRangeElements(mode, start, end, count, type, offset); } @@ -393,86 +249,41 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.fenceSync(condition, flags); } - framebufferTextureLayer( - target: number, - attachment: number, - texture: WebGLTexture, - level: number, - layer: number - ): void { + framebufferTextureLayer(target: number, attachment: number, texture: WebGLTexture, level: number, layer: number): void { this._glCheckError('framebufferTextureLayer'); const value = texture ? texture.native : 0; - this.native.framebufferTextureLayer( - target, - attachment, - value, - level, - layer - ); + this.native.framebufferTextureLayer(target, attachment, value, level, layer); } /* Framebuffers and renderbuffers */ - /* Uniforms */ - getActiveUniformBlockName( - program: WebGLProgram, - uniformBlockIndex: number - ): string { + getActiveUniformBlockName(program: WebGLProgram, uniformBlockIndex: number): string { this._glCheckError('getActiveUniformBlockName'); const value = program ? program.native : 0; - return this.native.getActiveUniformBlockName( - value, - uniformBlockIndex - ); + return this.native.getActiveUniformBlockName(value, uniformBlockIndex); } - getActiveUniformBlockParameter( - program: WebGLProgram, - uniformBlockIndex: number, - pname: number - ): any { + getActiveUniformBlockParameter(program: WebGLProgram, uniformBlockIndex: number, pname: number): any { this._glCheckError('getActiveUniformBlockParameter'); const value = program ? program.native : 0; - const param = this.native.getActiveUniformBlockParameter( - value, - uniformBlockIndex, - pname - ); + const param = this.native.getActiveUniformBlockParameter(value, uniformBlockIndex, pname); if (pname === this.UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES) { return new Uint32Array(this.getJSArray(param)); } return WebGL2RenderingContext.toPrimitive(param); } - getActiveUniforms( - program: WebGLProgram, - uniformIndices: number[], - pname: number - ): any { + getActiveUniforms(program: WebGLProgram, uniformIndices: number[], pname: number): any { this._glCheckError('getActiveUniforms'); const value = program ? program.native : 0; - return this.getJSArray( - this.native.getActiveUniforms(value, uniformIndices, pname) - ); - } - - getBufferSubData( - target: number, - srcByteOffset: number, - dstData: ArrayBuffer, - dstOffset: number = 0, - length: number = 0 - ): void { + return this.getJSArray(this.native.getActiveUniforms(value, uniformIndices, pname)); + } + + getBufferSubData(target: number, srcByteOffset: number, dstData: ArrayBuffer, dstOffset: number = 0, length: number = 0): void { this._glCheckError('getBufferSubData'); - this.native.getBufferSubData( - target, - srcByteOffset, - new Uint8Array(dstData.slice(0)) as any, - dstOffset, - length - ); + this.native.getBufferSubData(target, srcByteOffset, new Uint8Array(dstData.slice(0)) as any, dstOffset, length); } getFragDataLocation(program: WebGLProgram, name: string): number { @@ -485,26 +296,15 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { getIndexedParameter(target: number, index: number): any { this._glCheckError('getIndexedParameter'); const param = this.native.getIndexedParameter(target, index); - if ( - target === this.TRANSFORM_FEEDBACK_BUFFER_BINDING || - target === this.UNIFORM_BUFFER_BINDING - ) { + if (target === this.TRANSFORM_FEEDBACK_BUFFER_BINDING || target === this.UNIFORM_BUFFER_BINDING) { return new WebGLBuffer(param); } return WebGL2RenderingContext.toPrimitive(param); } - getInternalformatParameter( - target: number, - internalformat: number, - pname: number - ): any { + getInternalformatParameter(target: number, internalformat: number, pname: number): any { this._glCheckError('getInternalformatParameter'); - const param = this.native.getInternalformatParameter( - target, - internalformat, - pname - ); + const param = this.native.getInternalformatParameter(target, internalformat, pname); if (pname === this.SAMPLES) { return new Int32Array(this.getJSArray(param)); } @@ -521,7 +321,6 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { return WebGL2RenderingContext.toPrimitive(result); } - //@ts-ignore getParameter(pname: number): number[] | number | WebGLBuffer | WebGLProgram | WebGLFramebuffer | WebGLRenderbuffer | WebGLTexture | Uint32Array | Int32Array | Float32Array | string | null { this._glCheckError('getParameter'); @@ -575,10 +374,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { return null; } - getUniformBlockIndex( - program: WebGLProgram, - uniformBlockName: string - ): number { + getUniformBlockIndex(program: WebGLProgram, uniformBlockName: string): number { this._glCheckError('getUniformBlockIndex'); const value = program ? program.native : 0; return this.native.getUniformBlockIndex(value, uniformBlockName); @@ -587,9 +383,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { getUniformIndices(program: WebGLProgram, uniformNames: string[]): number[] { this._glCheckError('getUniformIndices'); const value = program ? program.native : 0; - return this.getJSArray( - this.native.getUniformIndices(value, uniformNames) - ); + return this.getJSArray(this.native.getUniformIndices(value, uniformNames)); } invalidateFramebuffer(target: number, attachments: number[]): void { @@ -597,23 +391,9 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.invalidateFramebuffer(target, attachments); } - invalidateSubFramebuffer( - target: number, - attachments: number[], - x: number, - y: number, - width: number, - height: number - ): void { + invalidateSubFramebuffer(target: number, attachments: number[], x: number, y: number, width: number, height: number): void { this._glCheckError('invalidateSubFramebuffer'); - this.native.invalidateSubFramebuffer( - target, - attachments, - x, - y, - width, - height - ); + this.native.invalidateSubFramebuffer(target, attachments, x, y, width, height); } isQuery(query: WebGLQuery): boolean { @@ -656,21 +436,9 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.readBuffer(src); } - renderbufferStorageMultisample( - target: number, - samples: number, - internalFormat: number, - width: number, - height: number - ): void { + renderbufferStorageMultisample(target: number, samples: number, internalFormat: number, width: number, height: number): void { this._glCheckError('renderbufferStorageMultisample'); - this.native.renderbufferStorageMultisample( - target, - samples, - internalFormat, - width, - height - ); + this.native.renderbufferStorageMultisample(target, samples, internalFormat, width, height); } resumeTransformFeedback(): void { @@ -684,7 +452,6 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.samplerParameterf(value, pname, param); } - /* Uniforms */ /* Sync objects */ @@ -695,116 +462,28 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.samplerParameteri(value, pname, param); } - texImage3D( - target: number, - level: number, - internalformat: number, - width: number, - height: number, - depth: number, - border: number, - format: number, - type: number, - offset: any - ); - - texImage3D( - target: number, - level: number, - internalformat: number, - width: number, - height: number, - depth: number, - border: number, - format: number, - type: number, - source: any - ): void { + texImage3D(target: number, level: number, internalformat: number, width: number, height: number, depth: number, border: number, format: number, type: number, offset: any); + + texImage3D(target: number, level: number, internalformat: number, width: number, height: number, depth: number, border: number, format: number, type: number, source: any): void { this._glCheckError('texImage3D'); if (typeof source === 'number') { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source); } else if (source && source.buffer) { if (source && source.buffer) { if (source instanceof Uint8Array || source instanceof Uint8ClampedArray) { - this.native.texImage3DByte( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - Array.from(source) - ); + this.native.texImage3DByte(target, level, internalformat, width, height, depth, border, format, type, Array.from(source)); } else if (source instanceof Uint16Array || source instanceof Int16Array) { - this.native.texImage3DShort( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - Array.from(source) - ); + this.native.texImage3DShort(target, level, internalformat, width, height, depth, border, format, type, Array.from(source)); } else if (source instanceof Uint32Array || source instanceof Int32Array) { - this.native.texImage3DInt( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - Array.from(source) - ); + this.native.texImage3DInt(target, level, internalformat, width, height, depth, border, format, type, Array.from(source)); } else if (source instanceof Float32Array) { - this.native.texImage3DFloat( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - Array.from(source) - ); + this.native.texImage3DFloat(target, level, internalformat, width, height, depth, border, format, type, Array.from(source)); } else if (source instanceof Float64Array) { - this.native.texImage3DDouble( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - Array.from(source) - ); + this.native.texImage3DDouble(target, level, internalformat, width, height, depth, border, format, type, Array.from(source)); } } else if (source instanceof ArrayBuffer) { // @ts-ignore - if(source.nativeObject){ + if (source.nativeObject) { // @ts-ignore this.native.texImage3D( target, @@ -819,353 +498,76 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { // @ts-ignore source.nativeObject ); - }else { - this.native.texImage3DByte( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - Array.from(new Uint8Array(source)) - ); + } else { + this.native.texImage3DByte(target, level, internalformat, width, height, depth, border, format, type, Array.from(new Uint8Array(source))); } } } else if (source instanceof android.graphics.Bitmap) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source); } else if (source instanceof ImageSource) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source.android - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source.android); } else if (source instanceof ImageAsset) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source.native - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source.native); } else if (source instanceof ImageBitmap || source?.native instanceof org.nativescript.canvas.TNSImageBitmap) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source.native - ); - } else if ( - source && - typeof source.tagName === 'string' && - (source.tagName === 'IMG' || source.tagName === 'IMAGE') - ) { + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source.native); + } else if (source && typeof source.tagName === 'string' && (source.tagName === 'IMG' || source.tagName === 'IMAGE')) { if (source._imageSource instanceof ImageSource) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source._imageSource.android - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source._imageSource.android); } else if (source._image instanceof android.graphics.Bitmap) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source._image - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source._image); } else if (source._asset instanceof ImageAsset) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source._asset.native - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source._asset.native); } else if (typeof source.src === 'string') { const result = ImageSource.fromFileSync(source.src); - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - result ? result.android : null - ); + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, result ? result.android : null); } - } else if (source && - typeof source.tagName === 'string' && - source.tagName === 'CANVAS' && source._canvas instanceof Canvas) { - this.native.texImage3D( - target, - level, - internalformat, - width, - height, - depth, - border, - format, - type, - source._canvas.android - ); + } else if (source && typeof source.tagName === 'string' && source.tagName === 'CANVAS' && source._canvas instanceof Canvas) { + this.native.texImage3D(target, level, internalformat, width, height, depth, border, format, type, source._canvas.android); } } - texStorage2D( - target: number, - levels: number, - internalformat: number, - width: number, - height: number - ): void { + texStorage2D(target: number, levels: number, internalformat: number, width: number, height: number): void { this._glCheckError('texStorage2D'); this.native.texStorage2D(target, levels, internalformat, width, height); } - texStorage3D( - target: number, - levels: number, - internalformat: number, - width: number, - height: number, - depth: number - ): void { + texStorage3D(target: number, levels: number, internalformat: number, width: number, height: number, depth: number): void { this._glCheckError('texStorage3D'); - this.native.texStorage3D( - target, - levels, - internalformat, - width, - height, - depth - ); - } - - texSubImage3D( - target: number, - level: number, - xoffset: number, - yoffset: number, - zoffset: number, - width: number, - height: number, - depth: number, - format: number, - type: number, - offset: any - ); - - texSubImage3D( - target: number, - level: number, - xoffset: number, - yoffset: number, - zoffset: number, - width: number, - height: number, - depth: number, - format: number, - type: number, - srcData: any - ); - - texSubImage3D( - target: number, - level: number, - xoffset: number, - yoffset: number, - zoffset: number, - width: number, - height: number, - depth: number, - format: number, - type: number, - srcData: any, - srcOffset: number = 0 - ): void { + this.native.texStorage3D(target, levels, internalformat, width, height, depth); + } + + texSubImage3D(target: number, level: number, xoffset: number, yoffset: number, zoffset: number, width: number, height: number, depth: number, format: number, type: number, offset: any); + + texSubImage3D(target: number, level: number, xoffset: number, yoffset: number, zoffset: number, width: number, height: number, depth: number, format: number, type: number, srcData: any); + + texSubImage3D(target: number, level: number, xoffset: number, yoffset: number, zoffset: number, width: number, height: number, depth: number, format: number, type: number, srcData: any, srcOffset: number = 0): void { this._glCheckError('texSubImage3D'); if (typeof srcData === 'number') { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData); } else if (srcData && srcData.buffer) { if (srcData instanceof Uint8Array) { if (srcOffset) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - this.toNativeArray(srcData as any, 'byte'), - srcOffset - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, this.toNativeArray(srcData as any, 'byte'), srcOffset); } else { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - this.toNativeArray(srcData as any, 'byte') - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, this.toNativeArray(srcData as any, 'byte')); } } - if (srcData && srcData.buffer) { if (srcData instanceof Uint8Array || srcData instanceof Uint8ClampedArray) { - this.native.texSubImage3DByte( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - Array.from(srcData), - srcOffset - ); + this.native.texSubImage3DByte(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, Array.from(srcData), srcOffset); } else if (srcData instanceof Uint16Array || srcData instanceof Int16Array) { - this.native.texSubImage3DShort( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - Array.from(srcData), - srcOffset - ); + this.native.texSubImage3DShort(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, Array.from(srcData), srcOffset); } else if (srcData instanceof Uint32Array || srcData instanceof Int32Array) { - this.native.texSubImage3DInt( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - Array.from(srcData), - srcOffset - ); + this.native.texSubImage3DInt(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, Array.from(srcData), srcOffset); } else if (srcData instanceof Float32Array) { - this.native.texSubImage3DFloat( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - Array.from(srcData), - srcOffset - ); + this.native.texSubImage3DFloat(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, Array.from(srcData), srcOffset); } else if (srcData instanceof Float64Array) { - this.native.texSubImage3DDouble( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - Array.from(srcData), - srcOffset - ); + this.native.texSubImage3DDouble(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, Array.from(srcData), srcOffset); } } else if (srcData instanceof ArrayBuffer) { // @ts-ignore - if(source.nativeObject){ - + if (source.nativeObject) { this.native.texSubImage3DByte( target, level, @@ -1181,169 +583,35 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { source.nativeObject, srcOffset ); - }else { - this.native.texSubImage3DDouble( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - Array.from(new Uint8Array(srcData)), - srcOffset - ); + } else { + this.native.texSubImage3DDouble(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, Array.from(new Uint8Array(srcData)), srcOffset); } } - - - } else if (srcData instanceof android.graphics.Bitmap) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData); } else if (srcData instanceof ImageSource) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData.android - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData.android); } else if (srcData instanceof ImageAsset) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData.native - ); - } else if (srcData instanceof ImageBitmap || srcData?.native instanceof org.nativescript.canvas.TNSImageBitmap) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData.native - ); - } else if ( - srcData && - typeof srcData.tagName === 'string' && - (srcData.tagName === 'IMG' || srcData.tagName === 'IMAGE') - ) { + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData.native); + } else if (srcData instanceof ImageBitmap || srcData?.native instanceof org.nativescript.canvas.TNSImageBitmap) { + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData.native); + } else if (srcData && typeof srcData.tagName === 'string' && (srcData.tagName === 'IMG' || srcData.tagName === 'IMAGE')) { if (srcData._imageSource instanceof ImageSource) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData._imageSource.android - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData._imageSource.android); } else if (srcData._image instanceof android.graphics.Bitmap) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData._image - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData._image); } else if (srcData._asset instanceof ImageAsset) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData._asset.native - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData._asset.native); } else if (typeof srcData.src === 'string') { const result = ImageSource.fromFileSync(srcData.src); - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - result ? result.android : null - ); + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, result ? result.android : null); } - } else if (srcData && - typeof srcData.tagName === 'string' && - srcData.tagName === 'CANVAS' && srcData._canvas instanceof TNSCanvas) { - this.native.texSubImage3D( - target, - level, - xoffset, - yoffset, - zoffset, - width, - height, - depth, - format, - type, - srcData._canvas.android - ); + } else if (srcData && typeof srcData.tagName === 'string' && srcData.tagName === 'CANVAS' && srcData._canvas instanceof TNSCanvas) { + this.native.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, srcData._canvas.android); } } - transformFeedbackVaryings( - program: WebGLProgram, - varyings: string[], - bufferMode: number - ): void { + transformFeedbackVaryings(program: WebGLProgram, varyings: string[], bufferMode: number): void { this._glCheckError('transformFeedbackVaryings'); const value = program ? program.native : 0; this.native.transformFeedbackVaryings(value, varyings, bufferMode); @@ -1389,13 +657,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.uniform3uiv(value, Array.from(data as any)); } - uniform4ui( - location: WebGLUniformLocation, - v0: number, - v1: number, - v2: number, - v3: number - ): void { + uniform4ui(location: WebGLUniformLocation, v0: number, v1: number, v2: number, v3: number): void { this._glCheckError('uniform4ui'); const value = location ? location.native : 0; this.native.uniform4ui(value, v0, v1, v2, v3); @@ -1407,25 +669,13 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.uniform4uiv(value, Array.from(data as any)); } - uniformBlockBinding( - program: WebGLProgram, - uniformBlockIndex: number, - uniformBlockBinding: number - ): void { + uniformBlockBinding(program: WebGLProgram, uniformBlockIndex: number, uniformBlockBinding: number): void { this._glCheckError('uniformBlockBinding'); const value = program ? program.native : 0; - this.native.uniformBlockBinding( - value, - uniformBlockIndex, - uniformBlockBinding - ); - } - - uniformMatrix2x3fv( - location: WebGLUniformLocation, - transpose: boolean, - data: Float32Array - ): void { + this.native.uniformBlockBinding(value, uniformBlockIndex, uniformBlockBinding); + } + + uniformMatrix2x3fv(location: WebGLUniformLocation, transpose: boolean, data: Float32Array): void { if (data instanceof Float32Array) { data = Array.from(data as any) as any; //this.toNativeArray(data as any, 'float'); } @@ -1434,11 +684,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.uniformMatrix2x3fv(value, transpose, data as any); } - uniformMatrix2x4fv( - location: WebGLUniformLocation, - transpose: boolean, - data: Float32Array - ): void { + uniformMatrix2x4fv(location: WebGLUniformLocation, transpose: boolean, data: Float32Array): void { if (data instanceof Float32Array) { data = Array.from(data as any) as any; //this.toNativeArray(data as any, 'float'); } @@ -1447,11 +693,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.uniformMatrix2x4fv(value, transpose, data as any); } - uniformMatrix3x2fv( - location: WebGLUniformLocation, - transpose: boolean, - data: Float32Array - ): void { + uniformMatrix3x2fv(location: WebGLUniformLocation, transpose: boolean, data: Float32Array): void { if (data instanceof Float32Array) { data = Array.from(data as any) as any; //this.toNativeArray(data as any, 'float'); } @@ -1460,11 +702,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.uniformMatrix3x2fv(value, transpose, data as any); } - uniformMatrix3x4fv( - location: WebGLUniformLocation, - transpose: boolean, - data: Float32Array - ): void { + uniformMatrix3x4fv(location: WebGLUniformLocation, transpose: boolean, data: Float32Array): void { if (data instanceof Float32Array) { data = Array.from(data as any) as any; //this.toNativeArray(data as any, 'float'); } @@ -1473,11 +711,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.uniformMatrix3x4fv(value, transpose, data as any); } - uniformMatrix4x2fv( - location: WebGLUniformLocation, - transpose: boolean, - data: Float32Array - ): void { + uniformMatrix4x2fv(location: WebGLUniformLocation, transpose: boolean, data: Float32Array): void { if (data instanceof Float32Array) { data = Array.from(data as any) as any; //this.toNativeArray(data as any, 'float'); } @@ -1486,11 +720,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.uniformMatrix4x2fv(value, transpose, data as any); } - uniformMatrix4x3fv( - location: WebGLUniformLocation, - transpose: boolean, - data: Float32Array - ): void { + uniformMatrix4x3fv(location: WebGLUniformLocation, transpose: boolean, data: Float32Array): void { if (data instanceof Float32Array) { data = Array.from(data as any) as any; //this.toNativeArray(data as any, 'float'); } @@ -1504,13 +734,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.vertexAttribDivisor(index, divisor); } - vertexAttribI4i( - index: number, - v0: number, - v1: number, - v2: number, - v3: number - ): void { + vertexAttribI4i(index: number, v0: number, v1: number, v2: number, v3: number): void { this._glCheckError('vertexAttribI4i'); this.native.vertexAttribI4i(index, v0, v1, v2, v3); } @@ -1523,13 +747,7 @@ export class WebGL2RenderingContext extends WebGL2RenderingContextBase { this.native.vertexAttribI4uiv(index, value as any); } - vertexAttribI4ui( - index: number, - v0: number, - v1: number, - v2: number, - v3: number - ): void { + vertexAttribI4ui(index: number, v0: number, v1: number, v2: number, v3: number): void { this._glCheckError('vertexAttribI4ui'); this.native.vertexAttribI4ui(index, v0, v1, v2, v3); } diff --git a/packages/canvas/package.json b/packages/canvas/package.json index 89ee015f1..d9d1551de 100644 --- a/packages/canvas/package.json +++ b/packages/canvas/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/canvas", - "version": "1.0.0", + "version": "1.1.0-alpha.12", "description": "DOM Canvas API for NativeScript", "main": "index", "typings": "index.d.ts", @@ -35,4 +35,4 @@ "dependencies": { "xmldom": "~0.6.0" } -} \ No newline at end of file +} diff --git a/packages/canvas/platforms/android/include.gradle b/packages/canvas/platforms/android/include.gradle index 94530ff6e..0f0f7faf8 100644 --- a/packages/canvas/platforms/android/include.gradle +++ b/packages/canvas/platforms/android/include.gradle @@ -7,7 +7,7 @@ allprojects { } dependencies { - implementation 'org.nativescript:canvas:1.0.0' + implementation 'org.nativescript:canvas:1.1.0-alpha.20' implementation "androidx.multidex:multidex:2.0.1" } @@ -16,6 +16,7 @@ android { defaultConfig { multiDexEnabled true } + packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/LICENSE' @@ -26,5 +27,9 @@ android { exclude 'META-INF/notice.txt' exclude 'META-INF/ASL2.0' exclude("META-INF/*.kotlin_module") + pickFirst 'lib/armeabi-v7a/libc++_shared.so' + pickFirst 'lib/arm64-v8a/libc++_shared.so' + pickFirst 'lib/x86_64/libc++_shared.so' + pickFirst 'lib/x86/libc++_shared.so' } } \ No newline at end of file diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/CanvasNative b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/CanvasNative index 264b96ec6..227399dc3 100755 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/CanvasNative and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/CanvasNative differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/CanvasNative-Swift.h b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/CanvasNative-Swift.h index 3e3861d22..11370941f 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/CanvasNative-Swift.h +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/CanvasNative-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) #ifndef CANVASNATIVE_SWIFT_H #define CANVASNATIVE_SWIFT_H #pragma clang diagnostic push @@ -21,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -181,15 +192,45 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import CoreFoundation; -@import CoreGraphics; @import CoreVideo; @import Dispatch; @import Foundation; @@ -199,6 +240,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import UIKit; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -206,6 +248,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -214,7 +257,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif -@class NSNumber; +#if defined(__OBJC__) @class NSCoder; SWIFT_CLASS_NAMED("CanvasCPUView") @@ -268,15 +311,17 @@ SWIFT_CLASS_NAMED("TNSAnimationFrame") @end @class TNSDOMMatrix; +@class UIImage; @protocol TNSCanvasListener; @class TNSCanvasRenderingContext; -@class NSDictionary; +@class TNSContextAttributes; SWIFT_CLASS_NAMED("TNSCanvas") @interface TNSCanvas : UIView + (NSMapTable * _Nonnull)getViews SWIFT_WARN_UNUSED_RESULT; - (void * _Nullable)getViewPtr SWIFT_WARN_UNUSED_RESULT; @property (nonatomic) BOOL ignorePixelScaling; +@property (nonatomic) BOOL scaling; + (TNSDOMMatrix * _Nonnull)createSVGMatrix SWIFT_WARN_UNUSED_RESULT; @property (nonatomic) BOOL handleInvalidationManually; - (void)didDraw; @@ -287,6 +332,8 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (void)toDataURLAsync:(NSString * _Nonnull)type :(void (^ _Nonnull)(NSString * _Nonnull))callback; - (void)toDataURLAsync:(NSString * _Nonnull)type :(float)format :(void (^ _Nonnull)(NSString * _Nonnull))callback; - (NSArray * _Nonnull)snapshot SWIFT_WARN_UNUSED_RESULT; +- (UIImage * _Nullable)getImage:(BOOL)flip SWIFT_WARN_UNUSED_RESULT; +- (NSArray * _Nonnull)snapshotEncoded SWIFT_WARN_UNUSED_RESULT; @property (nonatomic, readonly) BOOL isGL; - (GLint)getId SWIFT_WARN_UNUSED_RESULT; @property (nonatomic, readonly) float width; @@ -299,6 +346,7 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (nonnull instancetype)initWithFrame:(CGRect)frame useCpu:(BOOL)useCpu OBJC_DESIGNATED_INITIALIZER; - (void)setListener:(id _Nullable)listener; @property (nonatomic, readonly) float fps; ++ (void)layoutView:(UIView * _Nonnull)view :(CGFloat)width :(CGFloat)height; - (void)layoutSubviews; - (void)resume; - (void)pause; @@ -307,7 +355,9 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (void)handleMoveOffMain; - (void)handleMoveToMain; - (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type SWIFT_WARN_UNUSED_RESULT; -- (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type contextAttributes:(NSDictionary * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContextWithType:(NSString * _Nonnull)type attributes:(NSString * _Nonnull)attributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type contextAttributes:(NSDictionary * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContextWithType:(NSString * _Nonnull)type contextAttributes:(TNSContextAttributes * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @end @@ -333,6 +383,7 @@ enum TNSTextBaseLine : NSInteger; enum TNSFillRule : NSInteger; @class TNSLinearGradient; @class TNSRadialGradient; +@class TNSConicGradient; enum TNSPatternRepetition : NSInteger; @class TNSImageData; @class TNSTextMetrics; @@ -357,7 +408,9 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") @property (nonatomic) float shadowOffsetY; @property (nonatomic) enum TNSTextAlignment textAlign; @property (nonatomic) enum TNSTextBaseLine textBaseline; +- (void)setFillStyleWithString:(NSString * _Nonnull)color; @property (nonatomic, strong) id _Nonnull fillStyle; +- (void)setStrokeStyleWithString:(NSString * _Nonnull)color; @property (nonatomic, strong) id _Nonnull strokeStyle; - (void)fillRect:(float)x :(float)y :(float)width :(float)height; - (void)strokeRect:(float)x :(float)y :(float)width :(float)height; @@ -366,6 +419,9 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") - (void)strokeText:(NSString * _Nonnull)text :(float)x :(float)y; - (void)strokeText:(NSString * _Nonnull)text :(float)x :(float)y :(float)width; - (void)rect:(float)x :(float)y :(float)width :(float)height; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height topLeft:(float)topLeft topRight:(float)topRight bottomRight:(float)bottomRight bottomLeft:(float)bottomLeft; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height radii:(float)radii; +- (void)roundRect:(float)x :(float)y :(float)width :(float)height :(NSArray * _Nonnull)radii; - (void)fill; - (void)fillWithValue:(id _Nonnull)value; - (void)fill:(TNSPath2D * _Nonnull)path :(enum TNSFillRule)rule; @@ -389,6 +445,7 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") - (TNSCanvas * _Nonnull)getCanvas SWIFT_WARN_UNUSED_RESULT; - (TNSLinearGradient * _Nonnull)createLinearGradient:(float)x0 :(float)y0 :(float)x1 :(float)y1 SWIFT_WARN_UNUSED_RESULT; - (TNSRadialGradient * _Nonnull)createRadialGradient:(float)x0 :(float)y0 :(float)r0 :(float)x1 :(float)y1 :(float)r1 SWIFT_WARN_UNUSED_RESULT; +- (TNSConicGradient * _Nonnull)createConicGradient:(float)startAngle :(float)x :(float)y SWIFT_WARN_UNUSED_RESULT; - (id _Nullable)createPattern:(id _Nonnull)value :(enum TNSPatternRepetition)repetition SWIFT_WARN_UNUSED_RESULT; - (void)setTransform:(float)a :(float)b :(float)c :(float)d :(float)e :(float)f; - (void)scale:(float)x :(float)y; @@ -454,6 +511,11 @@ SWIFT_CLASS_NAMED("TNSRadialGradient") @end +SWIFT_CLASS_NAMED("TNSConicGradient") +@interface TNSConicGradient : TNSGradient +@end + + SWIFT_CLASS_NAMED("TNSPattern") @interface TNSPattern : NSObject - (void)setTransformWithMatrix:(TNSDOMMatrix * _Nonnull)matrix; @@ -492,6 +554,12 @@ typedef SWIFT_ENUM_NAMED(NSInteger, TNSCompositeOperationType, "TNSCompositeOper }; +SWIFT_CLASS_NAMED("TNSContextAttributes") +@interface TNSContextAttributes : NSObject +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + SWIFT_CLASS_NAMED("TNSDOMMatrix") @interface TNSDOMMatrix : NSObject - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @@ -534,7 +602,7 @@ SWIFT_CLASS_NAMED("TNSFramebufferAttachmentParameter") - (nonnull instancetype)initWithIsTexture:(BOOL)isTexture isRenderbuffer:(BOOL)isRenderbuffer value:(int32_t)value OBJC_DESIGNATED_INITIALIZER; @end -@class UIImage; +@class NSData; enum TNSImageAssetFormat : NSInteger; SWIFT_CLASS_NAMED("TNSImageAsset") @@ -547,6 +615,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) dispatch_queue_t _Null - (BOOL)loadImageFromUrlWithUrl:(NSString * _Nonnull)url SWIFT_WARN_UNUSED_RESULT; - (void)loadImageFromUrlAsyncWithUrl:(NSString * _Nonnull)url callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (void)loadImageFromPathAsyncWithPath:(NSString * _Nonnull)path callback:(void (^ _Nonnull)(NSString * _Nullable))callback; +- (BOOL)loadImageFromBuffer:(NSData * _Nonnull)buffer SWIFT_WARN_UNUSED_RESULT; +- (void)loadImageFromBufferAsync:(NSData * _Nonnull)buffer callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (BOOL)loadImageFromBytesWithArray:(NSArray * _Nonnull)array SWIFT_WARN_UNUSED_RESULT; - (void)loadImageFromBytesAsyncWithArray:(NSArray * _Nonnull)array callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (BOOL)loadImageFromImageWithImage:(UIImage * _Nonnull)image SWIFT_WARN_UNUSED_RESULT; @@ -571,7 +641,6 @@ typedef SWIFT_ENUM_NAMED(NSInteger, TNSImageAssetFormat, "TNSImageAssetFormat", }; @class TNSImageBitmapOptions; -@class NSData; SWIFT_CLASS_NAMED("TNSImageBitmap") @interface TNSImageBitmap : NSObject @@ -689,6 +758,9 @@ SWIFT_CLASS_NAMED("TNSPath2D") - (void)ellipse:(float)x :(float)y :(float)radiusX :(float)radiusY :(float)rotation :(float)startAngle :(float)endAngle; - (void)ellipse:(float)x :(float)y :(float)radiusX :(float)radiusY :(float)rotation :(float)startAngle :(float)endAngle :(BOOL)anticlockwise; - (void)rect:(float)x :(float)y :(float)width :(float)height; +- (void)roundRect:(float)x :(float)y :(float)width :(float)height :(float)topLeft :(float)topRight :(float)bottomRight :(float)bottomLeft; +- (void)roundRectWithRadii:(float)x :(float)y :(float)width :(float)height :(float)radii; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height radii:(NSArray * _Nonnull)radii; @end typedef SWIFT_ENUM(NSInteger, TNSPatternRepetition, open) { @@ -715,6 +787,8 @@ SWIFT_CLASS_NAMED("TNSSVG") - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; - (void)drawRect:(CGRect)rect; +- (UIImage * _Nullable)toImage SWIFT_WARN_UNUSED_RESULT; +- (NSData * _Nullable)toData SWIFT_WARN_UNUSED_RESULT; @end typedef SWIFT_ENUM_NAMED(NSInteger, TNSTextAlignment, "TNSTextAlignment", open) { @@ -1986,11 +2060,19 @@ SWIFT_CLASS_NAMED("Utils") + (CVOpenGLESTextureRef _Nullable)createImage:(CVOpenGLESTextureCacheRef _Nonnull)texturecache :(CVImageBufferRef _Nonnull)buffer :(CFDictionaryRef _Nullable)textureAttributes :(GLenum)target :(GLint)internalFormat :(GLsizei)width :(GLsizei)height :(GLenum)format :(GLenum)type :(NSInteger)planeIndex SWIFT_WARN_UNUSED_RESULT; + (TNSRender * _Nonnull)setupRender SWIFT_WARN_UNUSED_RESULT; + (void)drawFrame:(AVPlayer * _Nonnull)player :(AVPlayerItemVideoOutput * _Nonnull)output :(CGSize)videoSize :(TNSRender * _Nonnull)render :(int32_t)internalFormat :(int32_t)format :(BOOL)flipYWebGL; ++ (BOOL)writeToFile:(NSData * _Nonnull)data :(NSString * _Nonnull)path error:(NSError * _Nullable * _Nullable)error; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif + +#else +#error unsupported Swift architecture +#endif diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/canvas_native.h b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/canvas_native.h index 74c6edfed..75ff07b1b 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/canvas_native.h +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Headers/canvas_native.h @@ -137,6 +137,12 @@ typedef struct U8Array { uintptr_t data_len; } U8Array; +#if defined(TARGET_OS_ANDROID) +typedef struct ASurfaceTexture { + uint8_t _unused[0]; +} ASurfaceTexture; +#endif + typedef struct PaintStyleValue { long long value; enum PaintStyleValueType value_type; @@ -237,6 +243,36 @@ void destroy_u32_array(struct U32Array *array); void destroy_u8_array(struct U8Array *array); +#if defined(TARGET_OS_ANDROID) +/** + * Returns the API level of the device we're actually running on, or -1 on failure. + * The returned values correspond to the named constants in ``, + * and is equivalent to the Java `Build.VERSION.SDK_INT` API. + * + * See also android_get_application_target_sdk_version(). + */ +extern int android_get_device_api_level(void); +#endif + +#if defined(TARGET_OS_ANDROID) +/** + * Get a reference to the native ASurfaceTexture from the corresponding java object. + * + * The caller must keep a reference to the Java SurfaceTexture during the lifetime of the returned + * ASurfaceTexture. Failing to do so could result in the ASurfaceTexture to stop functioning + * properly once the Java object gets finalized. + * However, this will not result in program termination. + * + * \param env JNI environment + * \param surfacetexture Instance of Java SurfaceTexture object + * \return native ASurfaceTexture reference or nullptr if the java object is not a SurfaceTexture. + * The returned reference MUST BE released when it's no longer needed using + * ASurfaceTexture_release(). + */ +extern struct ASurfaceTexture *ASurfaceTexture_fromSurfaceTexture(JNIEnv *env, + jobject surfacetexture); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void destroy_string(const char *string); #endif @@ -253,6 +289,10 @@ void destroy_paint_style(long long style); void destroy_text_metrics(long long metrics); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +struct U8Array *gl_snapshot_current_gl_context(float width, float height, bool _alpha); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) long long context_init_context(float width, float height, @@ -275,6 +315,10 @@ long long context_init_context_with_custom_surface(float width, enum TextDirection direction); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +void context_set_scaling(long long context, bool scaling); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_resize_custom_surface(long long context, float width, @@ -303,6 +347,10 @@ const char *context_data_url(long long context, const char *format, float qualit struct U8Array *context_snapshot_canvas(long long context); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +struct U8Array *context_snapshot_canvas_encoded(long long context); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_flush(long long context); #endif @@ -564,6 +612,10 @@ long long context_create_radial_gradient(long long context, float r1); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +long long context_create_conic_gradient(long long context, float start_angle, float x, float y); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_draw_image_dx_dy(long long context, const uint8_t *image_data, @@ -739,6 +791,18 @@ void context_quadratic_curve_to(long long context, float cpx, float cpy, float x void context_rect(long long context, float x, float y, float width, float height); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +void context_round_rect(long long context, + float x, + float y, + float width, + float height, + float top_left, + float top_right, + float bottom_right, + float bottom_left); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_reset_transform(long long context); #endif @@ -794,9 +858,9 @@ void context_translate(long long context, float x, float y); #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void gl_tex_image_2D_asset(unsigned int target, int level, - int internalformat, + int _internalformat, int border, - unsigned int format, + unsigned int _format, unsigned int image_type, long long asset, bool flip_y); @@ -816,12 +880,12 @@ void gl_tex_sub_image_2D_asset(unsigned int target, #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void gl_tex_image_3D_asset(unsigned int target, int level, - int internalformat, + int _internalformat, int width, int height, int depth, int border, - unsigned int format, + unsigned int _format, unsigned int image_type, long long asset, bool flip_y); @@ -875,14 +939,6 @@ bool image_asset_load_from_raw(long long asset, const uint8_t *array, uintptr_t struct U8Array *image_asset_get_bytes(long long asset); #endif -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -struct U8Array *image_asset_get_rgba_bytes(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -struct U8Array *image_asset_get_rgb_bytes(long long asset); -#endif - #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) unsigned int image_asset_width(long long asset); #endif @@ -903,30 +959,6 @@ bool image_asset_has_error(long long asset); bool image_asset_scale(long long asset, unsigned int x, unsigned int y); #endif -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_x(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_x_in_place(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_y(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -void image_asset_flip_y_in_place_owned(uint8_t *buf, uintptr_t length); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -void image_asset_flip_x_in_place_owned(uint8_t *buf, uintptr_t length); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_y_in_place(long long asset); -#endif - #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) bool image_asset_save_path(long long asset, const char *path, unsigned int format); #endif @@ -1339,6 +1371,18 @@ void path_ellipse(long long path, void path_rect(long long path, float x, float y, float width, float height); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +void path_round_rect(long long path, + float x, + float y, + float width, + float height, + float top_left, + float top_right, + float bottom_right, + float bottom_left); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void destroy_path(long long path); #endif diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Info.plist b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Info.plist index 25e0fd1c2..d44c6509f 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Info.plist and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Info.plist differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo index d2f29abc5..87434783a 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo deleted file mode 100644 index d2f29abc5..000000000 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo and /dev/null differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.abi.json b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 000000000..2ee714b84 --- /dev/null +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,75693 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSDOMMatrix", + "printedName": "TNSDOMMatrix", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)init", + "mangledName": "$s12CanvasNative12TNSDOMMatrixCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "a", + "printedName": "a", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)a", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)a", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setA:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1aSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "b", + "printedName": "b", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)b", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)b", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setB:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1bSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "c", + "printedName": "c", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)c", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)c", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setC:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1cSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "d", + "printedName": "d", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)d", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)d", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setD:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1dSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "e", + "printedName": "e", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)e", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)e", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setE:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1eSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "f", + "printedName": "f", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)f", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)f", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setF:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1fSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m11", + "printedName": "m11", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m11", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m11", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM11:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m11SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m12", + "printedName": "m12", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m12", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m12", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM12:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m12SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m13", + "printedName": "m13", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m13", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m13", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM13:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m13SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m14", + "printedName": "m14", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m14", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m14", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM14:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m14SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m21", + "printedName": "m21", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m21", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m21", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM21:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m21SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m22", + "printedName": "m22", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m22", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m22", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM22:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m22SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m23", + "printedName": "m23", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m23", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m23", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM23:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m23SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m24", + "printedName": "m24", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m24", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m24", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM24:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m24SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m31", + "printedName": "m31", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m31", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m31", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM31:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m31SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m32", + "printedName": "m32", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m32", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m32", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM32:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m32SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m33", + "printedName": "m33", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m33", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m33", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM33:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m33SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m34", + "printedName": "m34", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m34", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m34", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM34:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m34SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m41", + "printedName": "m41", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m41", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m41", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM41:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m41SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m42", + "printedName": "m42", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m42", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m42", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM42:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m42SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m43", + "printedName": "m43", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m43", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m43", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM43:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m43SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m44", + "printedName": "m44", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m44", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m44", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM44:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m44SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC", + "moduleName": "CanvasNative", + "objc_name": "TNSDOMMatrix", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextAlignment", + "printedName": "TNSTextAlignment", + "children": [ + { + "kind": "Var", + "name": "Start", + "printedName": "Start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentStart", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO5StartyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Left", + "printedName": "Left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentLeft", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO4LeftyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Center", + "printedName": "Center", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentCenter", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO6CenteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Right", + "printedName": "Right", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentRight", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO5RightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "End", + "printedName": "End", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentEnd", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO3EndyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextAlignment?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextAlignment?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextAlignmentO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextAlignment", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasListener", + "printedName": "TNSCanvasListener", + "children": [ + { + "kind": "Function", + "name": "contextReady", + "printedName": "contextReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener(im)contextReady", + "mangledName": "$s12CanvasNative17TNSCanvasListenerP12contextReadyyyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.TNSCanvasListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener", + "mangledName": "$s12CanvasNative17TNSCanvasListenerP", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "TNSCanvasListener", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_standard_derivatives", + "printedName": "TNS_OES_standard_derivatives", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_standard_derivatives", + "printedName": "CanvasNative.TNS_OES_standard_derivatives", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives(im)init", + "mangledName": "$s12CanvasNative28TNS_OES_standard_derivativesCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives", + "mangledName": "$s12CanvasNative28TNS_OES_standard_derivativesC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_standard_derivatives", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_vertex_array_object", + "printedName": "TNS_OES_vertex_array_object", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_vertex_array_object", + "printedName": "CanvasNative.TNS_OES_vertex_array_object", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)init", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "VERTEX_ARRAY_BINDING_OES", + "printedName": "VERTEX_ARRAY_BINDING_OES", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(py)VERTEX_ARRAY_BINDING_OES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC021VERTEX_ARRAY_BINDING_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)VERTEX_ARRAY_BINDING_OES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC021VERTEX_ARRAY_BINDING_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createVertexArrayOES", + "printedName": "createVertexArrayOES()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)createVertexArrayOES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC017createVertexArrayD0s6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteVertexArrayOES", + "printedName": "deleteVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)deleteVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC017deleteVertexArrayD00F6Objectys6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isVertexArrayOES", + "printedName": "isVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)isVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC013isVertexArrayD00F6ObjectSbs6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindVertexArrayOES", + "printedName": "bindVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)bindVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC015bindVertexArrayD00F6Objectys6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_vertex_array_object", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_float", + "printedName": "TNS_OES_texture_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_float", + "printedName": "CanvasNative.TNS_OES_texture_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float(im)init", + "mangledName": "$s12CanvasNative21TNS_OES_texture_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float", + "mangledName": "$s12CanvasNative21TNS_OES_texture_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSAnimationFrame", + "printedName": "TNSAnimationFrame", + "children": [ + { + "kind": "Function", + "name": "requestAnimationFrame", + "printedName": "requestAnimationFrame(toLoop:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(cm)requestAnimationFrameToLoop:", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC016requestAnimationD06toLoopyySfc_tFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelAnimationFrame", + "printedName": "cancelAnimationFrame(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(cm)cancelAnimationFrameWithId:", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC015cancelAnimationD02idySS_tFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSAnimationFrame", + "printedName": "CanvasNative.TNSAnimationFrame", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(im)init", + "mangledName": "$s12CanvasNative17TNSAnimationFrameCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC", + "moduleName": "CanvasNative", + "objc_name": "TNSAnimationFrame", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSFillRule", + "printedName": "TNSFillRule", + "children": [ + { + "kind": "Var", + "name": "NonZero", + "printedName": "NonZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSFillRule.Type) -> CanvasNative.TNSFillRule", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSFillRule.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSFillRule@TNSFillRuleNonZero", + "mangledName": "$s12CanvasNative11TNSFillRuleO7NonZeroyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "EvenOdd", + "printedName": "EvenOdd", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSFillRule.Type) -> CanvasNative.TNSFillRule", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSFillRule.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSFillRule@TNSFillRuleEvenOdd", + "mangledName": "$s12CanvasNative11TNSFillRuleO7EvenOddyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSFillRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSFillRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSFillRuleO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative11TNSFillRuleO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSFillRule", + "mangledName": "$s12CanvasNative11TNSFillRuleO", + "moduleName": "CanvasNative", + "objc_name": "TNSFillRule", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_sRGB", + "printedName": "TNS_EXT_sRGB", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_sRGB", + "printedName": "CanvasNative.TNS_EXT_sRGB", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)init", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "SRGB_EXT", + "printedName": "SRGB_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC05SRGB_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC05SRGB_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB_ALPHA_EXT", + "printedName": "SRGB_ALPHA_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB_ALPHA_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC011SRGB_ALPHA_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB_ALPHA_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC011SRGB_ALPHA_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8_ALPHA8_EXT", + "printedName": "SRGB8_ALPHA8_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB8_ALPHA8_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC013SRGB8_ALPHA8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB8_ALPHA8_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC013SRGB8_ALPHA8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC038FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC038FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_sRGB", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageData", + "printedName": "TNSImageData", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)data", + "mangledName": "$s12CanvasNative12TNSImageDataC4dataSo6NSDataCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)data", + "mangledName": "$s12CanvasNative12TNSImageDataC4dataSo6NSDataCvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)width", + "mangledName": "$s12CanvasNative12TNSImageDataC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)width", + "mangledName": "$s12CanvasNative12TNSImageDataC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)height", + "mangledName": "$s12CanvasNative12TNSImageDataC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)height", + "mangledName": "$s12CanvasNative12TNSImageDataC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)init", + "mangledName": "$s12CanvasNative12TNSImageDataCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData", + "mangledName": "$s12CanvasNative12TNSImageDataC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageData", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextDirection", + "printedName": "TNSTextDirection", + "children": [ + { + "kind": "Var", + "name": "Ltr", + "printedName": "Ltr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextDirection.Type) -> CanvasNative.TNSTextDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextDirection@TNSTextDirectionLtr", + "mangledName": "$s12CanvasNative16TNSTextDirectionO3LtryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Rtl", + "printedName": "Rtl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextDirection.Type) -> CanvasNative.TNSTextDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextDirection@TNSTextDirectionRtl", + "mangledName": "$s12CanvasNative16TNSTextDirectionO3RtlyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextDirectionO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative16TNSTextDirectionO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextDirection", + "mangledName": "$s12CanvasNative16TNSTextDirectionO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextDirection", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_color_buffer_float", + "printedName": "TNS_WEBGL_color_buffer_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_color_buffer_float", + "printedName": "CanvasNative.TNS_WEBGL_color_buffer_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)init", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "RGBA32F_EXT", + "printedName": "RGBA32F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)RGBA32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC11RGBA32F_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)RGBA32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC11RGBA32F_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32F_EXT", + "printedName": "RGB32F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)RGB32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC10RGB32F_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)RGB32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC10RGB32F_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC41FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC41FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED_EXT", + "printedName": "UNSIGNED_NORMALIZED_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC23UNSIGNED_NORMALIZED_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC23UNSIGNED_NORMALIZED_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_color_buffer_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "TNS_ANGLE_instanced_arrays", + "children": [ + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "printedName": "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(py)VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC028VERTEX_ATTRIB_ARRAY_DIVISOR_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC028VERTEX_ATTRIB_ARRAY_DIVISOR_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(context:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "CanvasNative.TNS_ANGLE_instanced_arrays", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays" + }, + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)initWithContext:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC7contextAcA24TNSWebGLRenderingContextC_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "drawArraysInstancedANGLE", + "printedName": "drawArraysInstancedANGLE(mode:first:count:primcount:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)drawArraysInstancedANGLEWithMode:first:count:primcount:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC019drawArraysInstancedD04mode5first5count9primcountys5Int32V_A3JtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElementsInstancedANGLE", + "printedName": "drawElementsInstancedANGLE(mode:count:type:offset:primcount:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)drawElementsInstancedANGLEWithMode:count:type:offset:primcount:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC021drawElementsInstancedD04mode5count4type6offset9primcountys5Int32V_A4KtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribDivisorANGLE", + "printedName": "vertexAttribDivisorANGLE(index:divisor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)vertexAttribDivisorANGLEWithIndex:divisor:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC019vertexAttribDivisorD05index7divisorys5Int32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "CanvasNative.TNS_ANGLE_instanced_arrays", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)init", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC", + "moduleName": "CanvasNative", + "objc_name": "TNS_ANGLE_instanced_arrays", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_blend_minmax", + "printedName": "TNS_EXT_blend_minmax", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_blend_minmax", + "printedName": "CanvasNative.TNS_EXT_blend_minmax", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)init", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "MIN_EXT", + "printedName": "MIN_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(py)MIN_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MIN_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)MIN_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MIN_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_EXT", + "printedName": "MAX_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(py)MAX_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MAX_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)MAX_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MAX_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_blend_minmax", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "MetalKit", + "printedName": "MetalKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSCanvas", + "printedName": "TNSCanvas", + "children": [ + { + "kind": "Function", + "name": "getViews", + "printedName": "getViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)getViews", + "mangledName": "$s12CanvasNative9TNSCanvasC8getViewsSo10NSMapTableCySo8NSStringCACGyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getViewPtr", + "printedName": "getViewPtr()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getViewPtr", + "mangledName": "$s12CanvasNative9TNSCanvasC10getViewPtrSvSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "scaling", + "printedName": "scaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)scaling", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)scaling", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setScaling:", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC7scalingSbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "createSVGMatrix", + "printedName": "createSVGMatrix()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)createSVGMatrix", + "mangledName": "$s12CanvasNative9TNSCanvasC15createSVGMatrixAA12TNSDOMMatrixCyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "handleInvalidationManually", + "printedName": "handleInvalidationManually", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)handleInvalidationManually", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleInvalidationManually", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setHandleInvalidationManually:", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "didDraw", + "printedName": "didDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)didDraw", + "mangledName": "$s12CanvasNative9TNSCanvasC7didDrawyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLSSyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL:", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLyS2SF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL::", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLyS2S_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync:", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyyySScF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync::", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyySS_ySSctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync:::", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyySS_SfySSctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "snapshot", + "printedName": "snapshot()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)snapshot", + "mangledName": "$s12CanvasNative9TNSCanvasC8snapshotSays5UInt8VGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImage", + "printedName": "getImage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getImage:", + "mangledName": "$s12CanvasNative9TNSCanvasC8getImageySo7UIImageCSgSbF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "snapshotEncoded", + "printedName": "snapshotEncoded()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)snapshotEncoded", + "mangledName": "$s12CanvasNative9TNSCanvasC15snapshotEncodedSays5UInt8VGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isGL", + "printedName": "isGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)isGL", + "mangledName": "$s12CanvasNative9TNSCanvasC4isGLSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)isGL", + "mangledName": "$s12CanvasNative9TNSCanvasC4isGLSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getId", + "printedName": "getId()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getId", + "mangledName": "$s12CanvasNative9TNSCanvasC5getIds5Int32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)width", + "mangledName": "$s12CanvasNative9TNSCanvasC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)width", + "mangledName": "$s12CanvasNative9TNSCanvasC5widthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)height", + "mangledName": "$s12CanvasNative9TNSCanvasC6heightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)height", + "mangledName": "$s12CanvasNative9TNSCanvasC6heightSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "updateDirection", + "printedName": "updateDirection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)updateDirection:", + "mangledName": "$s12CanvasNative9TNSCanvasC15updateDirectionyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)context", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)context", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setContext:", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC7contexts5Int64VvM", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64VvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "doDraw", + "printedName": "doDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)doDraw", + "mangledName": "$s12CanvasNative9TNSCanvasC6doDrawyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)flush", + "mangledName": "$s12CanvasNative9TNSCanvasC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:useCpu:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)initWithFrame:useCpu:", + "mangledName": "$s12CanvasNative9TNSCanvasC5frame6useCpuACSo6CGRectV_Sbtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setListener", + "printedName": "setListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasListener?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasListener", + "printedName": "CanvasNative.TNSCanvasListener", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setListener:", + "mangledName": "$s12CanvasNative9TNSCanvasC11setListeneryyAA0cE0_pSgF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fps", + "printedName": "fps", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)fps", + "mangledName": "$s12CanvasNative9TNSCanvasC3fpsSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)fps", + "mangledName": "$s12CanvasNative9TNSCanvasC3fpsSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "layoutView", + "printedName": "layoutView(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)layoutView:::", + "mangledName": "$s12CanvasNative9TNSCanvasC10layoutViewyySo6UIViewC_12CoreGraphics7CGFloatVAItFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)layoutSubviews", + "mangledName": "$s12CanvasNative9TNSCanvasC14layoutSubviewsyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)resume", + "mangledName": "$s12CanvasNative9TNSCanvasC6resumeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)pause", + "mangledName": "$s12CanvasNative9TNSCanvasC5pauseyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveToMain", + "printedName": "moveToMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)moveToMain", + "mangledName": "$s12CanvasNative9TNSCanvasC10moveToMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveOffMain", + "printedName": "moveOffMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)moveOffMain", + "mangledName": "$s12CanvasNative9TNSCanvasC11moveOffMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleMoveOffMain", + "printedName": "handleMoveOffMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleMoveOffMain", + "mangledName": "$s12CanvasNative9TNSCanvasC17handleMoveOffMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleMoveToMain", + "printedName": "handleMoveToMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleMoveToMain", + "mangledName": "$s12CanvasNative9TNSCanvasC16handleMoveToMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContext:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContextyAA0c9RenderingE0CSgSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(type:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContextWithType:attributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext4type10attributesAA0c9RenderingE0CSgSS_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(_:contextAttributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContext:contextAttributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext_17contextAttributesAA0c9RenderingE0CSgSS_SDySSypGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(type:contextAttributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContextWithType:contextAttributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext4type17contextAttributesAA0c9RenderingE0CSgSS_AA010TNSContextH0CtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)initWithFrame:", + "mangledName": "$s12CanvasNative9TNSCanvasC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas", + "mangledName": "$s12CanvasNative9TNSCanvasC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvas", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RenderListener", + "printedName": "RenderListener", + "usr": "s:12CanvasNative14RenderListenerP", + "mangledName": "$s12CanvasNative14RenderListenerP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSContextAttributes", + "printedName": "TNSContextAttributes", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes(im)init", + "mangledName": "$s12CanvasNative20TNSContextAttributesCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSContextAttributesC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s12CanvasNative20TNSContextAttributesC4fromACs7Decoder_p_tKcfc", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative20TNSContextAttributesC6encode2toys7Encoder_p_tKF", + "mangledName": "$s12CanvasNative20TNSContextAttributesC6encode2toys7Encoder_p_tKF", + "moduleName": "CanvasNative", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes", + "mangledName": "$s12CanvasNative20TNSContextAttributesC", + "moduleName": "CanvasNative", + "objc_name": "TNSContextAttributes", + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextEncoder", + "printedName": "TNSTextEncoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextEncoder", + "printedName": "CanvasNative.TNSTextEncoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)init", + "mangledName": "$s12CanvasNative14TNSTextEncoderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encoding:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextEncoder", + "printedName": "CanvasNative.TNSTextEncoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)initWithEncoding:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(py)encoding", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encoding", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(text:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encodeWithText:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC6encode4textSo6NSDataCSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(pointer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:SP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encodeWithPointer:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC6encode7pointerSo6NSDataCSPys4Int8VGSg_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder", + "mangledName": "$s12CanvasNative14TNSTextEncoderC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextEncoder", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "Var", + "name": "Default", + "printedName": "Default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaDefault", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO7DefaultyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Premultiply", + "printedName": "Premultiply", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaPremultiply", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO0E0yA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "None", + "printedName": "None", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaNone", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO4NoneyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapPremultiplyAlpha", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_etc1", + "printedName": "TNS_WEBGL_compressed_texture_etc1", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_etc1", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_etc1", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(im)init", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1CACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_ETC1_WEBGL", + "printedName": "COMPRESSED_RGB_ETC1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(py)COMPRESSED_RGB_ETC1_WEBGL", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C020COMPRESSED_RGB_ETC1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(im)COMPRESSED_RGB_ETC1_WEBGL", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C020COMPRESSED_RGB_ETC1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_etc1", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_texture_filter_anisotropic", + "printedName": "TNS_EXT_texture_filter_anisotropic", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_texture_filter_anisotropic", + "printedName": "CanvasNative.TNS_EXT_texture_filter_anisotropic", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)init", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "printedName": "MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(py)MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC012MAX_TEXTURE_h12_ANISOTROPY_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC012MAX_TEXTURE_h12_ANISOTROPY_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_ANISOTROPY_EXT", + "printedName": "TEXTURE_MAX_ANISOTROPY_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(py)TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC023TEXTURE_MAX_ANISOTROPY_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC023TEXTURE_MAX_ANISOTROPY_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_texture_filter_anisotropic", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLineJoin", + "printedName": "TNSLineJoin", + "children": [ + { + "kind": "Var", + "name": "Round", + "printedName": "Round", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinRound", + "mangledName": "$s12CanvasNative11TNSLineJoinO5RoundyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Bevel", + "printedName": "Bevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinBevel", + "mangledName": "$s12CanvasNative11TNSLineJoinO5BevelyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Miter", + "printedName": "Miter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinMiter", + "mangledName": "$s12CanvasNative11TNSLineJoinO5MiteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineJoin?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineJoin?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSLineJoinO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative11TNSLineJoinO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSLineJoin", + "mangledName": "$s12CanvasNative11TNSLineJoinO", + "moduleName": "CanvasNative", + "objc_name": "TNSLineJoin", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapOptions", + "printedName": "TNSImageBitmapOptions", + "children": [ + { + "kind": "Var", + "name": "flipY", + "printedName": "flipY", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)flipY", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)flipY", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setFlipY:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC5flipYSbvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "premultiplyAlpha", + "printedName": "premultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)premultiplyAlpha", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)premultiplyAlpha", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setPremultiplyAlpha:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorSpaceConversion", + "printedName": "colorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)colorSpaceConversion", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)colorSpaceConversion", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setColorSpaceConversion:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeQuality", + "printedName": "resizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeQuality", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeQuality", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeQuality:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeWidth", + "printedName": "resizeWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeWidth", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeWidth", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeWidth:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeHeight", + "printedName": "resizeHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeHeight", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeHeight", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeHeight:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)init", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapOptions", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "TNSFramebufferAttachmentParameter", + "children": [ + { + "kind": "Var", + "name": "isTexture", + "printedName": "isTexture", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)isTexture", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTextureSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)isTexture", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTextureSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isRenderbuffer", + "printedName": "isRenderbuffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)isRenderbuffer", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC14isRenderbufferSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)isRenderbuffer", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC14isRenderbufferSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)value", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC5values5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)value", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC5values5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)init", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isTexture:isRenderbuffer:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)initWithIsTexture:isRenderbuffer:value:", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTexture0F12Renderbuffer5valueACSb_Sbs5Int32Vtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC", + "moduleName": "CanvasNative", + "objc_name": "TNSFramebufferAttachmentParameter", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_element_index_uint", + "printedName": "TNS_OES_element_index_uint", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_element_index_uint", + "printedName": "CanvasNative.TNS_OES_element_index_uint", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(im)init", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "UNSIGNED_INT", + "printedName": "UNSIGNED_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(py)UNSIGNED_INT", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC12UNSIGNED_INTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(im)UNSIGNED_INT", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC12UNSIGNED_INTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_element_index_uint", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSWebGL2RenderingContext", + "printedName": "TNSWebGL2RenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGL2RenderingContext", + "printedName": "CanvasNative.TNSWebGL2RenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)init:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextCyAcA9TNSCanvasCcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGL2RenderingContext", + "printedName": "CanvasNative.TNSWebGL2RenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)init::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextCyAcA9TNSCanvasC_SDySSypGtcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init::", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "beginQuery", + "printedName": "beginQuery(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)beginQuery::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10beginQueryyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "beginTransformFeedback", + "printedName": "beginTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)beginTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22beginTransformFeedbackyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBufferBase", + "printedName": "bindBufferBase(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindBufferBase:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14bindBufferBaseyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBufferRange", + "printedName": "bindBufferRange(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindBufferRange:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15bindBufferRangeyys6UInt32V_A2FS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindSampler", + "printedName": "bindSampler(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindSampler::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11bindSampleryys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindTransformFeedback", + "printedName": "bindTransformFeedback(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindTransformFeedback::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21bindTransformFeedbackyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindVertexArray", + "printedName": "bindVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15bindVertexArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blitFramebuffer", + "printedName": "blitFramebuffer(_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)blitFramebuffer::::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15blitFramebufferyys5Int32V_A7Fs6UInt32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfv", + "printedName": "clearBufferfv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfvyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfv", + "printedName": "clearBufferfv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferiv", + "printedName": "clearBufferiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferivyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferiv", + "printedName": "clearBufferiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferiv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferuiv", + "printedName": "clearBufferuiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferuiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clearBufferuivyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferuiv", + "printedName": "clearBufferuiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferuiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clearBufferuiv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfi", + "printedName": "clearBufferfi(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfi::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfiyys6UInt32V_s5Int32VSfAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientWaitSync", + "printedName": "clientWaitSync(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clientWaitSync:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clientWaitSyncys5Int32Vs13OpaquePointerV_s6UInt32Vs6UInt64VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3Dyys6UInt32V_s5Int32VA6hf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i8:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i8:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________2i8__ys6UInt32V_s5Int32VA6iGSays4Int8VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u8:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u8:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________2u8__ys6UInt32V_s5Int32VA6iGSays5UInt8VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i16:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i16:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3i16__ys6UInt32V_s5Int32VA6iGSays5Int16VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u16:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u16:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3u16__ys6UInt32V_s5Int32VA6iGSays6UInt16VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3i32__ys6UInt32V_s5Int32VA6iGSayAIGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3u32__ys6UInt32V_s5Int32VA6iGSayAGGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:f32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::f32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3f32__ys6UInt32V_s5Int32VA6iGSaySfGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:f64:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::f64:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3f64__ys6UInt32V_s5Int32VA6iGSaySdGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBufferSubData", + "printedName": "copyBufferSubData(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)copyBufferSubData:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17copyBufferSubDatayys6UInt32V_AFS3itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexSubImage3D", + "printedName": "copyTexSubImage3D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)copyTexSubImage3D:::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17copyTexSubImage3Dyys6UInt32V_s5Int32VA7HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createQuery", + "printedName": "createQuery()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createQuery", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11createQuerys6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSampler", + "printedName": "createSampler()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createSampler", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13createSamplers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createVertexArray", + "printedName": "createVertexArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createVertexArray", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17createVertexArrays6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTransformFeedback", + "printedName": "createTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23createTransformFeedbacks6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteQuery", + "printedName": "deleteQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11deleteQueryyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteSampler", + "printedName": "deleteSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteSampler:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13deleteSampleryys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteSync", + "printedName": "deleteSync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteSync:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10deleteSyncyys13OpaquePointerVF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteTransformFeedback", + "printedName": "deleteTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23deleteTransformFeedbackyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteVertexArray", + "printedName": "deleteVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17deleteVertexArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawArraysInstanced", + "printedName": "drawArraysInstanced(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawArraysInstanced::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19drawArraysInstancedyys6UInt32V_s5Int32VA2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElementsInstanced", + "printedName": "drawElementsInstanced(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawElementsInstanced:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21drawElementsInstancedyys6UInt32V_s5Int32VAFSiAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawRangeElements", + "printedName": "drawRangeElements(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawRangeElements::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17drawRangeElementsyys6UInt32V_A2Fs5Int32VAFSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawBuffers", + "printedName": "drawBuffers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawBuffers:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11drawBuffersyySays6UInt32VGF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endQuery", + "printedName": "endQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)endQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8endQueryyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endTransformFeedback", + "printedName": "endTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)endTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20endTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fenceSync", + "printedName": "fenceSync(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)fenceSync::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9fenceSyncyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferTextureLayer", + "printedName": "framebufferTextureLayer(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)framebufferTextureLayer:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23framebufferTextureLayeryys6UInt32V_A2Fs5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniformBlockName", + "printedName": "getActiveUniformBlockName(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniformBlockName::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25getActiveUniformBlockNameySSs6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniformBlockParameter", + "printedName": "getActiveUniformBlockParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniformBlockParameter:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30getActiveUniformBlockParameteryyps6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniforms", + "printedName": "getActiveUniforms(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniforms:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getActiveUniformsyyps6UInt32V_SayAFGAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferSubData", + "printedName": "getBufferSubData(_:_:_:size:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getBufferSubData:::size:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getBufferSubData___4size__ys6UInt32V_SiSvSis5Int32VAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferSubData", + "printedName": "getBufferSubData(_:_:_:size:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getBufferSubData:::size:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getBufferSubData___4size__6offsetys6UInt32V_SiSvSis5Int32VAJSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFragDataLocation", + "printedName": "getFragDataLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getFragDataLocation::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getFragDataLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIndexedParameter", + "printedName": "getIndexedParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getIndexedParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getIndexedParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInternalformatParameter", + "printedName": "getInternalformatParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getInternalformatParameter:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26getInternalformatParameteryyps6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameter", + "printedName": "getParameter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getParameter:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12getParameteryypSgs6UInt32VF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "getParameter:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQuery", + "printedName": "getQuery(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getQuery::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8getQueryyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameter", + "printedName": "getQueryParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getQueryParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getQueryParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSamplerParameter", + "printedName": "getSamplerParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getSamplerParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getSamplerParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSyncParameter", + "printedName": "getSyncParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getSyncParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getSyncParameteryyps13OpaquePointerV_s6UInt32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTransformFeedbackVarying", + "printedName": "getTransformFeedbackVarying(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getTransformFeedbackVarying::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27getTransformFeedbackVaryingyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformBlockIndex", + "printedName": "getUniformBlockIndex(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getUniformBlockIndex::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20getUniformBlockIndexys6UInt32VAF_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformIndices", + "printedName": "getUniformIndices(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getUniformIndices::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getUniformIndicesySays6UInt32VGAF_SaySSGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidateFramebuffer", + "printedName": "invalidateFramebuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)invalidateFramebuffer::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21invalidateFramebufferyys6UInt32V_SayAFGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidateSubFramebuffer", + "printedName": "invalidateSubFramebuffer(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)invalidateSubFramebuffer::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24invalidateSubFramebufferyys6UInt32V_SayAFGs5Int32VA3ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isQuery", + "printedName": "isQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7isQueryySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSampler", + "printedName": "isSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isSampler:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9isSamplerySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSync", + "printedName": "isSync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isSync:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6isSyncySbs13OpaquePointerVF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isTransformFeedback", + "printedName": "isTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19isTransformFeedbackySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isVertexArray", + "printedName": "isVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13isVertexArrayySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pauseTransformFeedback", + "printedName": "pauseTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)pauseTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22pauseTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readBuffer", + "printedName": "readBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)readBuffer:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10readBufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "renderbufferStorageMultisample", + "printedName": "renderbufferStorageMultisample(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)renderbufferStorageMultisample:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30renderbufferStorageMultisampleyys6UInt32V_s5Int32VAf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resumeTransformFeedback", + "printedName": "resumeTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)resumeTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23resumeTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "samplerParameteri", + "printedName": "samplerParameteri(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)samplerParameteri:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17samplerParameteriyys6UInt32V_AFs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "samplerParameterf", + "printedName": "samplerParameterf(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)samplerParameterf:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17samplerParameterfyys6UInt32V_AFSftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::data:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________4datays6UInt32V_s5Int32VA5i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6offsetys6UInt32V_s5Int32VA5i2GSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::pixels:size:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6pixels4sizeys6UInt32V_s5Int32VA5j2HSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:pixels:size:pixelOffset:srcOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::pixels:size:pixelOffset:srcOffset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6pixels4size11pixelOffset03srcL0ys6UInt32V_s5Int32VA5l2JSVS2iALtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2i8ys6UInt32V_s5Int32VA5i2GSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2u8ys6UInt32V_s5Int32VA5i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i16ys6UInt32V_s5Int32VA5i2GSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u16ys6UInt32V_s5Int32VA5i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i32ys6UInt32V_s5Int32VA5i2GSayAIGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u32ys6UInt32V_s5Int32VA5i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f32ys6UInt32V_s5Int32VA5i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f64:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f64ys6UInt32V_s5Int32VA5i2GSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2i8_ys6UInt32V_s5Int32VA5i2GSays4Int8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2u8_ys6UInt32V_s5Int32VA5i2GSays5UInt8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i16_ys6UInt32V_s5Int32VA5i2GSays5Int16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u16_ys6UInt32V_s5Int32VA5i2GSays6UInt16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i32_ys6UInt32V_s5Int32VA5i2GSayAIGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u32_ys6UInt32V_s5Int32VA5i2GSayAGGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f32_ys6UInt32V_s5Int32VA5i2GSaySfGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f64::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f64_ys6UInt32V_s5Int32VA5i2GSaySdGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:source:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::source:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6sourceys6UInt32V_s5Int32VA5i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::asset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________5assetys6UInt32V_s5Int32VA5i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::bitmap:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6bitmapys6UInt32V_s5Int32VA5i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::canvas:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6canvasys6UInt32V_s5Int32VA5i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texStorage2D", + "printedName": "texStorage2D(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texStorage2D:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12texStorage2Dyys6UInt32V_s5Int32VAf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texStorage3D", + "printedName": "texStorage3D(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texStorage3D::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12texStorage3Dyys6UInt32V_s5Int32VAf3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::data:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________4datays6UInt32V_s5Int32VA6i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6offsetys6UInt32V_s5Int32VA6i2gItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2i8ys6UInt32V_s5Int32VA6i2GSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2u8ys6UInt32V_s5Int32VA6i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i16ys6UInt32V_s5Int32VA6i2GSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u16ys6UInt32V_s5Int32VA6i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i32ys6UInt32V_s5Int32VA6i2GSayAIGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u32ys6UInt32V_s5Int32VA6i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f32ys6UInt32V_s5Int32VA6i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f64:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f64ys6UInt32V_s5Int32VA6i2GSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2i8_ys6UInt32V_s5Int32VA6i2GSays4Int8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2u8_ys6UInt32V_s5Int32VA6i2GSays5UInt8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i16_ys6UInt32V_s5Int32VA6i2GSays5Int16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u16_ys6UInt32V_s5Int32VA6i2GSays6UInt16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i32_ys6UInt32V_s5Int32VA6i2GSayAIGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u32_ys6UInt32V_s5Int32VA6i2GSayAGGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f32_ys6UInt32V_s5Int32VA6i2GSaySfGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f64::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f64_ys6UInt32V_s5Int32VA6i2GSaySdGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:srcData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::srcData:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________7srcDatays6UInt32V_s5Int32VA6i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::canvas:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6canvasys6UInt32V_s5Int32VA6i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::asset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________5assetys6UInt32V_s5Int32VA6i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::bitmap:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6bitmapys6UInt32V_s5Int32VA6i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformFeedbackVaryings", + "printedName": "transformFeedbackVaryings(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)transformFeedbackVaryings:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25transformFeedbackVaryingsyys6UInt32V_SaySSGAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1ui", + "printedName": "uniform1ui(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1ui::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform1uiyys5Int32V_s6UInt32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2ui", + "printedName": "uniform2ui(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2ui:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform2uiyys5Int32V_s6UInt32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3ui", + "printedName": "uniform3ui(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3ui::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform3uiyys5Int32V_s6UInt32VA2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4ui", + "printedName": "uniform4ui(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4ui:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform4uiyys5Int32V_s6UInt32VA3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1uiv", + "printedName": "uniform1uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform1uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1uiv", + "printedName": "uniform1uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform1uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2uiv", + "printedName": "uniform2uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform2uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2uiv", + "printedName": "uniform2uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform2uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3uiv", + "printedName": "uniform3uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform3uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3uiv", + "printedName": "uniform3uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform3uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4uiv", + "printedName": "uniform4uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform4uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4uiv", + "printedName": "uniform4uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform4uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformBlockBinding", + "printedName": "uniformBlockBinding(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformBlockBinding:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19uniformBlockBindingyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x2fv", + "printedName": "uniformMatrix3x2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x2fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x2fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x2fv", + "printedName": "uniformMatrix3x2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x2fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x2fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x2fv", + "printedName": "uniformMatrix4x2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x2fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x2fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x2fv", + "printedName": "uniformMatrix4x2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x2fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x2fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x3fv", + "printedName": "uniformMatrix2x3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x3fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x3fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x3fv", + "printedName": "uniformMatrix2x3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x3fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x3fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x3fv", + "printedName": "uniformMatrix4x3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x3fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x3fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x3fv", + "printedName": "uniformMatrix4x3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x3fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x3fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x4fv", + "printedName": "uniformMatrix2x4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x4fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x4fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x4fv", + "printedName": "uniformMatrix2x4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x4fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x4fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x4fv", + "printedName": "uniformMatrix3x4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x4fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x4fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x4fv", + "printedName": "uniformMatrix3x4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x4fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x4fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribDivisor", + "printedName": "vertexAttribDivisor(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribDivisor::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19vertexAttribDivisoryys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4i", + "printedName": "vertexAttribI4i(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4i:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15vertexAttribI4iyys6UInt32V_s5Int32VA3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4ui", + "printedName": "vertexAttribI4ui(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4ui:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4uiyys6UInt32V_A4FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4iv", + "printedName": "vertexAttribI4iv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4iv::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4ivyys6UInt32V_SVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4iv", + "printedName": "vertexAttribI4iv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4iv::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4iv__6offsetys6UInt32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4uiv", + "printedName": "vertexAttribI4uiv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4uiv::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17vertexAttribI4uivyys6UInt32V_SVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4uiv", + "printedName": "vertexAttribI4uiv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4uiv::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17vertexAttribI4uiv__6offsetys6UInt32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "READ_BUFFER", + "printedName": "READ_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11READ_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11READ_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_ROW_LENGTH", + "printedName": "UNPACK_ROW_LENGTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNPACK_ROW_LENGTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNPACK_ROW_LENGTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_ROWS", + "printedName": "UNPACK_SKIP_ROWS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16UNPACK_SKIP_ROWSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16UNPACK_SKIP_ROWSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_PIXELS", + "printedName": "UNPACK_SKIP_PIXELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_PIXELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_PIXELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_ROW_LENGTH", + "printedName": "PACK_ROW_LENGTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15PACK_ROW_LENGTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15PACK_ROW_LENGTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_SKIP_ROWS", + "printedName": "PACK_SKIP_ROWS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14PACK_SKIP_ROWSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14PACK_SKIP_ROWSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_SKIP_PIXELS", + "printedName": "PACK_SKIP_PIXELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16PACK_SKIP_PIXELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16PACK_SKIP_PIXELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_3D", + "printedName": "TEXTURE_BINDING_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BINDING_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BINDING_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BINDING_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BINDING_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_IMAGES", + "printedName": "UNPACK_SKIP_IMAGES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_IMAGES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_IMAGESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_IMAGES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_IMAGESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_IMAGE_HEIGHT", + "printedName": "UNPACK_IMAGE_HEIGHT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_IMAGE_HEIGHT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNPACK_IMAGE_HEIGHTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_IMAGE_HEIGHT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNPACK_IMAGE_HEIGHTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_3D_TEXTURE_SIZE", + "printedName": "MAX_3D_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_3D_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19MAX_3D_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_3D_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19MAX_3D_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENTS_VERTICES", + "printedName": "MAX_ELEMENTS_VERTICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENTS_VERTICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_ELEMENTS_VERTICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENTS_VERTICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_ELEMENTS_VERTICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENTS_INDICES", + "printedName": "MAX_ELEMENTS_INDICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENTS_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_ELEMENTS_INDICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENTS_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_ELEMENTS_INDICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_LOD_BIAS", + "printedName": "MAX_TEXTURE_LOD_BIAS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TEXTURE_LOD_BIAS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_TEXTURE_LOD_BIASs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TEXTURE_LOD_BIAS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_TEXTURE_LOD_BIASs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_COMPONENTS", + "printedName": "MAX_FRAGMENT_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31MAX_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31MAX_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_COMPONENTS", + "printedName": "MAX_VERTEX_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ARRAY_TEXTURE_LAYERS", + "printedName": "MAX_ARRAY_TEXTURE_LAYERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ARRAY_TEXTURE_LAYERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_ARRAY_TEXTURE_LAYERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ARRAY_TEXTURE_LAYERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_ARRAY_TEXTURE_LAYERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIN_PROGRAM_TEXEL_OFFSET", + "printedName": "MIN_PROGRAM_TEXEL_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MIN_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MIN_PROGRAM_TEXEL_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MIN_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MIN_PROGRAM_TEXEL_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_PROGRAM_TEXEL_OFFSET", + "printedName": "MAX_PROGRAM_TEXEL_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_PROGRAM_TEXEL_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_PROGRAM_TEXEL_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VARYING_COMPONENTS", + "printedName": "MAX_VARYING_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VARYING_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_VARYING_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VARYING_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_VARYING_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAGMENT_SHADER_DERIVATIVE_HINT", + "printedName": "FRAGMENT_SHADER_DERIVATIVE_HINT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAGMENT_SHADER_DERIVATIVE_HINT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAGMENT_SHADER_DERIVATIVE_HINTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAGMENT_SHADER_DERIVATIVE_HINT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAGMENT_SHADER_DERIVATIVE_HINTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RASTERIZER_DISCARD", + "printedName": "RASTERIZER_DISCARD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RASTERIZER_DISCARD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18RASTERIZER_DISCARDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RASTERIZER_DISCARD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18RASTERIZER_DISCARDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ARRAY_BINDING", + "printedName": "VERTEX_ARRAY_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ARRAY_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20VERTEX_ARRAY_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ARRAY_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20VERTEX_ARRAY_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_OUTPUT_COMPONENTS", + "printedName": "MAX_VERTEX_OUTPUT_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_OUTPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28MAX_VERTEX_OUTPUT_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_OUTPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28MAX_VERTEX_OUTPUT_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_INPUT_COMPONENTS", + "printedName": "MAX_FRAGMENT_INPUT_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_INPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_FRAGMENT_INPUT_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_INPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_FRAGMENT_INPUT_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_SERVER_WAIT_TIMEOUT", + "printedName": "MAX_SERVER_WAIT_TIMEOUT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_SERVER_WAIT_TIMEOUT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23MAX_SERVER_WAIT_TIMEOUTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_SERVER_WAIT_TIMEOUT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23MAX_SERVER_WAIT_TIMEOUTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENT_INDEX", + "printedName": "MAX_ELEMENT_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENT_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17MAX_ELEMENT_INDEXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENT_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17MAX_ELEMENT_INDEXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED", + "printedName": "RED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3REDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3REDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8", + "printedName": "RGB8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RGB8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RGB8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8", + "printedName": "RGBA8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGBA8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGBA8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB10_A2", + "printedName": "RGB10_A2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB10_A2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGB10_A2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB10_A2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGB10_A2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_3D", + "printedName": "TEXTURE_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10TEXTURE_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10TEXTURE_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_R", + "printedName": "TEXTURE_WRAP_R", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_WRAP_R", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14TEXTURE_WRAP_Rs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_WRAP_R", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14TEXTURE_WRAP_Rs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MIN_LOD", + "printedName": "TEXTURE_MIN_LOD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MIN_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MIN_LODs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MIN_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MIN_LODs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_LOD", + "printedName": "TEXTURE_MAX_LOD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MAX_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MAX_LODs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MAX_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MAX_LODs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BASE_LEVEL", + "printedName": "TEXTURE_BASE_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BASE_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BASE_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BASE_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BASE_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_LEVEL", + "printedName": "TEXTURE_MAX_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MAX_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17TEXTURE_MAX_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MAX_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17TEXTURE_MAX_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_COMPARE_MODE", + "printedName": "TEXTURE_COMPARE_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_COMPARE_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_COMPARE_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_COMPARE_FUNC", + "printedName": "TEXTURE_COMPARE_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_COMPARE_FUNC", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_COMPARE_FUNC", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB", + "printedName": "SRGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4SRGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4SRGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8", + "printedName": "SRGB8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5SRGB8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5SRGB8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8_ALPHA8", + "printedName": "SRGB8_ALPHA8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB8_ALPHA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12SRGB8_ALPHA8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB8_ALPHA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12SRGB8_ALPHA8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPARE_REF_TO_TEXTURE", + "printedName": "COMPARE_REF_TO_TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COMPARE_REF_TO_TEXTURE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22COMPARE_REF_TO_TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COMPARE_REF_TO_TEXTURE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22COMPARE_REF_TO_TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32F", + "printedName": "RGBA32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32F", + "printedName": "RGB32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16F", + "printedName": "RGBA16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F", + "printedName": "RGB16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_2D_ARRAY", + "printedName": "TEXTURE_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16TEXTURE_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16TEXTURE_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_2D_ARRAY", + "printedName": "TEXTURE_BINDING_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BINDING_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_BINDING_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BINDING_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_BINDING_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R11F_G11F_B10F", + "printedName": "R11F_G11F_B10F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14R11F_G11F_B10Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14R11F_G11F_B10Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB9_E5", + "printedName": "RGB9_E5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB9_E5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB9_E5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB9_E5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB9_E5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32UI", + "printedName": "RGBA32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32UI", + "printedName": "RGB32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16UI", + "printedName": "RGBA16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16UI", + "printedName": "RGB16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8UI", + "printedName": "RGBA8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8UI", + "printedName": "RGB8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32I", + "printedName": "RGBA32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32I", + "printedName": "RGB32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16I", + "printedName": "RGBA16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16I", + "printedName": "RGB16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8I", + "printedName": "RGBA8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGBA8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGBA8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8I", + "printedName": "RGB8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGB8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGB8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED_INTEGER", + "printedName": "RED_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RED_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RED_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RED_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RED_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB_INTEGER", + "printedName": "RGB_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGB_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGB_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA_INTEGER", + "printedName": "RGBA_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12RGBA_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12RGBA_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8", + "printedName": "R8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2R8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2R8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8", + "printedName": "RG8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3RG8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3RG8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16F", + "printedName": "R16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32F", + "printedName": "R32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16F", + "printedName": "RG16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32F", + "printedName": "RG32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8I", + "printedName": "R8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3R8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3R8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8UI", + "printedName": "R8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16I", + "printedName": "R16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16UI", + "printedName": "R16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32I", + "printedName": "R32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32UI", + "printedName": "R32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8I", + "printedName": "RG8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RG8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RG8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8UI", + "printedName": "RG8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16I", + "printedName": "RG16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16UI", + "printedName": "RG16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32I", + "printedName": "RG32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32UI", + "printedName": "RG32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8_SNORM", + "printedName": "R8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8R8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8R8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8_SNORM", + "printedName": "RG8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9RG8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9RG8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8_SNORM", + "printedName": "RGB8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8_SNORM", + "printedName": "RGBA8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGBA8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGBA8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB10_A2UI", + "printedName": "RGB10_A2UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB10_A2UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB10_A2UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB10_A2UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB10_A2UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_IMMUTABLE_FORMAT", + "printedName": "TEXTURE_IMMUTABLE_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_IMMUTABLE_FORMAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_IMMUTABLE_FORMAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_IMMUTABLE_LEVELS", + "printedName": "TEXTURE_IMMUTABLE_LEVELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_IMMUTABLE_LEVELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_LEVELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_IMMUTABLE_LEVELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_LEVELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_2_10_10_10_REV", + "printedName": "UNSIGNED_INT_2_10_10_10_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27UNSIGNED_INT_2_10_10_10_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27UNSIGNED_INT_2_10_10_10_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_10F_11F_11F_REV", + "printedName": "UNSIGNED_INT_10F_11F_11F_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_10F_11F_11F_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28UNSIGNED_INT_10F_11F_11F_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_10F_11F_11F_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28UNSIGNED_INT_10F_11F_11F_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_5_9_9_9_REV", + "printedName": "UNSIGNED_INT_5_9_9_9_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_5_9_9_9_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24UNSIGNED_INT_5_9_9_9_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_5_9_9_9_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24UNSIGNED_INT_5_9_9_9_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_32_UNSIGNED_INT_24_8_REV", + "printedName": "FLOAT_32_UNSIGNED_INT_24_8_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_32_UNSIGNED_INT_24_8_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30FLOAT_32_UNSIGNED_INT_24_8_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_32_UNSIGNED_INT_24_8_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30FLOAT_32_UNSIGNED_INT_24_8_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_24_8", + "printedName": "UNSIGNED_INT_24_8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_24_8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_24_8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_24_8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_24_8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HALF_FLOAT", + "printedName": "HALF_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)HALF_FLOAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10HALF_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)HALF_FLOAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10HALF_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG", + "printedName": "RG", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2RGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2RGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG_INTEGER", + "printedName": "RG_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RG_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RG_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_2_10_10_10_REV", + "printedName": "INT_2_10_10_10_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18INT_2_10_10_10_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18INT_2_10_10_10_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "QUERY_RESULT_AVAILABLE", + "printedName": "QUERY_RESULT_AVAILABLE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)QUERY_RESULT_AVAILABLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22QUERY_RESULT_AVAILABLEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)QUERY_RESULT_AVAILABLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22QUERY_RESULT_AVAILABLEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "QUERY_RESULT", + "printedName": "QUERY_RESULT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)QUERY_RESULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12QUERY_RESULTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)QUERY_RESULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12QUERY_RESULTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_QUERY", + "printedName": "CURRENT_QUERY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)CURRENT_QUERY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13CURRENT_QUERYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)CURRENT_QUERY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13CURRENT_QUERYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ANY_SAMPLES_PASSED", + "printedName": "ANY_SAMPLES_PASSED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ANY_SAMPLES_PASSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18ANY_SAMPLES_PASSEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ANY_SAMPLES_PASSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18ANY_SAMPLES_PASSEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ANY_SAMPLES_PASSED_CONSERVATIVE", + "printedName": "ANY_SAMPLES_PASSED_CONSERVATIVE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ANY_SAMPLES_PASSED_CONSERVATIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31ANY_SAMPLES_PASSED_CONSERVATIVEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ANY_SAMPLES_PASSED_CONSERVATIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31ANY_SAMPLES_PASSED_CONSERVATIVEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_DRAW_BUFFERS", + "printedName": "MAX_DRAW_BUFFERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_DRAW_BUFFERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16MAX_DRAW_BUFFERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_DRAW_BUFFERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16MAX_DRAW_BUFFERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER0", + "printedName": "DRAW_BUFFER0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER0", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER0", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER1", + "printedName": "DRAW_BUFFER1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER2", + "printedName": "DRAW_BUFFER2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER3", + "printedName": "DRAW_BUFFER3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER4", + "printedName": "DRAW_BUFFER4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER5", + "printedName": "DRAW_BUFFER5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER6", + "printedName": "DRAW_BUFFER6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER7", + "printedName": "DRAW_BUFFER7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER8", + "printedName": "DRAW_BUFFER8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER9", + "printedName": "DRAW_BUFFER9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER10", + "printedName": "DRAW_BUFFER10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER11", + "printedName": "DRAW_BUFFER11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER12", + "printedName": "DRAW_BUFFER12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER13", + "printedName": "DRAW_BUFFER13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER14", + "printedName": "DRAW_BUFFER14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER15", + "printedName": "DRAW_BUFFER15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COLOR_ATTACHMENTS", + "printedName": "MAX_COLOR_ATTACHMENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COLOR_ATTACHMENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_COLOR_ATTACHMENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COLOR_ATTACHMENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_COLOR_ATTACHMENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT1", + "printedName": "COLOR_ATTACHMENT1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT2", + "printedName": "COLOR_ATTACHMENT2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT3", + "printedName": "COLOR_ATTACHMENT3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT4", + "printedName": "COLOR_ATTACHMENT4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT5", + "printedName": "COLOR_ATTACHMENT5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT6", + "printedName": "COLOR_ATTACHMENT6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT7", + "printedName": "COLOR_ATTACHMENT7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT8", + "printedName": "COLOR_ATTACHMENT8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT9", + "printedName": "COLOR_ATTACHMENT9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT10", + "printedName": "COLOR_ATTACHMENT10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT11", + "printedName": "COLOR_ATTACHMENT11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT12", + "printedName": "COLOR_ATTACHMENT12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT13", + "printedName": "COLOR_ATTACHMENT13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT14", + "printedName": "COLOR_ATTACHMENT14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT15", + "printedName": "COLOR_ATTACHMENT15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_3D", + "printedName": "SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_SHADOW", + "printedName": "SAMPLER_2D_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SAMPLER_2D_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SAMPLER_2D_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_ARRAY", + "printedName": "SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_ARRAY_SHADOW", + "printedName": "SAMPLER_2D_ARRAY_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_ARRAY_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SAMPLER_2D_ARRAY_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_ARRAY_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SAMPLER_2D_ARRAY_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_CUBE_SHADOW", + "printedName": "SAMPLER_CUBE_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_CUBE_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19SAMPLER_CUBE_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_CUBE_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19SAMPLER_CUBE_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_2D", + "printedName": "INT_SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_3D", + "printedName": "INT_SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_CUBE", + "printedName": "INT_SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16INT_SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16INT_SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_2D_ARRAY", + "printedName": "INT_SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20INT_SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20INT_SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_2D", + "printedName": "UNSIGNED_INT_SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_3D", + "printedName": "UNSIGNED_INT_SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_CUBE", + "printedName": "UNSIGNED_INT_SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25UNSIGNED_INT_SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25UNSIGNED_INT_SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_2D_ARRAY", + "printedName": "UNSIGNED_INT_SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNSIGNED_INT_SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNSIGNED_INT_SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_SAMPLES", + "printedName": "MAX_SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11MAX_SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11MAX_SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_BINDING", + "printedName": "SAMPLER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15SAMPLER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15SAMPLER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_PACK_BUFFER", + "printedName": "PIXEL_PACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_PACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17PIXEL_PACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_PACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17PIXEL_PACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_UNPACK_BUFFER", + "printedName": "PIXEL_UNPACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_UNPACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19PIXEL_UNPACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_UNPACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19PIXEL_UNPACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_PACK_BUFFER_BINDING", + "printedName": "PIXEL_PACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_PACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25PIXEL_PACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_PACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25PIXEL_PACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_UNPACK_BUFFER_BINDING", + "printedName": "PIXEL_UNPACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_UNPACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27PIXEL_UNPACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_UNPACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27PIXEL_UNPACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_READ_BUFFER", + "printedName": "COPY_READ_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16COPY_READ_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16COPY_READ_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_WRITE_BUFFER", + "printedName": "COPY_WRITE_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_WRITE_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COPY_WRITE_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_WRITE_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COPY_WRITE_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_READ_BUFFER_BINDING", + "printedName": "COPY_READ_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_READ_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24COPY_READ_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_READ_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24COPY_READ_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_WRITE_BUFFER_BINDING", + "printedName": "COPY_WRITE_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_WRITE_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25COPY_WRITE_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_WRITE_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25COPY_WRITE_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2x3", + "printedName": "FLOAT_MAT2x3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT2x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT2x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2x4", + "printedName": "FLOAT_MAT2x4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT2x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT2x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3x2", + "printedName": "FLOAT_MAT3x2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT3x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT3x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3x4", + "printedName": "FLOAT_MAT3x4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT3x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT3x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4x2", + "printedName": "FLOAT_MAT4x2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT4x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT4x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4x3", + "printedName": "FLOAT_MAT4x3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT4x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT4x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC2", + "printedName": "UNSIGNED_INT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC3", + "printedName": "UNSIGNED_INT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC4", + "printedName": "UNSIGNED_INT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED", + "printedName": "UNSIGNED_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNSIGNED_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNSIGNED_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SIGNED_NORMALIZED", + "printedName": "SIGNED_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SIGNED_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SIGNED_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_INTEGER", + "printedName": "VERTEX_ATTRIB_ARRAY_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ATTRIB_ARRAY_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ATTRIB_ARRAY_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_DIVISOR", + "printedName": "VERTEX_ATTRIB_ARRAY_DIVISOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ATTRIB_ARRAY_DIVISOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_DIVISORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ATTRIB_ARRAY_DIVISOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_DIVISORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_MODE", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "printedName": "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC42MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC42MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_VARYINGS", + "printedName": "TRANSFORM_FEEDBACK_VARYINGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_VARYINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27TRANSFORM_FEEDBACK_VARYINGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_VARYINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27TRANSFORM_FEEDBACK_VARYINGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_START", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_START", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31TRANSFORM_FEEDBACK_BUFFER_STARTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31TRANSFORM_FEEDBACK_BUFFER_STARTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_SIZE", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "printedName": "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37TRANSFORM_FEEDBACK_PRIMITIVES_WRITTENs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37TRANSFORM_FEEDBACK_PRIMITIVES_WRITTENs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "printedName": "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC45MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC45MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "printedName": "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC39MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC39MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INTERLEAVED_ATTRIBS", + "printedName": "INTERLEAVED_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INTERLEAVED_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19INTERLEAVED_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INTERLEAVED_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19INTERLEAVED_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SEPARATE_ATTRIBS", + "printedName": "SEPARATE_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SEPARATE_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SEPARATE_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER", + "printedName": "TRANSFORM_FEEDBACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_BINDING", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33TRANSFORM_FEEDBACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33TRANSFORM_FEEDBACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK", + "printedName": "TRANSFORM_FEEDBACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TRANSFORM_FEEDBACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TRANSFORM_FEEDBACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_PAUSED", + "printedName": "TRANSFORM_FEEDBACK_PAUSED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_PAUSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_PAUSEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_PAUSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_PAUSEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_ACTIVE", + "printedName": "TRANSFORM_FEEDBACK_ACTIVE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_ACTIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_ACTIVEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_ACTIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_ACTIVEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BINDING", + "printedName": "TRANSFORM_FEEDBACK_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26TRANSFORM_FEEDBACK_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26TRANSFORM_FEEDBACK_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "printedName": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COLOR_ENCODINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COLOR_ENCODINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAMEBUFFER_ATTACHMENT_RED_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAMEBUFFER_ATTACHMENT_RED_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_GREEN_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_GREEN_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC32FRAMEBUFFER_ATTACHMENT_BLUE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC32FRAMEBUFFER_ATTACHMENT_BLUE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_ALPHA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_ALPHA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_DEPTH_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_DEPTH_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC35FRAMEBUFFER_ATTACHMENT_STENCIL_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC35FRAMEBUFFER_ATTACHMENT_STENCIL_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_DEFAULT", + "printedName": "FRAMEBUFFER_DEFAULT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_DEFAULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19FRAMEBUFFER_DEFAULTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_DEFAULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19FRAMEBUFFER_DEFAULTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL_ATTACHMENT", + "printedName": "DEPTH_STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL_ATTACHMENT", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL_ATTACHMENT", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL", + "printedName": "DEPTH_STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DEPTH_STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DEPTH_STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH24_STENCIL8", + "printedName": "DEPTH24_STENCIL8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH24_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DEPTH24_STENCIL8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH24_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DEPTH24_STENCIL8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_FRAMEBUFFER_BINDING", + "printedName": "DRAW_FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DRAW_FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DRAW_FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "READ_FRAMEBUFFER", + "printedName": "READ_FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16READ_FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16READ_FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_FRAMEBUFFER", + "printedName": "DRAW_FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DRAW_FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DRAW_FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "READ_FRAMEBUFFER_BINDING", + "printedName": "READ_FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24READ_FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24READ_FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_SAMPLES", + "printedName": "RENDERBUFFER_SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RENDERBUFFER_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20RENDERBUFFER_SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RENDERBUFFER_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20RENDERBUFFER_SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "printedName": "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC34FRAMEBUFFER_INCOMPLETE_MULTISAMPLEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC34FRAMEBUFFER_INCOMPLETE_MULTISAMPLEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER", + "printedName": "UNIFORM_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_BINDING", + "printedName": "UNIFORM_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22UNIFORM_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22UNIFORM_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_START", + "printedName": "UNIFORM_BUFFER_START", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_BUFFER_STARTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_BUFFER_STARTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_SIZE", + "printedName": "UNIFORM_BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_BLOCKS", + "printedName": "MAX_VERTEX_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25MAX_VERTEX_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25MAX_VERTEX_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_BLOCKS", + "printedName": "MAX_FRAGMENT_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_FRAGMENT_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_FRAGMENT_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_UNIFORM_BLOCKS", + "printedName": "MAX_COMBINED_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_COMBINED_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_COMBINED_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_UNIFORM_BUFFER_BINDINGS", + "printedName": "MAX_UNIFORM_BUFFER_BINDINGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_UNIFORM_BUFFER_BINDINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_UNIFORM_BUFFER_BINDINGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_UNIFORM_BUFFER_BINDINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_UNIFORM_BUFFER_BINDINGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_UNIFORM_BLOCK_SIZE", + "printedName": "MAX_UNIFORM_BLOCK_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_UNIFORM_BLOCK_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_UNIFORM_BLOCK_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_UNIFORM_BLOCK_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_UNIFORM_BLOCK_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "printedName": "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC38MAX_COMBINED_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC38MAX_COMBINED_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "printedName": "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC40MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC40MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "printedName": "UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31UNIFORM_BUFFER_OFFSET_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31UNIFORM_BUFFER_OFFSET_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_UNIFORM_BLOCKS", + "printedName": "ACTIVE_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ACTIVE_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21ACTIVE_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ACTIVE_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21ACTIVE_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_TYPE", + "printedName": "UNIFORM_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_SIZE", + "printedName": "UNIFORM_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_INDEX", + "printedName": "UNIFORM_BLOCK_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BLOCK_INDEXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BLOCK_INDEXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_OFFSET", + "printedName": "UNIFORM_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_ARRAY_STRIDE", + "printedName": "UNIFORM_ARRAY_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_ARRAY_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_ARRAY_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_MATRIX_STRIDE", + "printedName": "UNIFORM_MATRIX_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_MATRIX_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_MATRIX_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_MATRIX_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_MATRIX_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_IS_ROW_MAJOR", + "printedName": "UNIFORM_IS_ROW_MAJOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_IS_ROW_MAJOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_IS_ROW_MAJORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_IS_ROW_MAJOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_IS_ROW_MAJORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_BINDING", + "printedName": "UNIFORM_BLOCK_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_BLOCK_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_BLOCK_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_DATA_SIZE", + "printedName": "UNIFORM_BLOCK_DATA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_DATA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNIFORM_BLOCK_DATA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_DATA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNIFORM_BLOCK_DATA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "printedName": "UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNIFORM_BLOCK_ACTIVE_UNIFORMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNIFORM_BLOCK_ACTIVE_UNIFORMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "printedName": "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC021UNIFORM_BLOCK_ACTIVE_G8_INDICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC021UNIFORM_BLOCK_ACTIVE_G8_INDICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "printedName": "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC41UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC41UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "printedName": "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC43UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC43UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "OBJECT_TYPE", + "printedName": "OBJECT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)OBJECT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11OBJECT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)OBJECT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11OBJECT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_CONDITION", + "printedName": "SYNC_CONDITION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_CONDITION", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14SYNC_CONDITIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_CONDITION", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14SYNC_CONDITIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_STATUS", + "printedName": "SYNC_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_STATUS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11SYNC_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_STATUS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11SYNC_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FLAGS", + "printedName": "SYNC_FLAGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FLAGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FLAGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FLAGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FLAGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FENCE", + "printedName": "SYNC_FENCE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FENCE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FENCEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FENCE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FENCEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_GPU_COMMANDS_COMPLETE", + "printedName": "SYNC_GPU_COMMANDS_COMPLETE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_GPU_COMMANDS_COMPLETE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26SYNC_GPU_COMMANDS_COMPLETEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_GPU_COMMANDS_COMPLETE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26SYNC_GPU_COMMANDS_COMPLETEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNALED", + "printedName": "UNSIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10UNSIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10UNSIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SIGNALED", + "printedName": "SIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8SIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8SIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALREADY_SIGNALED", + "printedName": "ALREADY_SIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ALREADY_SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16ALREADY_SIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ALREADY_SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16ALREADY_SIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TIMEOUT_EXPIRED", + "printedName": "TIMEOUT_EXPIRED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TIMEOUT_EXPIRED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_EXPIREDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TIMEOUT_EXPIRED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_EXPIREDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONDITION_SATISFIED", + "printedName": "CONDITION_SATISFIED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)CONDITION_SATISFIED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19CONDITION_SATISFIEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)CONDITION_SATISFIED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19CONDITION_SATISFIEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "WAIT_FAILED", + "printedName": "WAIT_FAILED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)WAIT_FAILED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11WAIT_FAILEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)WAIT_FAILED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11WAIT_FAILEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FLUSH_COMMANDS_BIT", + "printedName": "SYNC_FLUSH_COMMANDS_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FLUSH_COMMANDS_BIT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SYNC_FLUSH_COMMANDS_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FLUSH_COMMANDS_BIT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SYNC_FLUSH_COMMANDS_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR", + "printedName": "COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH", + "printedName": "DEPTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5DEPTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5DEPTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL", + "printedName": "STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIN", + "printedName": "MIN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MIN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MINs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MIN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MINs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX", + "printedName": "MAX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MAXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MAXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT24", + "printedName": "DEPTH_COMPONENT24", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_COMPONENT24", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH_COMPONENT24s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_COMPONENT24", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH_COMPONENT24s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_READ", + "printedName": "STREAM_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STREAM_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STREAM_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_COPY", + "printedName": "STREAM_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STREAM_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STREAM_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_READ", + "printedName": "STATIC_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STATIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STATIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_COPY", + "printedName": "STATIC_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STATIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STATIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_READ", + "printedName": "DYNAMIC_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DYNAMIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DYNAMIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_COPY", + "printedName": "DYNAMIC_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DYNAMIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DYNAMIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT32F", + "printedName": "DEPTH_COMPONENT32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_COMPONENT32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18DEPTH_COMPONENT32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_COMPONENT32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18DEPTH_COMPONENT32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH32F_STENCIL8", + "printedName": "DEPTH32F_STENCIL8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH32F_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH32F_STENCIL8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH32F_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH32F_STENCIL8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_INDEX", + "printedName": "INVALID_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INVALID_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13INVALID_INDEXSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INVALID_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13INVALID_INDEXSivg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TIMEOUT_IGNORED", + "printedName": "TIMEOUT_IGNORED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TIMEOUT_IGNORED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_IGNOREDs6UInt64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TIMEOUT_IGNORED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_IGNOREDs6UInt64Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "printedName": "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_CLIENT_WAIT_TIMEOUT_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_CLIENT_WAIT_TIMEOUT_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGL2RenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSWebGLRenderingContext", + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_pvrtc", + "printedName": "TNS_WEBGL_compressed_texture_pvrtc", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_pvrtc", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_pvrtc", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)init", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "printedName": "COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_4BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_4BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "printedName": "COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_4BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_4BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "printedName": "COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_2BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_2BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "printedName": "COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_2BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_2BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_pvrtc", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLineCap", + "printedName": "TNSLineCap", + "children": [ + { + "kind": "Var", + "name": "Butt", + "printedName": "Butt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapButt", + "mangledName": "$s12CanvasNative10TNSLineCapO4ButtyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Round", + "printedName": "Round", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapRound", + "mangledName": "$s12CanvasNative10TNSLineCapO5RoundyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Square", + "printedName": "Square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapSquare", + "mangledName": "$s12CanvasNative10TNSLineCapO6SquareyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10TNSLineCapO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10TNSLineCapO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineCap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10TNSLineCapO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineCap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10TNSLineCapO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative10TNSLineCapO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSLineCap", + "mangledName": "$s12CanvasNative10TNSLineCapO", + "moduleName": "CanvasNative", + "objc_name": "TNSLineCap", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPath2D", + "printedName": "TNSPath2D", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)init", + "mangledName": "$s12CanvasNative9TNSPath2DCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)initWithPath:", + "mangledName": "$s12CanvasNative9TNSPath2DC4pathA2C_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)initWithData:", + "mangledName": "$s12CanvasNative9TNSPath2DC4dataACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addPath", + "printedName": "addPath(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)addPath:", + "mangledName": "$s12CanvasNative9TNSPath2DC7addPathyyACF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addPath", + "printedName": "addPath(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSDOMMatrix?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)addPath::", + "mangledName": "$s12CanvasNative9TNSPath2DC7addPathyyAC_AA12TNSDOMMatrixCSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closePath", + "printedName": "closePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)closePath", + "mangledName": "$s12CanvasNative9TNSPath2DC9closePathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveTo", + "printedName": "moveTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)moveTo::", + "mangledName": "$s12CanvasNative9TNSPath2DC6moveToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineTo", + "printedName": "lineTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)lineTo::", + "mangledName": "$s12CanvasNative9TNSPath2DC6lineToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bezierCurveTo", + "printedName": "bezierCurveTo(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)bezierCurveTo::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC13bezierCurveToyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quadraticCurveTo", + "printedName": "quadraticCurveTo(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)quadraticCurveTo::::", + "mangledName": "$s12CanvasNative9TNSPath2DC16quadraticCurveToyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arc:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC3arcyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arc::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC3arcyySf_S4fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arcTo", + "printedName": "arcTo(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arcTo:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC5arcToyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)ellipse:::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC7ellipseyySf_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)ellipse::::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC7ellipseyySf_S6fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rect", + "printedName": "rect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)rect::::", + "mangledName": "$s12CanvasNative9TNSPath2DC4rectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRect::::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC9roundRectyySf_S7ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRectWithRadii", + "printedName": "roundRectWithRadii(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRectWithRadii:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC18roundRectWithRadiiyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:radii:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRectWithX:y:width:height:radii:", + "mangledName": "$s12CanvasNative9TNSPath2DC9roundRect1x1y5width6height5radiiySf_S3fSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D", + "mangledName": "$s12CanvasNative9TNSPath2DC", + "moduleName": "CanvasNative", + "objc_name": "TNSPath2D", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_half_float", + "printedName": "TNS_OES_texture_half_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_half_float", + "printedName": "CanvasNative.TNS_OES_texture_half_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(im)init", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "HALF_FLOAT_OES", + "printedName": "HALF_FLOAT_OES", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(py)HALF_FLOAT_OES", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC011HALF_FLOAT_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(im)HALF_FLOAT_OES", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC011HALF_FLOAT_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_half_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextDecoder", + "printedName": "TNSTextDecoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDecoder", + "printedName": "CanvasNative.TNSTextDecoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)init", + "mangledName": "$s12CanvasNative14TNSTextDecoderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encoding:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDecoder", + "printedName": "CanvasNative.TNSTextDecoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)initWithEncoding:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(py)encoding", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)encoding", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6bufferSS10Foundation4DataV_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6buffer6offsetSS10Foundation4DataV_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:offset:length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:offset:length:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6buffer6offset6lengthSS10Foundation4DataV_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU8::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2u8_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u8:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU8::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2u8_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBytes:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode5bytesSSSays5UInt8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8SSSays4Int8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16SSSays6UInt16VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16SSSays5Int16VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32SSSays5Int32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32SSSays6UInt32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder", + "mangledName": "$s12CanvasNative14TNSTextDecoderC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextDecoder", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLActiveInfo", + "printedName": "TNSWebGLActiveInfo", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)name", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4nameSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)name", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4nameSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)size", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4sizes5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)size", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4sizes5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)type", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4types6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)type", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4types6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:size:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)initWithName:size:type:", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4name4size4typeACSS_s5Int32Vs6UInt32Vtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)init", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLActiveInfo", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "CoreVideo", + "printedName": "CoreVideo", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSRender", + "printedName": "TNSRender", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender(im)init", + "mangledName": "$s12CanvasNative9TNSRenderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createSurface", + "printedName": "createSurface()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender(im)createSurface", + "mangledName": "$s12CanvasNative9TNSRenderC13createSurfaceyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender", + "mangledName": "$s12CanvasNative9TNSRenderC", + "moduleName": "CanvasNative", + "objc_name": "TNSRender", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSSVG", + "printedName": "TNSSVG", + "children": [ + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "src", + "printedName": "src", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)src", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)src", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setSrc:", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC3srcSSSgvM", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "srcPath", + "printedName": "srcPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)srcPath", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)srcPath", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setSrcPath:", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC7srcPathSSSgvM", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)layoutSubviews", + "mangledName": "$s12CanvasNative6TNSSVGC14layoutSubviewsyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSSVG", + "printedName": "CanvasNative.TNSSVG", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)initWithFrame:", + "mangledName": "$s12CanvasNative6TNSSVGC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)drawRect:", + "mangledName": "$s12CanvasNative6TNSSVGC4drawyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toImage", + "printedName": "toImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)toImage", + "mangledName": "$s12CanvasNative6TNSSVGC7toImageSo7UIImageCSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toData", + "printedName": "toData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSData?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)toData", + "mangledName": "$s12CanvasNative6TNSSVGC6toDataSo6NSDataCSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG", + "mangledName": "$s12CanvasNative6TNSSVGC", + "moduleName": "CanvasNative", + "objc_name": "TNSSVG", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLRenderingContext", + "printedName": "TNSWebGLRenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCyAcA9TNSCanvasCcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCyAcA9TNSCanvasC_SDySSypGtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getCanvas", + "printedName": "getCanvas()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getCanvas", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC03getA0AA9TNSCanvasCyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "drawingBufferWidth", + "printedName": "drawingBufferWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)drawingBufferWidth", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18drawingBufferWidths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawingBufferWidth", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18drawingBufferWidths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferHeight", + "printedName": "drawingBufferHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)drawingBufferHeight", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19drawingBufferHeights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawingBufferHeight", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19drawingBufferHeights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "activeTexture", + "printedName": "activeTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)activeTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13activeTextureyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attachShader", + "printedName": "attachShader(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)attachShader::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12attachShaderyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindAttribLocation", + "printedName": "bindAttribLocation(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindAttribLocation:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18bindAttribLocationyys6UInt32V_AFSStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBuffer", + "printedName": "bindBuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindBuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bindBufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindFramebuffer", + "printedName": "bindFramebuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindFramebuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15bindFramebufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindRenderbuffer", + "printedName": "bindRenderbuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindRenderbuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16bindRenderbufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindTexture", + "printedName": "bindTexture(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindTexture::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11bindTextureyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendColor", + "printedName": "blendColor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendColor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10blendColoryySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendEquation", + "printedName": "blendEquation(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendEquation:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13blendEquationyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendEquationSeparate", + "printedName": "blendEquationSeparate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendEquationSeparate::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21blendEquationSeparateyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendFunc", + "printedName": "blendFunc(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendFunc::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9blendFuncyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendFuncSeparate", + "printedName": "blendFuncSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendFuncSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17blendFuncSeparateyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:size:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:size::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_4size_ys6UInt32V_SiAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG0_ys6UInt32V_So6NSNullCAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i8::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_2i8_ys6UInt32V_Says4Int8VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:size:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData:size::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG04size_ys6UInt32V_SvSiAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:size:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData:size::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG04size_6offsetys6UInt32V_SvSiAISitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u8::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_2u8_ys6UInt32V_Says5UInt8VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i16::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3i16_ys6UInt32V_Says5Int16VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u16::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3u16_ys6UInt32V_Says6UInt16VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3i32_ys6UInt32V_Says5Int32VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3u32_ys6UInt32V_SayAGGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:f32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3f32_ys6UInt32V_SaySfGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:f64::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3f64_ys6UInt32V_SaySdGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubDatayys6UInt32V_SiSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__2i8ys6UInt32V_SiSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:srcData:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::srcData:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__03srcH04sizeys6UInt32V_SiSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:srcData:size:os:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::srcData:size:os:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__03srcH04size2osys6UInt32V_SiSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__2u8ys6UInt32V_SiSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3i16ys6UInt32V_SiSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3u16ys6UInt32V_SiSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3i32ys6UInt32V_SiSays5Int32VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3u32ys6UInt32V_SiSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3f32ys6UInt32V_SiSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::f64:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3f64ys6UInt32V_SiSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFramebufferStatus", + "printedName": "checkFramebufferStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)checkFramebufferStatus:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22checkFramebufferStatusys6UInt32VAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clear:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5clearyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearColor", + "printedName": "clearColor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearColor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10clearColoryySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearDepth", + "printedName": "clearDepth(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearDepth:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10clearDepthyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearStencil", + "printedName": "clearStencil(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearStencil:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12clearStencilyys5Int32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "colorMask", + "printedName": "colorMask(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)colorMask::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9colorMaskyySb_S3btF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "commit", + "printedName": "commit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)commit", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6commityyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compileShader", + "printedName": "compileShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compileShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13compileShaderyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexImage2D", + "printedName": "compressedTexImage2D(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compressedTexImage2D:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20compressedTexImage2Dyys6UInt32V_s5Int32VAf3H10Foundation4DataVSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage2D", + "printedName": "compressedTexSubImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compressedTexSubImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23compressedTexSubImage2Dyys6UInt32V_s5Int32VA4hF10Foundation4DataVSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexImage2D", + "printedName": "copyTexImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)copyTexImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14copyTexImage2Dyys6UInt32V_s5Int32VAf5HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexSubImage2D", + "printedName": "copyTexSubImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)copyTexSubImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17copyTexSubImage2Dyys6UInt32V_s5Int32VA6HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createBuffer", + "printedName": "createBuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createBuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12createBuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFramebuffer", + "printedName": "createFramebuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createFramebuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17createFramebuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createProgram", + "printedName": "createProgram()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createProgram", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13createPrograms6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRenderbuffer", + "printedName": "createRenderbuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createRenderbuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18createRenderbuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createShader", + "printedName": "createShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12createShaderys6UInt32VAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTexture", + "printedName": "createTexture()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createTexture", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13createTextures6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cullFace", + "printedName": "cullFace(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)cullFace:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8cullFaceyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteBuffer", + "printedName": "deleteBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteBuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12deleteBufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteFramebuffer", + "printedName": "deleteFramebuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteFramebuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17deleteFramebufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteProgram", + "printedName": "deleteProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13deleteProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteRenderbuffer", + "printedName": "deleteRenderbuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteRenderbuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18deleteRenderbufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteShader", + "printedName": "deleteShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12deleteShaderyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteTexture", + "printedName": "deleteTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13deleteTextureyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthFunc", + "printedName": "depthFunc(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthFunc:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9depthFuncyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthMask", + "printedName": "depthMask(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthMask:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9depthMaskyySbF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthRange", + "printedName": "depthRange(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthRange::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10depthRangeyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "detachShader", + "printedName": "detachShader(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)detachShader::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12detachShaderyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)disable:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7disableyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableVertexAttribArray", + "printedName": "disableVertexAttribArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)disableVertexAttribArray:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24disableVertexAttribArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawArrays", + "printedName": "drawArrays(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawArrays:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10drawArraysyys6UInt32V_s5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElements", + "printedName": "drawElements(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawElements::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12drawElementsyys6UInt32V_s5Int32VAFSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)enable:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6enableyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableVertexAttribArray", + "printedName": "enableVertexAttribArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)enableVertexAttribArray:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23enableVertexAttribArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)finish", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6finishyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)flush", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferRenderbuffer", + "printedName": "framebufferRenderbuffer(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)framebufferRenderbuffer::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23framebufferRenderbufferyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferTexture2D", + "printedName": "framebufferTexture2D(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)framebufferTexture2D:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20framebufferTexture2Dyys6UInt32V_A3Fs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frontFace", + "printedName": "frontFace(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)frontFace:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9frontFaceyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateMipmap", + "printedName": "generateMipmap(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)generateMipmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14generateMipmapyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveAttrib", + "printedName": "getActiveAttrib(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getActiveAttrib::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getActiveAttribyAA0C12GLActiveInfoCs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniform", + "printedName": "getActiveUniform(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getActiveUniform::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16getActiveUniformyAA0C12GLActiveInfoCs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttachedShaders", + "printedName": "getAttachedShaders(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getAttachedShaders:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getAttachedShadersySays6UInt32VGAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttribLocation", + "printedName": "getAttribLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getAttribLocation::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17getAttribLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferParameter", + "printedName": "getBufferParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getBufferParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getBufferParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContextAttributes", + "printedName": "getContextAttributes()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getContextAttributes", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC03getE10AttributesypyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getError", + "printedName": "getError()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getError", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8getErrors6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getExtension", + "printedName": "getExtension(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getExtension:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12getExtensionyypSgSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFramebufferAttachmentParameter", + "printedName": "getFramebufferAttachmentParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getFramebufferAttachmentParameter:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33getFramebufferAttachmentParameteryAA014TNSFramebufferhI0Cs6UInt32V_A2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameter", + "printedName": "getParameter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getParameter:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12getParameteryypSgs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProgramInfoLog", + "printedName": "getProgramInfoLog(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getProgramInfoLog:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17getProgramInfoLogySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProgramParameter", + "printedName": "getProgramParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getProgramParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19getProgramParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRenderbufferParameter", + "printedName": "getRenderbufferParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getRenderbufferParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24getRenderbufferParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderInfoLog", + "printedName": "getShaderInfoLog(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderInfoLog:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16getShaderInfoLogySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderParameter", + "printedName": "getShaderParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getShaderParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderPrecisionFormat", + "printedName": "getShaderPrecisionFormat(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderPrecisionFormat::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24getShaderPrecisionFormatyAA0c8GLShaderhI0Cs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderSource", + "printedName": "getShaderSource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderSource:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getShaderSourceySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSupportedExtensions", + "printedName": "getSupportedExtensions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getSupportedExtensions", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22getSupportedExtensionsSaySSGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTexParameter", + "printedName": "getTexParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getTexParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getTexParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniform", + "printedName": "getUniform(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getUniform::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10getUniformyyps6UInt32V_s5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformLocation", + "printedName": "getUniformLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getUniformLocation::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getUniformLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVertexAttrib", + "printedName": "getVertexAttrib(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getVertexAttrib::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getVertexAttribyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVertexAttribOffset", + "printedName": "getVertexAttribOffset(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getVertexAttribOffset::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21getVertexAttribOffsetySis6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hint", + "printedName": "hint(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)hint::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4hintyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isBuffer", + "printedName": "isBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isBuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8isBufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContextLost", + "printedName": "isContextLost()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isContextLost", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC02isE4LostSbyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isEnabled:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isEnabledySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isFramebuffer", + "printedName": "isFramebuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isFramebuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13isFramebufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isProgram", + "printedName": "isProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isProgramySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRenderbuffer", + "printedName": "isRenderbuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isRenderbuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14isRenderbufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isShader", + "printedName": "isShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8isShaderySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isTexture", + "printedName": "isTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isTextureySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineWidth", + "printedName": "lineWidth(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)lineWidth:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9lineWidthyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "linkProgram", + "printedName": "linkProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)linkProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11linkProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pixelStorei", + "printedName": "pixelStorei(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)pixelStorei::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11pixelStoreiyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "polygonOffset", + "printedName": "polygonOffset(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)polygonOffset::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13polygonOffsetyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readPixels", + "printedName": "readPixels(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)readPixels:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10readPixelsyys5Int32V_A3Fs6UInt32VAHSvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readPixels", + "printedName": "readPixels(_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)readPixels:::::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10readPixels_______6offsetys5Int32V_A3Gs6UInt32VAISvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "renderbufferStorage", + "printedName": "renderbufferStorage(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)renderbufferStorage::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19renderbufferStorageyys6UInt32V_AFs5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sampleCoverage", + "printedName": "sampleCoverage(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)sampleCoverage::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14sampleCoverageyySf_SbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scissor", + "printedName": "scissor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)scissor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7scissoryys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shaderSource", + "printedName": "shaderSource(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)shaderSource::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12shaderSourceyys6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilFunc", + "printedName": "stencilFunc(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilFunc:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11stencilFuncyys6UInt32V_s5Int32VAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilFuncSeparate", + "printedName": "stencilFuncSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilFuncSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19stencilFuncSeparateyys6UInt32V_AFs5Int32VAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilMask", + "printedName": "stencilMask(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilMask:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11stencilMaskyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilMaskSeparate", + "printedName": "stencilMaskSeparate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilMaskSeparate::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19stencilMaskSeparateyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilOp", + "printedName": "stencilOp(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilOp:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9stencilOpyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilOpSeparate", + "printedName": "stencilOpSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilOpSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17stencilOpSeparateyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::data:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________4datays6UInt32V_s5Int32VA4i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________2u8ys6UInt32V_s5Int32VA4i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::pixels:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________6pixels4sizeys6UInt32V_s5Int32VA4j2HSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:pixels:size:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::pixels:size:offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________6pixels4size6offsetys6UInt32V_s5Int32VA4k2ISVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3u16ys6UInt32V_s5Int32VA4i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3u32ys6UInt32V_s5Int32VA4i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3f32ys6UInt32V_s5Int32VA4i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2Dyys6UInt32V_s5Int32VA4h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:pixels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::pixels:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6pixelsys6UInt32V_s5Int32VAi2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::asset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____5assetys6UInt32V_s5Int32VAi2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::bitmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6bitmapys6UInt32V_s5Int32VAi2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2Dyys6UInt32V_s5Int32VAh2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::canvas:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6canvasys6UInt32V_s5Int32VAi2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texParameterf", + "printedName": "texParameterf(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texParameterf:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texParameterfyys6UInt32V_AFSftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texParameteri", + "printedName": "texParameteri(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texParameteri:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texParameteriyys6UInt32V_AFs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::data:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________4datays6UInt32V_s5Int32VA4i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________2u8ys6UInt32V_s5Int32VA4i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::pixels:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________6pixels4sizeys6UInt32V_s5Int32VA4j2HSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:pixels:size:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::pixels:size:offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________6pixels4size6offsetys6UInt32V_s5Int32VA4k2ISvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________3u16ys6UInt32V_s5Int32VA4i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________3f32ys6UInt32V_s5Int32VA4i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D:::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2Dyys6UInt32V_s5Int32VA4h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:pixels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::pixels:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6pixelsys6UInt32V_s5Int32VA2i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::asset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______5assetys6UInt32V_s5Int32VA2i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::bitmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6bitmapys6UInt32V_s5Int32VA2i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::canvas:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6canvasys6UInt32V_s5Int32VA2i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2Dyys6UInt32V_s5Int32VA2h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1f", + "printedName": "uniform1f(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1f::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform1fyys5Int32V_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1fv", + "printedName": "uniform1fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1fv", + "printedName": "uniform1fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1i", + "printedName": "uniform1i(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1i::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform1iyys5Int32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1iv", + "printedName": "uniform1iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1iv", + "printedName": "uniform1iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2f", + "printedName": "uniform2f(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2f:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform2fyys5Int32V_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2fv", + "printedName": "uniform2fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2fv", + "printedName": "uniform2fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2i", + "printedName": "uniform2i(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2i:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform2iyys5Int32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2iv", + "printedName": "uniform2iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2iv", + "printedName": "uniform2iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3f", + "printedName": "uniform3f(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3f::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform3fyys5Int32V_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3fv", + "printedName": "uniform3fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3fv", + "printedName": "uniform3fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3i", + "printedName": "uniform3i(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3i::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform3iyys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3iv", + "printedName": "uniform3iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3iv", + "printedName": "uniform3iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4f", + "printedName": "uniform4f(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4f:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform4fyys5Int32V_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4fv", + "printedName": "uniform4fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4fv", + "printedName": "uniform4fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4i", + "printedName": "uniform4i(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4i:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform4iyys5Int32V_A4FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4iv", + "printedName": "uniform4iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4iv", + "printedName": "uniform4iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2fv", + "printedName": "uniformMatrix2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix2fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix2fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2fv", + "printedName": "uniformMatrix2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix2fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix2fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3fv", + "printedName": "uniformMatrix3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix3fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix3fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3fv", + "printedName": "uniformMatrix3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix3fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix3fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4fv", + "printedName": "uniformMatrix4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix4fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix4fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4fv", + "printedName": "uniformMatrix4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix4fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix4fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "useProgram", + "printedName": "useProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)useProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10useProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateProgram", + "printedName": "validateProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)validateProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15validateProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1f", + "printedName": "vertexAttrib1f(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1f::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib1fyys6UInt32V_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2f", + "printedName": "vertexAttrib2f(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2f:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib2fyys6UInt32V_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3f", + "printedName": "vertexAttrib3f(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3f::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib3fyys6UInt32V_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4f", + "printedName": "vertexAttrib4f(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4f:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib4fyys6UInt32V_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1fv", + "printedName": "vertexAttrib1fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib1fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1fv", + "printedName": "vertexAttrib1fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib1fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2fv", + "printedName": "vertexAttrib2fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib2fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2fv", + "printedName": "vertexAttrib2fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib2fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3fv", + "printedName": "vertexAttrib3fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib3fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3fv", + "printedName": "vertexAttrib3fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib3fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4fv", + "printedName": "vertexAttrib4fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib4fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4fv", + "printedName": "vertexAttrib4fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib4fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribPointer", + "printedName": "vertexAttribPointer(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttribPointer::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19vertexAttribPointeryys6UInt32V_s5Int32VAFSbAHSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewport", + "printedName": "viewport(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)viewport::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8viewportyys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "DEPTH_BUFFER_BIT", + "printedName": "DEPTH_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_BUFFER_BIT", + "printedName": "COLOR_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16COLOR_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16COLOR_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BUFFER_BIT", + "printedName": "STENCIL_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POINTS", + "printedName": "POINTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POINTS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6POINTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POINTS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6POINTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINES", + "printedName": "LINES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5LINESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5LINESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_LOOP", + "printedName": "LINE_LOOP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_LOOP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LINE_LOOPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_LOOP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LINE_LOOPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_STRIP", + "printedName": "LINE_STRIP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_STRIPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_STRIPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLES", + "printedName": "TRIANGLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TRIANGLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TRIANGLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLE_STRIP", + "printedName": "TRIANGLE_STRIP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TRIANGLE_STRIPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TRIANGLE_STRIPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLE_FAN", + "printedName": "TRIANGLE_FAN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLE_FAN", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12TRIANGLE_FANs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLE_FAN", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12TRIANGLE_FANs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE", + "printedName": "ONE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3ONEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3ONEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ZERO", + "printedName": "ZERO", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ZERO", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4ZEROs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ZERO", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4ZEROs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_COLOR", + "printedName": "SRC_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_SRC_COLOR", + "printedName": "ONE_MINUS_SRC_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_ALPHA", + "printedName": "SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_SRC_ALPHA", + "printedName": "ONE_MINUS_SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DST_ALPHA", + "printedName": "DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_DST_ALPHA", + "printedName": "ONE_MINUS_DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DST_COLOR", + "printedName": "DST_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_DST_COLOR", + "printedName": "ONE_MINUS_DST_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_ALPHA_SATURATE", + "printedName": "SRC_ALPHA_SATURATE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_ALPHA_SATURATE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18SRC_ALPHA_SATURATEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_ALPHA_SATURATE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18SRC_ALPHA_SATURATEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONSTANT_COLOR", + "printedName": "CONSTANT_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_CONSTANT_COLOR", + "printedName": "ONE_MINUS_CONSTANT_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONSTANT_ALPHA", + "printedName": "CONSTANT_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_CONSTANT_ALPHA", + "printedName": "ONE_MINUS_CONSTANT_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_ADD", + "printedName": "FUNC_ADD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_ADD", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8FUNC_ADDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_ADD", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8FUNC_ADDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_SUBTRACT", + "printedName": "FUNC_SUBTRACT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13FUNC_SUBTRACTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13FUNC_SUBTRACTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_REVERSE_SUBTRACT", + "printedName": "FUNC_REVERSE_SUBTRACT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_REVERSE_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21FUNC_REVERSE_SUBTRACTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_REVERSE_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21FUNC_REVERSE_SUBTRACTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION", + "printedName": "BLEND_EQUATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14BLEND_EQUATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14BLEND_EQUATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION_RGB", + "printedName": "BLEND_EQUATION_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18BLEND_EQUATION_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18BLEND_EQUATION_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION_ALPHA", + "printedName": "BLEND_EQUATION_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20BLEND_EQUATION_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20BLEND_EQUATION_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_DST_RGB", + "printedName": "BLEND_DST_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_DST_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_DST_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_DST_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_DST_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_SRC_RGB", + "printedName": "BLEND_SRC_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_SRC_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_SRC_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_SRC_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_SRC_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_DST_ALPHA", + "printedName": "BLEND_DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_SRC_ALPHA", + "printedName": "BLEND_SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_COLOR", + "printedName": "BLEND_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BLEND_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BLEND_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ARRAY_BUFFER_BINDING", + "printedName": "ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ELEMENT_ARRAY_BUFFER_BINDING", + "printedName": "ELEMENT_ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ELEMENT_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28ELEMENT_ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ELEMENT_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28ELEMENT_ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_WIDTH", + "printedName": "LINE_WIDTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_WIDTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_WIDTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALIASED_POINT_SIZE_RANGE", + "printedName": "ALIASED_POINT_SIZE_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALIASED_POINT_SIZE_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_POINT_SIZE_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALIASED_POINT_SIZE_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_POINT_SIZE_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALIASED_LINE_WIDTH_RANGE", + "printedName": "ALIASED_LINE_WIDTH_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALIASED_LINE_WIDTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_LINE_WIDTH_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALIASED_LINE_WIDTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_LINE_WIDTH_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CULL_FACE_MODE", + "printedName": "CULL_FACE_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CULL_FACE_MODE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CULL_FACE_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CULL_FACE_MODE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CULL_FACE_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT_FACE", + "printedName": "FRONT_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FRONT_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FRONT_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_RANGE", + "printedName": "DEPTH_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11DEPTH_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11DEPTH_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_WRITEMASK", + "printedName": "DEPTH_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_CLEAR_VALUE", + "printedName": "DEPTH_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_FUNC", + "printedName": "DEPTH_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_CLEAR_VALUE", + "printedName": "STENCIL_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19STENCIL_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19STENCIL_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_FUNC", + "printedName": "STENCIL_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_FAIL", + "printedName": "STENCIL_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_PASS_DEPTH_FAIL", + "printedName": "STENCIL_PASS_DEPTH_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_PASS_DEPTH_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_PASS_DEPTH_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_PASS_DEPTH_PASS", + "printedName": "STENCIL_PASS_DEPTH_PASS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC019STENCIL_PASS_DEPTH_G0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC019STENCIL_PASS_DEPTH_G0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_REF", + "printedName": "STENCIL_REF", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STENCIL_REFs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STENCIL_REFs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_VALUE_MASK", + "printedName": "STENCIL_VALUE_MASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_VALUE_MASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_VALUE_MASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_WRITEMASK", + "printedName": "STENCIL_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_FUNC", + "printedName": "STENCIL_BACK_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_FAIL", + "printedName": "STENCIL_BACK_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_PASS_DEPTH_FAIL", + "printedName": "STENCIL_BACK_PASS_DEPTH_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28STENCIL_BACK_PASS_DEPTH_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28STENCIL_BACK_PASS_DEPTH_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_PASS_DEPTH_PASS", + "printedName": "STENCIL_BACK_PASS_DEPTH_PASS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC024STENCIL_BACK_PASS_DEPTH_H0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC024STENCIL_BACK_PASS_DEPTH_H0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_REF", + "printedName": "STENCIL_BACK_REF", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16STENCIL_BACK_REFs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16STENCIL_BACK_REFs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_VALUE_MASK", + "printedName": "STENCIL_BACK_VALUE_MASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_BACK_VALUE_MASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_BACK_VALUE_MASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_WRITEMASK", + "printedName": "STENCIL_BACK_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22STENCIL_BACK_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22STENCIL_BACK_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VIEWPORT", + "printedName": "VIEWPORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VIEWPORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8VIEWPORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VIEWPORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8VIEWPORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SCISSOR_BOX", + "printedName": "SCISSOR_BOX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SCISSOR_BOX", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SCISSOR_BOXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SCISSOR_BOX", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SCISSOR_BOXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_CLEAR_VALUE", + "printedName": "COLOR_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_WRITEMASK", + "printedName": "COLOR_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15COLOR_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15COLOR_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_ALIGNMENT", + "printedName": "UNPACK_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16UNPACK_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16UNPACK_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_ALIGNMENT", + "printedName": "PACK_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)PACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14PACK_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)PACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14PACK_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_SIZE", + "printedName": "MAX_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16MAX_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16MAX_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VIEWPORT_DIMS", + "printedName": "MAX_VIEWPORT_DIMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VIEWPORT_DIMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17MAX_VIEWPORT_DIMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VIEWPORT_DIMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17MAX_VIEWPORT_DIMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SUBPIXEL_BITS", + "printedName": "SUBPIXEL_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SUBPIXEL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13SUBPIXEL_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SUBPIXEL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13SUBPIXEL_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED_BITS", + "printedName": "RED_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RED_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RED_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RED_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RED_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GREEN_BITS", + "printedName": "GREEN_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GREEN_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10GREEN_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GREEN_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10GREEN_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLUE_BITS", + "printedName": "BLUE_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLUE_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BLUE_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLUE_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BLUE_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALPHA_BITS", + "printedName": "ALPHA_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALPHA_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10ALPHA_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALPHA_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10ALPHA_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_BITS", + "printedName": "DEPTH_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BITS", + "printedName": "STENCIL_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_UNITS", + "printedName": "POLYGON_OFFSET_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20POLYGON_OFFSET_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20POLYGON_OFFSET_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_FACTOR", + "printedName": "POLYGON_OFFSET_FACTOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_FACTOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21POLYGON_OFFSET_FACTORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_FACTOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21POLYGON_OFFSET_FACTORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_2D", + "printedName": "TEXTURE_BINDING_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_BINDING_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_BINDING_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_BINDING_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_BINDING_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_BUFFERS", + "printedName": "SAMPLE_BUFFERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_BUFFERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14SAMPLE_BUFFERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_BUFFERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14SAMPLE_BUFFERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLES", + "printedName": "SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE_VALUE", + "printedName": "SAMPLE_COVERAGE_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21SAMPLE_COVERAGE_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21SAMPLE_COVERAGE_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE_INVERT", + "printedName": "SAMPLE_COVERAGE_INVERT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE_INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22SAMPLE_COVERAGE_INVERTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE_INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22SAMPLE_COVERAGE_INVERTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_TEXTURE_FORMATS", + "printedName": "COMPRESSED_TEXTURE_FORMATS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COMPRESSED_TEXTURE_FORMATS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26COMPRESSED_TEXTURE_FORMATSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COMPRESSED_TEXTURE_FORMATS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26COMPRESSED_TEXTURE_FORMATSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VENDOR", + "printedName": "VENDOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VENDOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6VENDORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VENDOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6VENDORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERER", + "printedName": "RENDERER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RENDERERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RENDERERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERSION", + "printedName": "VERSION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7VERSIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7VERSIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "IMPLEMENTATION_COLOR_READ_TYPE", + "printedName": "IMPLEMENTATION_COLOR_READ_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)IMPLEMENTATION_COLOR_READ_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30IMPLEMENTATION_COLOR_READ_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)IMPLEMENTATION_COLOR_READ_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30IMPLEMENTATION_COLOR_READ_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "IMPLEMENTATION_COLOR_READ_FORMAT", + "printedName": "IMPLEMENTATION_COLOR_READ_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)IMPLEMENTATION_COLOR_READ_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32IMPLEMENTATION_COLOR_READ_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)IMPLEMENTATION_COLOR_READ_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32IMPLEMENTATION_COLOR_READ_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BROWSER_DEFAULT_WEBGL", + "printedName": "BROWSER_DEFAULT_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BROWSER_DEFAULT_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21BROWSER_DEFAULT_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BROWSER_DEFAULT_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21BROWSER_DEFAULT_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_DRAW", + "printedName": "STATIC_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STATIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STATIC_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STATIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STATIC_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_DRAW", + "printedName": "STREAM_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STREAM_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STREAM_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STREAM_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STREAM_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_DRAW", + "printedName": "DYNAMIC_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DYNAMIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12DYNAMIC_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DYNAMIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12DYNAMIC_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ARRAY_BUFFER", + "printedName": "ARRAY_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12ARRAY_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12ARRAY_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ELEMENT_ARRAY_BUFFER", + "printedName": "ELEMENT_ARRAY_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ELEMENT_ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ELEMENT_ARRAY_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ELEMENT_ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ELEMENT_ARRAY_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BUFFER_SIZE", + "printedName": "BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BUFFER_USAGE", + "printedName": "BUFFER_USAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BUFFER_USAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12BUFFER_USAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BUFFER_USAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12BUFFER_USAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_VERTEX_ATTRIB", + "printedName": "CURRENT_VERTEX_ATTRIB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CURRENT_VERTEX_ATTRIB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21CURRENT_VERTEX_ATTRIBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CURRENT_VERTEX_ATTRIB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21CURRENT_VERTEX_ATTRIBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_ENABLED", + "printedName": "VERTEX_ATTRIB_ARRAY_ENABLED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_ENABLED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_ENABLEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_ENABLED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_ENABLEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_SIZE", + "printedName": "VERTEX_ATTRIB_ARRAY_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_STRIDE", + "printedName": "VERTEX_ATTRIB_ARRAY_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26VERTEX_ATTRIB_ARRAY_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26VERTEX_ATTRIB_ARRAY_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_TYPE", + "printedName": "VERTEX_ATTRIB_ARRAY_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_NORMALIZED", + "printedName": "VERTEX_ATTRIB_ARRAY_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_NORMALIZED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30VERTEX_ATTRIB_ARRAY_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_NORMALIZED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30VERTEX_ATTRIB_ARRAY_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_POINTER", + "printedName": "VERTEX_ATTRIB_ARRAY_POINTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_POINTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_POINTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_POINTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_POINTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "printedName": "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34VERTEX_ATTRIB_ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34VERTEX_ATTRIB_ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CULL_FACE", + "printedName": "CULL_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CULL_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9CULL_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CULL_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9CULL_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT", + "printedName": "FRONT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FRONTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FRONTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BACK", + "printedName": "BACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT_AND_BACK", + "printedName": "FRONT_AND_BACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT_AND_BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14FRONT_AND_BACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT_AND_BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14FRONT_AND_BACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND", + "printedName": "BLEND", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5BLENDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5BLENDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_TEST", + "printedName": "DEPTH_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DITHER", + "printedName": "DITHER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DITHER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6DITHERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DITHER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6DITHERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_FILL", + "printedName": "POLYGON_OFFSET_FILL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_FILL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19POLYGON_OFFSET_FILLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_FILL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19POLYGON_OFFSET_FILLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_ALPHA_TO_COVERAGE", + "printedName": "SAMPLE_ALPHA_TO_COVERAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_ALPHA_TO_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SAMPLE_ALPHA_TO_COVERAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_ALPHA_TO_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SAMPLE_ALPHA_TO_COVERAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE", + "printedName": "SAMPLE_COVERAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15SAMPLE_COVERAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15SAMPLE_COVERAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SCISSOR_TEST", + "printedName": "SCISSOR_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SCISSOR_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SCISSOR_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SCISSOR_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SCISSOR_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_TEST", + "printedName": "STENCIL_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NO_ERROR", + "printedName": "NO_ERROR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NO_ERROR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NO_ERRORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NO_ERROR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NO_ERRORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_ENUM", + "printedName": "INVALID_ENUM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_ENUM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12INVALID_ENUMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_ENUM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12INVALID_ENUMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_VALUE", + "printedName": "INVALID_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13INVALID_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13INVALID_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_OPERATION", + "printedName": "INVALID_OPERATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17INVALID_OPERATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17INVALID_OPERATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_FRAMEBUFFER_OPERATION", + "printedName": "INVALID_FRAMEBUFFER_OPERATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_FRAMEBUFFER_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC29INVALID_FRAMEBUFFER_OPERATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_FRAMEBUFFER_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC29INVALID_FRAMEBUFFER_OPERATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "OUT_OF_MEMORY", + "printedName": "OUT_OF_MEMORY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)OUT_OF_MEMORY", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13OUT_OF_MEMORYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)OUT_OF_MEMORY", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13OUT_OF_MEMORYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONTEXT_LOST_WEBGL", + "printedName": "CONTEXT_LOST_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONTEXT_LOST_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18CONTEXT_LOST_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONTEXT_LOST_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18CONTEXT_LOST_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CW", + "printedName": "CW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC2CWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC2CWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CCW", + "printedName": "CCW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CCW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3CCWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CCW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3CCWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DONT_CARE", + "printedName": "DONT_CARE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DONT_CARE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DONT_CAREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DONT_CARE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DONT_CAREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FASTEST", + "printedName": "FASTEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FASTEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7FASTESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FASTEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7FASTESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NICEST", + "printedName": "NICEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NICEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6NICESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NICEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6NICESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GENERATE_MIPMAP_HINT", + "printedName": "GENERATE_MIPMAP_HINT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GENERATE_MIPMAP_HINT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20GENERATE_MIPMAP_HINTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GENERATE_MIPMAP_HINT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20GENERATE_MIPMAP_HINTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BYTE", + "printedName": "BYTE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BYTEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BYTEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_BYTE", + "printedName": "UNSIGNED_BYTE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13UNSIGNED_BYTEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13UNSIGNED_BYTEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT", + "printedName": "UNSIGNED_SHORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14UNSIGNED_SHORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14UNSIGNED_SHORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHORT", + "printedName": "SHORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5SHORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5SHORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT", + "printedName": "UNSIGNED_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12UNSIGNED_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12UNSIGNED_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT", + "printedName": "INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT", + "printedName": "FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT", + "printedName": "DEPTH_COMPONENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_COMPONENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_COMPONENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_COMPONENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_COMPONENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALPHA", + "printedName": "ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB", + "printedName": "RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA", + "printedName": "RGBA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGBA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4RGBAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGBA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4RGBAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LUMINANCE", + "printedName": "LUMINANCE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LUMINANCE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LUMINANCEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LUMINANCE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LUMINANCEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LUMINANCE_ALPHA", + "printedName": "LUMINANCE_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LUMINANCE_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15LUMINANCE_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LUMINANCE_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15LUMINANCE_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_4_4_4_4", + "printedName": "UNSIGNED_SHORT_4_4_4_4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_4_4_4_4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_4_4_4_4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_4_4_4_4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_4_4_4_4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_5_5_5_1", + "printedName": "UNSIGNED_SHORT_5_5_5_1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_5_5_5_1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_5_5_5_1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_5_5_5_1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_5_5_5_1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_5_6_5", + "printedName": "UNSIGNED_SHORT_5_6_5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_5_6_5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20UNSIGNED_SHORT_5_6_5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_5_6_5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20UNSIGNED_SHORT_5_6_5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAGMENT_SHADER", + "printedName": "FRAGMENT_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15FRAGMENT_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15FRAGMENT_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_SHADER", + "printedName": "VERTEX_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13VERTEX_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13VERTEX_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPILE_STATUS", + "printedName": "COMPILE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COMPILE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14COMPILE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COMPILE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14COMPILE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DELETE_STATUS", + "printedName": "DELETE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DELETE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DELETE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DELETE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DELETE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINK_STATUS", + "printedName": "LINK_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINK_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11LINK_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINK_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11LINK_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VALIDATE_STATUS", + "printedName": "VALIDATE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VALIDATE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15VALIDATE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VALIDATE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15VALIDATE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ATTACHED_SHADERS", + "printedName": "ATTACHED_SHADERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ATTACHED_SHADERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16ATTACHED_SHADERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ATTACHED_SHADERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16ATTACHED_SHADERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_ATTRIBUTES", + "printedName": "ACTIVE_ATTRIBUTES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_ATTRIBUTES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17ACTIVE_ATTRIBUTESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_ATTRIBUTES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17ACTIVE_ATTRIBUTESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_UNIFORMS", + "printedName": "ACTIVE_UNIFORMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15ACTIVE_UNIFORMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15ACTIVE_UNIFORMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_VECTORS", + "printedName": "MAX_VERTEX_UNIFORM_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26MAX_VERTEX_UNIFORM_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26MAX_VERTEX_UNIFORM_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VARYING_VECTORS", + "printedName": "MAX_VARYING_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VARYING_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19MAX_VARYING_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VARYING_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19MAX_VARYING_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32MAX_COMBINED_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32MAX_COMBINED_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30MAX_VERTEX_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30MAX_VERTEX_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23MAX_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23MAX_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_ATTRIBS", + "printedName": "MAX_VERTEX_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_ATTRIBS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18MAX_VERTEX_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_ATTRIBS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18MAX_VERTEX_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_VECTORS", + "printedName": "MAX_FRAGMENT_UNIFORM_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_FRAGMENT_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28MAX_FRAGMENT_UNIFORM_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_FRAGMENT_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28MAX_FRAGMENT_UNIFORM_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHADER_TYPE", + "printedName": "SHADER_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHADER_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SHADER_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHADER_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SHADER_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHADING_LANGUAGE_VERSION", + "printedName": "SHADING_LANGUAGE_VERSION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHADING_LANGUAGE_VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SHADING_LANGUAGE_VERSIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHADING_LANGUAGE_VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SHADING_LANGUAGE_VERSIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_PROGRAM", + "printedName": "CURRENT_PROGRAM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CURRENT_PROGRAM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15CURRENT_PROGRAMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CURRENT_PROGRAM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15CURRENT_PROGRAMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEVER", + "printedName": "NEVER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEVER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5NEVERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEVER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5NEVERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LESS", + "printedName": "LESS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LESS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4LESSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LESS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4LESSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "EQUAL", + "printedName": "EQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)EQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5EQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)EQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5EQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LEQUAL", + "printedName": "LEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GREATER", + "printedName": "GREATER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GREATER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7GREATERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GREATER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7GREATERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NOTEQUAL", + "printedName": "NOTEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NOTEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NOTEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NOTEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NOTEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GEQUAL", + "printedName": "GEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6GEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6GEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALWAYS", + "printedName": "ALWAYS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALWAYS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6ALWAYSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALWAYS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6ALWAYSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "KEEP", + "printedName": "KEEP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)KEEP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4KEEPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)KEEP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4KEEPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "REPLACE", + "printedName": "REPLACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)REPLACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7REPLACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)REPLACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7REPLACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INCR", + "printedName": "INCR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INCR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4INCRs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INCR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4INCRs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DECR", + "printedName": "DECR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DECR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4DECRs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DECR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4DECRs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVERT", + "printedName": "INVERT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6INVERTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6INVERTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INCR_WRAP", + "printedName": "INCR_WRAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INCR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9INCR_WRAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INCR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9INCR_WRAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DECR_WRAP", + "printedName": "DECR_WRAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DECR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DECR_WRAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DECR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DECR_WRAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST", + "printedName": "NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7NEARESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7NEARESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR", + "printedName": "LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LINEARs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LINEARs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST_MIPMAP_NEAREST", + "printedName": "NEAREST_MIPMAP_NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC015NEAREST_MIPMAP_F0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC015NEAREST_MIPMAP_F0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR_MIPMAP_NEAREST", + "printedName": "LINEAR_MIPMAP_NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21LINEAR_MIPMAP_NEARESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21LINEAR_MIPMAP_NEARESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST_MIPMAP_LINEAR", + "printedName": "NEAREST_MIPMAP_LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21NEAREST_MIPMAP_LINEARs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21NEAREST_MIPMAP_LINEARs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR_MIPMAP_LINEAR", + "printedName": "LINEAR_MIPMAP_LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC014LINEAR_MIPMAP_F0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC014LINEAR_MIPMAP_F0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAG_FILTER", + "printedName": "TEXTURE_MAG_FILTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_MAG_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MAG_FILTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_MAG_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MAG_FILTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MIN_FILTER", + "printedName": "TEXTURE_MIN_FILTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_MIN_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MIN_FILTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_MIN_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MIN_FILTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_S", + "printedName": "TEXTURE_WRAP_S", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_WRAP_S", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ss6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_WRAP_S", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ss6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_T", + "printedName": "TEXTURE_WRAP_T", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_WRAP_T", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ts6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_WRAP_T", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ts6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_2D", + "printedName": "TEXTURE_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10TEXTURE_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10TEXTURE_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE", + "printedName": "TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP", + "printedName": "TEXTURE_CUBE_MAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16TEXTURE_CUBE_MAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16TEXTURE_CUBE_MAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_CUBE_MAP", + "printedName": "TEXTURE_BINDING_CUBE_MAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_BINDING_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24TEXTURE_BINDING_CUBE_MAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_BINDING_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24TEXTURE_BINDING_CUBE_MAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_X", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_X", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Xs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Xs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_X", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_X", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Xs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Xs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Y", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_Y", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Ys6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Ys6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Y", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_Y", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Ys6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Ys6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Z", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_Z", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Zs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Zs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Z", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_Z", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Zs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Zs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_CUBE_MAP_TEXTURE_SIZE", + "printedName": "MAX_CUBE_MAP_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_CUBE_MAP_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25MAX_CUBE_MAP_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_CUBE_MAP_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25MAX_CUBE_MAP_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE0", + "printedName": "TEXTURE0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE1", + "printedName": "TEXTURE1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE2", + "printedName": "TEXTURE2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE3", + "printedName": "TEXTURE3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE4", + "printedName": "TEXTURE4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE5", + "printedName": "TEXTURE5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE6", + "printedName": "TEXTURE6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE6", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE6", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE7", + "printedName": "TEXTURE7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE7", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE7", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE8", + "printedName": "TEXTURE8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE9", + "printedName": "TEXTURE9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE9", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE9", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE10", + "printedName": "TEXTURE10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE10", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE10", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE11", + "printedName": "TEXTURE11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE11", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE11", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE12", + "printedName": "TEXTURE12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE12", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE12", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE13", + "printedName": "TEXTURE13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE13", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE13", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE14", + "printedName": "TEXTURE14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE14", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE14", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE15", + "printedName": "TEXTURE15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE15", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE15", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE16", + "printedName": "TEXTURE16", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE16s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE16s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE17", + "printedName": "TEXTURE17", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE17", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE17s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE17", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE17s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE18", + "printedName": "TEXTURE18", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE18", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE18s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE18", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE18s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE19", + "printedName": "TEXTURE19", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE19", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE19s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE19", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE19s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE20", + "printedName": "TEXTURE20", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE20", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE20s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE20", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE20s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE21", + "printedName": "TEXTURE21", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE21", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE21s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE21", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE21s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE22", + "printedName": "TEXTURE22", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE22", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE22s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE22", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE22s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE23", + "printedName": "TEXTURE23", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE23", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE23s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE23", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE23s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE24", + "printedName": "TEXTURE24", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE24", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE24s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE24", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE24s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE25", + "printedName": "TEXTURE25", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE25", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE25s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE25", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE25s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE26", + "printedName": "TEXTURE26", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE26", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE26s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE26", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE26s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE27", + "printedName": "TEXTURE27", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE27", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE27s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE27", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE27s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE28", + "printedName": "TEXTURE28", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE28", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE28s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE28", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE28s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE29", + "printedName": "TEXTURE29", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE29", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE29s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE29", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE29s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE30", + "printedName": "TEXTURE30", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE30", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE30s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE30", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE30s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE31", + "printedName": "TEXTURE31", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE31", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE31s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE31", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE31s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_TEXTURE", + "printedName": "ACTIVE_TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14ACTIVE_TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14ACTIVE_TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "REPEAT", + "printedName": "REPEAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6REPEATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6REPEATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CLAMP_TO_EDGE", + "printedName": "CLAMP_TO_EDGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CLAMP_TO_EDGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13CLAMP_TO_EDGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CLAMP_TO_EDGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13CLAMP_TO_EDGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIRRORED_REPEAT", + "printedName": "MIRRORED_REPEAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MIRRORED_REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15MIRRORED_REPEATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MIRRORED_REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15MIRRORED_REPEATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC2", + "printedName": "FLOAT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC3", + "printedName": "FLOAT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC4", + "printedName": "FLOAT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC2", + "printedName": "INT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC3", + "printedName": "INT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC4", + "printedName": "INT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL", + "printedName": "BOOL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BOOLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BOOLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC2", + "printedName": "BOOL_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC3", + "printedName": "BOOL_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC4", + "printedName": "BOOL_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2", + "printedName": "FLOAT_MAT2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3", + "printedName": "FLOAT_MAT3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4", + "printedName": "FLOAT_MAT4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D", + "printedName": "SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLER_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLER_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_CUBE", + "printedName": "SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLER_CUBE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLER_CUBE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LOW_FLOAT", + "printedName": "LOW_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LOW_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LOW_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LOW_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LOW_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MEDIUM_FLOAT", + "printedName": "MEDIUM_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MEDIUM_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12MEDIUM_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MEDIUM_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12MEDIUM_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HIGH_FLOAT", + "printedName": "HIGH_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)HIGH_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10HIGH_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)HIGH_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10HIGH_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LOW_INT", + "printedName": "LOW_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LOW_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7LOW_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LOW_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7LOW_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MEDIUM_INT", + "printedName": "MEDIUM_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MEDIUM_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10MEDIUM_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MEDIUM_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10MEDIUM_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HIGH_INT", + "printedName": "HIGH_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)HIGH_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8HIGH_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)HIGH_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8HIGH_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER", + "printedName": "FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER", + "printedName": "RENDERBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12RENDERBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12RENDERBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA4", + "printedName": "RGBA4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGBA4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5RGBA4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGBA4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5RGBA4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB565", + "printedName": "RGB565", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB565", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6RGB565s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB565", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6RGB565s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB5_A1", + "printedName": "RGB5_A1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB5_A1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7RGB5_A1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB5_A1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7RGB5_A1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT16", + "printedName": "DEPTH_COMPONENT16", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_COMPONENT16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_COMPONENT16s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_COMPONENT16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_COMPONENT16s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_INDEX8", + "printedName": "STENCIL_INDEX8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_INDEX8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14STENCIL_INDEX8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_INDEX8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14STENCIL_INDEX8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL", + "printedName": "DEPTH_STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DEPTH_STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DEPTH_STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_WIDTH", + "printedName": "RENDERBUFFER_WIDTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18RENDERBUFFER_WIDTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18RENDERBUFFER_WIDTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_HEIGHT", + "printedName": "RENDERBUFFER_HEIGHT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_HEIGHT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19RENDERBUFFER_HEIGHTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_HEIGHT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19RENDERBUFFER_HEIGHTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_INTERNAL_FORMAT", + "printedName": "RENDERBUFFER_INTERNAL_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_INTERNAL_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28RENDERBUFFER_INTERNAL_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_INTERNAL_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28RENDERBUFFER_INTERNAL_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_RED_SIZE", + "printedName": "RENDERBUFFER_RED_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_RED_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21RENDERBUFFER_RED_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_RED_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21RENDERBUFFER_RED_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_GREEN_SIZE", + "printedName": "RENDERBUFFER_GREEN_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_GREEN_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_GREEN_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_GREEN_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_GREEN_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_BLUE_SIZE", + "printedName": "RENDERBUFFER_BLUE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_BLUE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22RENDERBUFFER_BLUE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_BLUE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22RENDERBUFFER_BLUE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_ALPHA_SIZE", + "printedName": "RENDERBUFFER_ALPHA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_ALPHA_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_ALPHA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_ALPHA_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_ALPHA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_DEPTH_SIZE", + "printedName": "RENDERBUFFER_DEPTH_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_DEPTH_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_DEPTH_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_DEPTH_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_DEPTH_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_STENCIL_SIZE", + "printedName": "RENDERBUFFER_STENCIL_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_STENCIL_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25RENDERBUFFER_STENCIL_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_STENCIL_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25RENDERBUFFER_STENCIL_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "printedName": "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "printedName": "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_NAMEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_NAMEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC44FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC44FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT0", + "printedName": "COLOR_ATTACHMENT0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_ATTACHMENT0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_ATTACHMENT0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_ATTACHMENT0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_ATTACHMENT0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_ATTACHMENT", + "printedName": "DEPTH_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_ATTACHMENT", + "printedName": "STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL_ATTACHMENT", + "printedName": "DEPTH_STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NONE", + "printedName": "NONE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4NONEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4NONEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_COMPLETE", + "printedName": "FRAMEBUFFER_COMPLETE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_COMPLETE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20FRAMEBUFFER_COMPLETEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_COMPLETE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20FRAMEBUFFER_COMPLETEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "printedName": "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "printedName": "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC41FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC41FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "printedName": "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_DIMENSIONSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_DIMENSIONSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_UNSUPPORTED", + "printedName": "FRAMEBUFFER_UNSUPPORTED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_UNSUPPORTED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23FRAMEBUFFER_UNSUPPORTEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_UNSUPPORTED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23FRAMEBUFFER_UNSUPPORTEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_BINDING", + "printedName": "FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_BINDING", + "printedName": "RENDERBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20RENDERBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20RENDERBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_RENDERBUFFER_SIZE", + "printedName": "MAX_RENDERBUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_RENDERBUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21MAX_RENDERBUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_RENDERBUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21MAX_RENDERBUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_COLORSPACE_CONVERSION_WEBGL", + "printedName": "UNPACK_COLORSPACE_CONVERSION_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_COLORSPACE_CONVERSION_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34UNPACK_COLORSPACE_CONVERSION_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_COLORSPACE_CONVERSION_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34UNPACK_COLORSPACE_CONVERSION_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_FLIP_Y_WEBGL", + "printedName": "UNPACK_FLIP_Y_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_FLIP_Y_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19UNPACK_FLIP_Y_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_FLIP_Y_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19UNPACK_FLIP_Y_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "printedName": "UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30UNPACK_PREMULTIPLY_ALPHA_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30UNPACK_PREMULTIPLY_ALPHA_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLRenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "superclassNames": [ + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmap", + "printedName": "TNSImageBitmap", + "children": [ + { + "kind": "Var", + "name": "queue", + "printedName": "queue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cpy)queue", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5queueSo012OS_dispatch_E0CvpZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)queue", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5queueSo012OS_dispatch_E0CvgZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createFromImageBitmap", + "printedName": "createFromImageBitmap(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageBitmap:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC015createFromImageD0yyAC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageBitmap", + "printedName": "createFromImageBitmap(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageBitmap:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC015createFromImageD0yyAC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageAsset", + "printedName": "createFromImageAsset(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageAsset:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC20createFromImageAssetyyAA0cH0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageAsset", + "printedName": "createFromImageAsset(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageAsset:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC20createFromImageAssetyyAA0cH0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageData", + "printedName": "createFromImageData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageData:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC19createFromImageDatayyAA0cH0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageData", + "printedName": "createFromImageData(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageData:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC19createFromImageDatayyAA0cH0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromCanvas", + "printedName": "createFromCanvas(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromCanvas:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC010createFromA0yyAA9TNSCanvasC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromCanvas", + "printedName": "createFromCanvas(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromCanvas:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC010createFromA0yyAA9TNSCanvasC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromData", + "printedName": "createFromData(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromData:::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC14createFromDatayySo6NSDataC_S2fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromData", + "printedName": "createFromData(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromData:::::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC14createFromDatayySo6NSDataC_S6fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromDataEncoded", + "printedName": "createFromDataEncoded(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromDataEncoded:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC21createFromDataEncodedyySo6NSDataC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromDataEncoded", + "printedName": "createFromDataEncoded(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromDataEncoded:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC21createFromDataEncodedyySo6NSDataC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytes", + "printedName": "createFromBytes(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytes:::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC15createFromBytesyySays5UInt8VG_S2fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytes", + "printedName": "createFromBytes(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytes:::::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC15createFromBytesyySays5UInt8VG_S6fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytesEncoded", + "printedName": "createFromBytesEncoded(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytesEncoded:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC22createFromBytesEncodedyySays5UInt8VG_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytesEncoded", + "printedName": "createFromBytesEncoded(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytesEncoded:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC22createFromBytesEncodedyySays5UInt8VG_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromUIImage", + "printedName": "createFromUIImage(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromUIImage:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC17createFromUIImageyySo0G0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromUIImage", + "printedName": "createFromUIImage(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromUIImage:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC17createFromUIImageyySo0G0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)width", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)width", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)height", + "mangledName": "$s12CanvasNative14TNSImageBitmapC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)height", + "mangledName": "$s12CanvasNative14TNSImageBitmapC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)close", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5closeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)error", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5errorSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)error", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5errorSSSgvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)init", + "mangledName": "$s12CanvasNative14TNSImageBitmapCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap", + "mangledName": "$s12CanvasNative14TNSImageBitmapC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmap", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_fbo_render_mipmap", + "printedName": "TNS_OES_fbo_render_mipmap", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_fbo_render_mipmap", + "printedName": "CanvasNative.TNS_OES_fbo_render_mipmap", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap(im)init", + "mangledName": "$s12CanvasNative25TNS_OES_fbo_render_mipmapCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap", + "mangledName": "$s12CanvasNative25TNS_OES_fbo_render_mipmapC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_fbo_render_mipmap", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageSmoothingQuality", + "printedName": "TNSImageSmoothingQuality", + "children": [ + { + "kind": "Var", + "name": "Low", + "printedName": "Low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityLow", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO3LowyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Medium", + "printedName": "Medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityMedium", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO6MediumyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "High", + "printedName": "High", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityHigh", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO4HighyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageSmoothingQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageSmoothingQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageSmoothingQuality", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "CoreVideo", + "printedName": "CoreVideo", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "Utils", + "printedName": "Utils", + "children": [ + { + "kind": "Function", + "name": "createTextureCache", + "printedName": "createTextureCache(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreVideo.CVOpenGLESTextureCache?", + "children": [ + { + "kind": "TypeNominal", + "name": "CVOpenGLESTextureCache", + "printedName": "CoreVideo.CVOpenGLESTextureCache", + "usr": "c:@T@CVOpenGLESTextureCacheRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createTextureCache:", + "mangledName": "$s12CanvasNative5UtilsC18createTextureCacheySo017CVOpenGLESTextureF3RefaSgAA24TNSWebGLRenderingContextCFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImage", + "printedName": "createImage(_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreVideo.CVBuffer?", + "children": [ + { + "kind": "TypeNominal", + "name": "CVBuffer", + "printedName": "CoreVideo.CVBuffer", + "usr": "c:@T@CVBufferRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CVOpenGLESTextureCache", + "printedName": "CoreVideo.CVOpenGLESTextureCache", + "usr": "c:@T@CVOpenGLESTextureCacheRef" + }, + { + "kind": "TypeNominal", + "name": "CVBuffer", + "printedName": "CoreVideo.CVBuffer", + "usr": "c:@T@CVBufferRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreFoundation.CFDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "CFDictionary", + "printedName": "CoreFoundation.CFDictionary", + "usr": "c:@T@CFDictionaryRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createImage::::::::::", + "mangledName": "$s12CanvasNative5UtilsC11createImageySo11CVBufferRefaSgSo022CVOpenGLESTextureCacheG0a_AFSo012CFDictionaryG0aSgs6UInt32Vs5Int32VA2p2NSitFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupRender", + "printedName": "setupRender()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)setupRender", + "mangledName": "$s12CanvasNative5UtilsC11setupRenderAA9TNSRenderCyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawFrame", + "printedName": "drawFrame(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVPlayer", + "printedName": "AVFoundation.AVPlayer", + "usr": "c:objc(cs)AVPlayer" + }, + { + "kind": "TypeNominal", + "name": "AVPlayerItemVideoOutput", + "printedName": "AVFoundation.AVPlayerItemVideoOutput", + "usr": "c:objc(cs)AVPlayerItemVideoOutput" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)drawFrame:::::::", + "mangledName": "$s12CanvasNative5UtilsC9drawFrameyySo8AVPlayerC_So0F15ItemVideoOutputCSo6CGSizeVAA9TNSRenderCs5Int32VANSbtFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeToFile", + "printedName": "writeToFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)writeToFile::error:", + "mangledName": "$s12CanvasNative5UtilsC11writeToFileyySo6NSDataC_SStKFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Utils", + "printedName": "CanvasNative.Utils", + "usr": "c:@M@CanvasNative@objc(cs)Utils" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)Utils(im)init", + "mangledName": "$s12CanvasNative5UtilsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)Utils", + "mangledName": "$s12CanvasNative5UtilsC", + "moduleName": "CanvasNative", + "objc_name": "Utils", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "TNSWebGLShaderPrecisionFormat", + "children": [ + { + "kind": "Var", + "name": "rangeMin", + "printedName": "rangeMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)rangeMin", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMins5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)rangeMin", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMins5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rangeMax", + "printedName": "rangeMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)rangeMax", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMaxs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)rangeMax", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMaxs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "precision", + "printedName": "precision", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)precision", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC9precisions5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)precision", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC9precisions5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rangeMin:rangeMax:precision:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)initWithRangeMin:rangeMax:precision:", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMin0G3Max9precisionACs5Int32V_A2Htcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)init", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLShaderPrecisionFormat", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_half_float_linear", + "printedName": "TNS_OES_texture_half_float_linear", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_half_float_linear", + "printedName": "CanvasNative.TNS_OES_texture_half_float_linear", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear(im)init", + "mangledName": "$s12CanvasNative33TNS_OES_texture_half_float_linearCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear", + "mangledName": "$s12CanvasNative33TNS_OES_texture_half_float_linearC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_half_float_linear", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_float_linear", + "printedName": "TNS_OES_texture_float_linear", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_float_linear", + "printedName": "CanvasNative.TNS_OES_texture_float_linear", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear(im)init", + "mangledName": "$s12CanvasNative28TNS_OES_texture_float_linearCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear", + "mangledName": "$s12CanvasNative28TNS_OES_texture_float_linearC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_float_linear", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_color_buffer_half_float", + "printedName": "TNS_EXT_color_buffer_half_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_color_buffer_half_float", + "printedName": "CanvasNative.TNS_EXT_color_buffer_half_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)init", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "RGBA16F_EXT", + "printedName": "RGBA16F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)RGBA16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC08RGBA16F_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)RGBA16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC08RGBA16F_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F_EXT", + "printedName": "RGB16F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)RGB16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC07RGB16F_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)RGB16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC07RGB16F_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC038FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC038FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED_EXT", + "printedName": "UNSIGNED_NORMALIZED_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC020UNSIGNED_NORMALIZED_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC020UNSIGNED_NORMALIZED_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_color_buffer_half_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasRenderingContext2D", + "printedName": "TNSCanvasRenderingContext2D", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext2D", + "printedName": "CanvasNative.TNSCanvasRenderingContext2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)init:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DCyAcA0C0Ccfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "font", + "printedName": "font", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)font", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)font", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFont:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "filter", + "printedName": "filter", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)filter", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)filter", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFilter:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "globalAlpha", + "printedName": "globalAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)globalAlpha", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)globalAlpha", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setGlobalAlpha:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "globalCompositeOperation", + "printedName": "globalCompositeOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)globalCompositeOperation", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)globalCompositeOperation", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setGlobalCompositeOperation:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSmoothingEnabled", + "printedName": "imageSmoothingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)imageSmoothingEnabled", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)imageSmoothingEnabled", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setImageSmoothingEnabled:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSmoothingQuality", + "printedName": "imageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)imageSmoothingQuality", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)imageSmoothingQuality", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setImageSmoothingQuality:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineCap", + "printedName": "lineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineCap", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineCap", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineCap:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineDashOffset", + "printedName": "lineDashOffset", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineDashOffset", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineDashOffset", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineDashOffset:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineWidth", + "printedName": "lineWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineWidth", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineWidth", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineWidth:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineJoin", + "printedName": "lineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineJoin", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineJoin", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineJoin:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "miterLimit", + "printedName": "miterLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)miterLimit", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)miterLimit", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setMiterLimit:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowBlur", + "printedName": "shadowBlur", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowBlur", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowBlur", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowBlur:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowColor", + "printedName": "shadowColor", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowColor", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowColor", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowColor:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowOffsetX", + "printedName": "shadowOffsetX", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowOffsetX", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowOffsetX", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowOffsetX:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowOffsetY", + "printedName": "shadowOffsetY", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowOffsetY", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowOffsetY", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowOffsetY:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textAlign", + "printedName": "textAlign", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)textAlign", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)textAlign", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTextAlign:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textBaseline", + "printedName": "textBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)textBaseline", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)textBaseline", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTextBaseline:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setFillStyleWithString", + "printedName": "setFillStyleWithString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFillStyleWithString:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC22setFillStyleWithStringyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fillStyle", + "printedName": "fillStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)fillStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFillStyle:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setStrokeStyleWithString", + "printedName": "setStrokeStyleWithString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setStrokeStyleWithString:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24setStrokeStyleWithStringyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "strokeStyle", + "printedName": "strokeStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)strokeStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setStrokeStyle:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fillRect", + "printedName": "fillRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeRect", + "printedName": "strokeRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fillText", + "printedName": "fillText(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillText:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillTextyySS_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fillText", + "printedName": "fillText(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillText::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillTextyySS_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeText", + "printedName": "strokeText(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeText:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeTextyySS_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeText", + "printedName": "strokeText(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeText::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeTextyySS_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rect", + "printedName": "rect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)rect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4rectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:topLeft:topRight:bottomRight:bottomLeft:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRectWithX:y:width:height:topLeft:topRight:bottomRight:bottomLeft:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRect1x1y5width6height7topLeft0J5Right06bottomL00mK0ySf_S7ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:radii:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRectWithX:y:width:height:radii:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRect1x1y5width6height5radiiySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRect:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRectyySf_S3fSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fill", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fillyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillWithValue:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fill5valueyyp_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fill::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fillyyAA9TNSPath2DC_AA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stroke", + "printedName": "stroke()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)stroke", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6strokeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stroke", + "printedName": "stroke(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPath2D?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)stroke:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6strokeyyAA9TNSPath2DCSgF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "beginPath", + "printedName": "beginPath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)beginPath", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9beginPathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveTo", + "printedName": "moveTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)moveTo::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6moveToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineTo", + "printedName": "lineTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineTo::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6lineToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closePath", + "printedName": "closePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)closePath", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9closePathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arc:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC3arcyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arc::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC3arcyySf_S4fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arcTo", + "printedName": "arcTo(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arcTo:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC5arcToyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bezierCurveTo", + "printedName": "bezierCurveTo(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)bezierCurveTo::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13bezierCurveToyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)ellipse:::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7ellipseyySf_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)ellipse::::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7ellipseyySf_S6fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyypF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyAA9TNSPath2DC_AA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearRect", + "printedName": "clearRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clearRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9clearRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLineDash", + "printedName": "setLineDash(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineDash:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11setLineDashyySaySfGF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCanvas", + "printedName": "getCanvas()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getCanvas", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC03getA0AA0C0CyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createLinearGradient", + "printedName": "createLinearGradient(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLinearGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSLinearGradient", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSLinearGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createLinearGradient::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC20createLinearGradientyAA13TNSColorStyleC09TNSLinearH0CSf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRadialGradient", + "printedName": "createRadialGradient(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRadialGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSRadialGradient", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSRadialGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createRadialGradient::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC20createRadialGradientyAA13TNSColorStyleC09TNSRadialH0CSf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createConicGradient", + "printedName": "createConicGradient(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSConicGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSConicGradient", + "usr": "s:12CanvasNative13TNSColorStyleC16TNSConicGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createConicGradient:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC19createConicGradientyAA13TNSColorStyleC08TNSConicH0CSf_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createPattern", + "printedName": "createPattern(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createPattern::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13createPatternyypSgyp_AA20TNSPatternRepetitionOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setTransform", + "printedName": "setTransform(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTransform::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12setTransformyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scale", + "printedName": "scale(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)scale::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC5scaleyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rotate", + "printedName": "rotate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)rotate:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6rotateyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "translate", + "printedName": "translate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)translate::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9translateyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quadraticCurveTo", + "printedName": "quadraticCurveTo(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)quadraticCurveTo::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC16quadraticCurveToyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S8ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImageData", + "printedName": "createImageData(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createImageData::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15createImageDatayAA08TNSImageH0Cs5Int32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImageData", + "printedName": "createImageData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createImageData:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15createImageDatayAA08TNSImageH0CAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageData", + "printedName": "getImageData(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getImageData::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12getImageDatayAA08TNSImageH0CSf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putImageData", + "printedName": "putImageData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)putImageData:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12putImageDatayyAA08TNSImageH0C_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putImageData", + "printedName": "putImageData(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)putImageData:::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12putImageDatayyAA08TNSImageH0C_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLineDash", + "printedName": "getLineDash()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getLineDash", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11getLineDashSaySfGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)save", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4saveyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restore", + "printedName": "restore()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)restore", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7restoreyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "measureText", + "printedName": "measureText(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextMetrics", + "printedName": "CanvasNative.TNSTextMetrics", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)measureText:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11measureTextyAA14TNSTextMetricsCSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetTransform", + "printedName": "resetTransform()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)resetTransform", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14resetTransformyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transform", + "printedName": "transform(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)transform::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9transformyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbSf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbSf_SfAA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbAA9TNSPath2DC_S2fAA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInStroke", + "printedName": "isPointInStroke(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInStroke::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15isPointInStrokeySbSf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInStroke", + "printedName": "isPointInStroke(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInStroke:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15isPointInStrokeySbAA9TNSPath2DC_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext2D", + "printedName": "CanvasNative.TNSCanvasRenderingContext2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)init", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvasRenderingContext2D", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "superclassNames": [ + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_lose_context", + "printedName": "TNS_WEBGL_lose_context", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_lose_context", + "printedName": "CanvasNative.TNS_WEBGL_lose_context", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)initWithCanvas:", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC6canvasAcA9TNSCanvasC_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loseContext", + "printedName": "loseContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)loseContext", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC0E7ContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restoreContext", + "printedName": "restoreContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)restoreContext", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC14restoreContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_lose_context", + "printedName": "CanvasNative.TNS_WEBGL_lose_context", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)init", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_lose_context", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_etc", + "printedName": "TNS_WEBGL_compressed_texture_etc", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_etc", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_etc", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)init", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_R11_EAC", + "printedName": "COMPRESSED_R11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC18COMPRESSED_R11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC18COMPRESSED_R11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SIGNED_R11_EAC", + "printedName": "COMPRESSED_SIGNED_R11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SIGNED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_SIGNED_R11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SIGNED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_SIGNED_R11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RG11_EAC", + "printedName": "COMPRESSED_RG11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC19COMPRESSED_RG11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC19COMPRESSED_RG11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SIGNED_RG11_EAC", + "printedName": "COMPRESSED_SIGNED_RG11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SIGNED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC26COMPRESSED_SIGNED_RG11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SIGNED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC26COMPRESSED_SIGNED_RG11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB8_ETC2", + "printedName": "COMPRESSED_RGB8_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC20COMPRESSED_RGB8_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC20COMPRESSED_RGB8_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA8_ETC2_EAC", + "printedName": "COMPRESSED_RGBA8_ETC2_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGBA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_RGBA8_ETC2_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGBA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_RGBA8_ETC2_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_ETC2", + "printedName": "COMPRESSED_SRGB8_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC21COMPRESSED_SRGB8_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC21COMPRESSED_SRGB8_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "printedName": "COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC32COMPRESSED_SRGB8_ALPHA8_ETC2_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC32COMPRESSED_SRGB8_ALPHA8_ETC2_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "printedName": "COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC40COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC40COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "printedName": "COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC41COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC41COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_etc", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_shader_texture_lod", + "printedName": "TNS_EXT_shader_texture_lod", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_shader_texture_lod", + "printedName": "CanvasNative.TNS_EXT_shader_texture_lod", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod(im)init", + "mangledName": "$s12CanvasNative26TNS_EXT_shader_texture_lodCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod", + "mangledName": "$s12CanvasNative26TNS_EXT_shader_texture_lodC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_shader_texture_lod", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageAssetFormat", + "printedName": "TNSImageAssetFormat", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueACSi_tcfc", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueACSi_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueSivp", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueSivg", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "JPG", + "printedName": "JPG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatJPG", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3JPGyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "PNG", + "printedName": "PNG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatPNG", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3PNGyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "ICO", + "printedName": "ICO", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatICO", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3ICOyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "BMP", + "printedName": "BMP", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatBMP", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3BMPyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "TIFF", + "printedName": "TIFF", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatTIFF", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO4TIFFyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageAssetFormat", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextBaseLine", + "printedName": "TNSTextBaseLine", + "children": [ + { + "kind": "Var", + "name": "Top", + "printedName": "Top", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineTop", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO3TopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Hanging", + "printedName": "Hanging", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineHanging", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO7HangingyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Middle", + "printedName": "Middle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineMiddle", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6MiddleyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Alphabetic", + "printedName": "Alphabetic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineAlphabetic", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO10AlphabeticyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "Ideographic", + "printedName": "Ideographic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineIdeographic", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO11IdeographicyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "Bottom", + "printedName": "Bottom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineBottom", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6BottomyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextBaseLine?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextBaseLine?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative15TNSTextBaseLineO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextBaseLine", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "CanvasGLKView", + "printedName": "CanvasGLKView", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)init", + "mangledName": "$s12CanvasNative0A7GLKViewCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)initWithFrame:", + "mangledName": "$s12CanvasNative0A7GLKViewC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsDisplay", + "printedName": "setNeedsDisplay()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)setNeedsDisplay", + "mangledName": "$s12CanvasNative0A7GLKViewC15setNeedsDisplayyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "setNeedsDisplay", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNeedsDisplay", + "printedName": "setNeedsDisplay(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)setNeedsDisplayInRect:", + "mangledName": "$s12CanvasNative0A7GLKViewC15setNeedsDisplayyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "setNeedsDisplayInRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:context:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "EAGLContext", + "printedName": "OpenGLES.EAGLContext", + "usr": "c:objc(cs)EAGLContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)initWithFrame:context:", + "mangledName": "$s12CanvasNative0A7GLKViewC5frame7contextACSo6CGRectV_So11EAGLContextCtcfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:context:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView", + "mangledName": "$s12CanvasNative0A7GLKViewC", + "moduleName": "CanvasNative", + "objc_name": "CanvasGLKView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)GLKView", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "GLKit.GLKView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CanvasCPUView", + "printedName": "CanvasCPUView", + "children": [ + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative0A7CPUViewC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasCPUView", + "printedName": "CanvasNative.CanvasCPUView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)init", + "mangledName": "$s12CanvasNative0A7CPUViewCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasCPUView", + "printedName": "CanvasNative.CanvasCPUView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)initWithFrame:", + "mangledName": "$s12CanvasNative0A7CPUViewC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)drawRect:", + "mangledName": "$s12CanvasNative0A7CPUViewC4drawyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView", + "mangledName": "$s12CanvasNative0A7CPUViewC", + "moduleName": "CanvasNative", + "objc_name": "CanvasCPUView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RenderListener", + "printedName": "RenderListener", + "children": [ + { + "kind": "Function", + "name": "didDraw", + "printedName": "didDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative14RenderListenerP7didDrawyyF", + "mangledName": "$s12CanvasNative14RenderListenerP7didDrawyyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.RenderListener>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12CanvasNative14RenderListenerP", + "mangledName": "$s12CanvasNative14RenderListenerP", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextType", + "printedName": "ContextType", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO4noneyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO4noneyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Var", + "name": "webGL", + "printedName": "webGL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO5webGLyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO5webGLyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Var", + "name": "twoD", + "printedName": "twoD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO4twoDyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO4twoDyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.ContextType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11ContextTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueACSgSi_tcfc", + "moduleName": "CanvasNative", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11ContextTypeO8rawValueSivp", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueSivp", + "moduleName": "CanvasNative", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11ContextTypeO8rawValueSivg", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueSivg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12CanvasNative11ContextTypeO", + "mangledName": "$s12CanvasNative11ContextTypeO", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GLRenderer", + "printedName": "GLRenderer", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvp", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvg", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvs", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvM", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateDirection", + "printedName": "updateDirection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC15updateDirectionyySSF", + "mangledName": "$s12CanvasNative10GLRendererC15updateDirectionyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "invalidateState", + "printedName": "invalidateState", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivp", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivg", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivs", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivs", + "moduleName": "CanvasNative", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivM", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvp", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvg", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvs", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64VvM", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64VvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC4viewSo6UIViewCvp", + "mangledName": "$s12CanvasNative10GLRendererC4viewSo6UIViewCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC4viewSo6UIViewCvg", + "mangledName": "$s12CanvasNative10GLRendererC4viewSo6UIViewCvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "didMoveOffMain", + "printedName": "didMoveOffMain", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvp", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvg", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvs", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvM", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferWidth", + "printedName": "drawingBufferWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC18drawingBufferWidthSivp", + "mangledName": "$s12CanvasNative10GLRendererC18drawingBufferWidthSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC18drawingBufferWidthSivg", + "mangledName": "$s12CanvasNative10GLRendererC18drawingBufferWidthSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferHeight", + "printedName": "drawingBufferHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC19drawingBufferHeightSivp", + "mangledName": "$s12CanvasNative10GLRendererC19drawingBufferHeightSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC19drawingBufferHeightSivg", + "mangledName": "$s12CanvasNative10GLRendererC19drawingBufferHeightSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC5widthSfvp", + "mangledName": "$s12CanvasNative10GLRendererC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC5widthSfvg", + "mangledName": "$s12CanvasNative10GLRendererC5widthSfvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC6heightSfvp", + "mangledName": "$s12CanvasNative10GLRendererC6heightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC6heightSfvg", + "mangledName": "$s12CanvasNative10GLRendererC6heightSfvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setupContext", + "printedName": "setupContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC12setupContextyyF", + "mangledName": "$s12CanvasNative10GLRendererC12setupContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(useCpu:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GLRenderer", + "printedName": "CanvasNative.GLRenderer", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10GLRendererC6useCpuACSb_tcfc", + "mangledName": "$s12CanvasNative10GLRendererC6useCpuACSb_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setRenderListener", + "printedName": "setRenderListener(listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.RenderListener?", + "children": [ + { + "kind": "TypeNominal", + "name": "RenderListener", + "printedName": "CanvasNative.RenderListener", + "usr": "s:12CanvasNative14RenderListenerP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC17setRenderListener8listeneryAA0eF0_pSg_tF", + "mangledName": "$s12CanvasNative10GLRendererC17setRenderListener8listeneryAA0eF0_pSg_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isOpaque", + "printedName": "isOpaque", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvp", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvg", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvs", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvs", + "moduleName": "CanvasNative", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvM", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "ensureIsContextIsCurrent", + "printedName": "ensureIsContextIsCurrent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC015ensureIsContextE7CurrentSbyF", + "mangledName": "$s12CanvasNative10GLRendererC015ensureIsContextE7CurrentSbyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resize", + "printedName": "resize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6resizeyyF", + "mangledName": "$s12CanvasNative10GLRendererC6resizeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setup", + "printedName": "setup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5setupyyF", + "mangledName": "$s12CanvasNative10GLRendererC5setupyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "contextType", + "printedName": "contextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovp", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovg", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovs", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0OvM", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "render", + "printedName": "render()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6renderyyF", + "mangledName": "$s12CanvasNative10GLRendererC6renderyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5flushyyF", + "mangledName": "$s12CanvasNative10GLRendererC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ensureIsReady", + "printedName": "ensureIsReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC13ensureIsReadyyyF", + "mangledName": "$s12CanvasNative10GLRendererC13ensureIsReadyyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5pauseyyF", + "mangledName": "$s12CanvasNative10GLRendererC5pauseyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6resumeyyF", + "mangledName": "$s12CanvasNative10GLRendererC6resumeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "glkView", + "printedName": "glkView(_:drawIn:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GLKView", + "printedName": "GLKit.GLKView", + "usr": "c:objc(cs)GLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer(im)glkView:drawInRect:", + "mangledName": "$s12CanvasNative10GLRendererC7glkView_6drawInySo7GLKViewC_So6CGRectVtF", + "moduleName": "CanvasNative", + "objc_name": "glkView:drawInRect:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GLRenderer", + "printedName": "CanvasNative.GLRenderer", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer(im)init", + "mangledName": "$s12CanvasNative10GLRendererCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer", + "mangledName": "$s12CanvasNative10GLRendererC", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSIndexedParameter", + "printedName": "TNSIndexedParameter", + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSIndexedParameter", + "mangledName": "$s12CanvasNative19TNSIndexedParameterC", + "moduleName": "CanvasNative", + "objc_name": "TNSIndexedParameter", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_color_buffer_float", + "printedName": "TNS_EXT_color_buffer_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_color_buffer_float", + "printedName": "CanvasNative.TNS_EXT_color_buffer_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)init", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "R16F", + "printedName": "R16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16F", + "printedName": "RG16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RG16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RG16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F", + "printedName": "RGB16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RGB16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC6RGB16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RGB16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC6RGB16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32F", + "printedName": "R32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32F", + "printedName": "RG32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RG32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RG32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32F", + "printedName": "RGBA32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RGBA32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC7RGBA32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RGBA32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC7RGBA32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R11F_G11F_B10F", + "printedName": "R11F_G11F_B10F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC14R11F_G11F_B10Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC14R11F_G11F_B10Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_color_buffer_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCompositeOperationType", + "printedName": "TNSCompositeOperationType", + "children": [ + { + "kind": "Var", + "name": "SourceOver", + "printedName": "SourceOver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceOver", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SourceOveryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "SourceIn", + "printedName": "SourceIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceIn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8SourceInyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "SourceOut", + "printedName": "SourceOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceOut", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9SourceOutyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "SourceAtop", + "printedName": "SourceAtop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceAtop", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SourceAtopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "DestinationOver", + "printedName": "DestinationOver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationOver", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO15DestinationOveryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "DestinationIn", + "printedName": "DestinationIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationIn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO13DestinationInyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "DestinationOut", + "printedName": "DestinationOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationOut", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO14DestinationOutyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "DestinationAtop", + "printedName": "DestinationAtop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationAtop", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO15DestinationAtopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "Lighter", + "printedName": "Lighter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLighter", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7LighteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "Copy", + "printedName": "Copy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeCopy", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO4CopyyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "Xor", + "printedName": "Xor", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeXor", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO3XoryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "Multiply", + "printedName": "Multiply", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeMultiply", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8MultiplyyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "Screen", + "printedName": "Screen", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeScreen", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6ScreenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "Overlay", + "printedName": "Overlay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeOverlay", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7OverlayyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "Darken", + "printedName": "Darken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDarken", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6DarkenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "Lighten", + "printedName": "Lighten", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLighten", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7LightenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "ColorDodge", + "printedName": "ColorDodge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColorDodge", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10ColorDodgeyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "ColorBurn", + "printedName": "ColorBurn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColorBurn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9ColorBurnyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "HardLight", + "printedName": "HardLight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeHardLight", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9HardLightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "SoftLight", + "printedName": "SoftLight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSoftLight", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9SoftLightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "Difference", + "printedName": "Difference", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDifference", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10DifferenceyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 20 + }, + { + "kind": "Var", + "name": "Exclusion", + "printedName": "Exclusion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeExclusion", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9ExclusionyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 21 + }, + { + "kind": "Var", + "name": "Hue", + "printedName": "Hue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeHue", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO3HueyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 22 + }, + { + "kind": "Var", + "name": "Saturation", + "printedName": "Saturation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSaturation", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SaturationyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 23 + }, + { + "kind": "Var", + "name": "Color", + "printedName": "Color", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColor", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO5ColoryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 24 + }, + { + "kind": "Var", + "name": "Luminosity", + "printedName": "Luminosity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLuminosity", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10LuminosityyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 25 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCompositeOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCompositeOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO", + "moduleName": "CanvasNative", + "objc_name": "TNSCompositeOperationType", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSImageAsset", + "printedName": "TNSImageAsset", + "children": [ + { + "kind": "Var", + "name": "_queue", + "printedName": "_queue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cpy)_queue", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvpZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cm)_queue", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvgZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cm)set_queue:", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvsZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvMZ", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvMZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)init", + "mangledName": "$s12CanvasNative13TNSImageAssetCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loadImageFromPath", + "printedName": "loadImageFromPath(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromPathWithPath:", + "mangledName": "$s12CanvasNative13TNSImageAssetC17loadImageFromPath4pathSbSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromUrl", + "printedName": "loadImageFromUrl(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromUrlWithUrl:", + "mangledName": "$s12CanvasNative13TNSImageAssetC16loadImageFromUrl3urlSbSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromUrlAsync", + "printedName": "loadImageFromUrlAsync(url:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromUrlAsyncWithUrl:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC21loadImageFromUrlAsync3url8callbackySS_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromPathAsync", + "printedName": "loadImageFromPathAsync(path:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromPathAsyncWithPath:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC22loadImageFromPathAsync4path8callbackySS_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBuffer", + "printedName": "loadImageFromBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBuffer:", + "mangledName": "$s12CanvasNative13TNSImageAssetC19loadImageFromBufferySbSo6NSDataCF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBufferAsync", + "printedName": "loadImageFromBufferAsync(_:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBufferAsync:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC24loadImageFromBufferAsync_8callbackySo6NSDataC_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBytes", + "printedName": "loadImageFromBytes(array:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBytesWithArray:", + "mangledName": "$s12CanvasNative13TNSImageAssetC18loadImageFromBytes5arraySbSays5UInt8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBytesAsync", + "printedName": "loadImageFromBytesAsync(array:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBytesAsyncWithArray:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC23loadImageFromBytesAsync5array8callbackySays5UInt8VG_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromImage", + "printedName": "loadImageFromImage(image:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromImageWithImage:", + "mangledName": "$s12CanvasNative13TNSImageAssetC013loadImageFromF05imageSbSo7UIImageC_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromImageAsync", + "printedName": "loadImageFromImageAsync(image:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromImageAsyncWithImage:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC013loadImageFromF5Async5image8callbackySo7UIImageC_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRawBytes", + "printedName": "getRawBytes()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)getRawBytes", + "mangledName": "$s12CanvasNative13TNSImageAssetC11getRawBytesSpys5UInt8VGSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)width", + "mangledName": "$s12CanvasNative13TNSImageAssetC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)width", + "mangledName": "$s12CanvasNative13TNSImageAssetC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)height", + "mangledName": "$s12CanvasNative13TNSImageAssetC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)height", + "mangledName": "$s12CanvasNative13TNSImageAssetC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "flipX", + "printedName": "flipX()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)flipX", + "mangledName": "$s12CanvasNative13TNSImageAssetC5flipXyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flipY", + "printedName": "flipY()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)flipY", + "mangledName": "$s12CanvasNative13TNSImageAssetC5flipYyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scale", + "printedName": "scale(x:y:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)scaleWithX:y:", + "mangledName": "$s12CanvasNative13TNSImageAssetC5scale1x1yys6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(path:format:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)saveWithPath:format:", + "mangledName": "$s12CanvasNative13TNSImageAssetC4save4path6formatSbSS_AA0cD6FormatOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveAsync", + "printedName": "saveAsync(path:format:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)saveAsyncWithPath:format:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC9saveAsync4path6format8callbackySS_AA0cD6FormatOySbctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)error", + "mangledName": "$s12CanvasNative13TNSImageAssetC5errorSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)error", + "mangledName": "$s12CanvasNative13TNSImageAssetC5errorSSSgvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset", + "mangledName": "$s12CanvasNative13TNSImageAssetC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageAsset", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "Var", + "name": "Default", + "printedName": "Default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapColorSpaceConversion.Type) -> CanvasNative.TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion@TNSImageBitmapColorSpaceConversionDefault", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO7DefaultyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "None", + "printedName": "None", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapColorSpaceConversion.Type) -> CanvasNative.TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion@TNSImageBitmapColorSpaceConversionNone", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO4NoneyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapColorSpaceConversion", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapResizeQuality", + "printedName": "TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "Var", + "name": "Low", + "printedName": "Low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityLow", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO3LowyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Medium", + "printedName": "Medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityMedium", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO6MediumyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "High", + "printedName": "High", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityHigh", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO4HighyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Pixelated", + "printedName": "Pixelated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityPixelated", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO9PixelatedyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapResizeQuality", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasRenderingContext", + "printedName": "TNSCanvasRenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext(im)init", + "mangledName": "$s12CanvasNative25TNSCanvasRenderingContextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "mangledName": "$s12CanvasNative25TNSCanvasRenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvasRenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_draw_buffers", + "printedName": "TNS_WEBGL_draw_buffers", + "children": [ + { + "kind": "Var", + "name": "COLOR_ATTACHMENT0_WEBGL", + "printedName": "COLOR_ATTACHMENT0_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT0_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT0_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT1_WEBGL", + "printedName": "COLOR_ATTACHMENT1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT2_WEBGL", + "printedName": "COLOR_ATTACHMENT2_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT2_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT2_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT3_WEBGL", + "printedName": "COLOR_ATTACHMENT3_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT3_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT3_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT4_WEBGL", + "printedName": "COLOR_ATTACHMENT4_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT4_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT4_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT5_WEBGL", + "printedName": "COLOR_ATTACHMENT5_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT5_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT5_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT6_WEBGL", + "printedName": "COLOR_ATTACHMENT6_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT6_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT6_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT7_WEBGL", + "printedName": "COLOR_ATTACHMENT7_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT7_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT7_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT8_WEBGL", + "printedName": "COLOR_ATTACHMENT8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT9_WEBGL", + "printedName": "COLOR_ATTACHMENT9_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT9_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT9_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT10_WEBGL", + "printedName": "COLOR_ATTACHMENT10_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT10_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT10_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT11_WEBGL", + "printedName": "COLOR_ATTACHMENT11_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT11_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT11_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT12_WEBGL", + "printedName": "COLOR_ATTACHMENT12_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT12_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT12_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT13_WEBGL", + "printedName": "COLOR_ATTACHMENT13_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT13_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT13_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT14_WEBGL", + "printedName": "COLOR_ATTACHMENT14_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT14_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT14_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT15_WEBGL", + "printedName": "COLOR_ATTACHMENT15_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT15_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT15_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER0_WEBGL", + "printedName": "DRAW_BUFFER0_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER0_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER0_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER1_WEBGL", + "printedName": "DRAW_BUFFER1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER2_WEBGL", + "printedName": "DRAW_BUFFER2_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER2_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER2_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER3_WEBGL", + "printedName": "DRAW_BUFFER3_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER3_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER3_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER4_WEBGL", + "printedName": "DRAW_BUFFER4_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER4_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER4_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER5_WEBGL", + "printedName": "DRAW_BUFFER5_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER5_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER5_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER6_WEBGL", + "printedName": "DRAW_BUFFER6_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER6_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER6_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER7_WEBGL", + "printedName": "DRAW_BUFFER7_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER7_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER7_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER8_WEBGL", + "printedName": "DRAW_BUFFER8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER9_WEBGL", + "printedName": "DRAW_BUFFER9_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER9_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER9_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER10_WEBGL", + "printedName": "DRAW_BUFFER10_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER10_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER10_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER11_WEBGL", + "printedName": "DRAW_BUFFER11_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER11_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER11_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER12_WEBGL", + "printedName": "DRAW_BUFFER12_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER12_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER12_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER13_WEBGL", + "printedName": "DRAW_BUFFER13_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER13_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER13_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER14_WEBGL", + "printedName": "DRAW_BUFFER14_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER14_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER14_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER15_WEBGL", + "printedName": "DRAW_BUFFER15_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER15_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER15_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COLOR_ATTACHMENTS_WEBGL", + "printedName": "MAX_COLOR_ATTACHMENTS_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)MAX_COLOR_ATTACHMENTS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC022MAX_COLOR_ATTACHMENTS_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)MAX_COLOR_ATTACHMENTS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC022MAX_COLOR_ATTACHMENTS_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_DRAW_BUFFERS_WEBGL", + "printedName": "MAX_DRAW_BUFFERS_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)MAX_DRAW_BUFFERS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC017MAX_DRAW_BUFFERS_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)MAX_DRAW_BUFFERS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC017MAX_DRAW_BUFFERS_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "drawBuffersWEBGL", + "printedName": "drawBuffersWEBGL(buffers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)drawBuffersWEBGLWithBuffers:", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC0e7BuffersD00F0ySays5Int32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_draw_buffers", + "printedName": "CanvasNative.TNS_WEBGL_draw_buffers", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)init", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_draw_buffers", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_depth_texture", + "printedName": "TNS_WEBGL_depth_texture", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_depth_texture", + "printedName": "CanvasNative.TNS_WEBGL_depth_texture", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(im)init", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_24_8_WEBGL", + "printedName": "UNSIGNED_INT_24_8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(py)UNSIGNED_INT_24_8_WEBGL", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC018UNSIGNED_INT_24_8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(im)UNSIGNED_INT_24_8_WEBGL", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC018UNSIGNED_INT_24_8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_depth_texture", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "CanvasColorStyleType", + "printedName": "CanvasColorStyleType", + "children": [ + { + "kind": "Var", + "name": "Color", + "printedName": "Color", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypeColor", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO0C0yA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Gradient", + "printedName": "Gradient", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypeGradient", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8GradientyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Pattern", + "printedName": "Pattern", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypePattern", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO7PatternyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueSSvp", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueSSvg", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueSSvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.CanvasColorStyleType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO", + "moduleName": "CanvasNative", + "objc_name": "CanvasColorStyleType", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "children": [ + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle(im)getStyleType", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP03getE4TypeAA0adeG0OyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.ICanvasColorStyle>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPatternRepetition", + "printedName": "TNSPatternRepetition", + "children": [ + { + "kind": "Var", + "name": "Repeat", + "printedName": "Repeat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeat", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO6RepeatyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "RepeatX", + "printedName": "RepeatX", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeatX", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO7RepeatXyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "RepeatY", + "printedName": "RepeatY", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeatY", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO7RepeatYyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "NoRepeat", + "printedName": "NoRepeat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionNoRepeat", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8NoRepeatyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPatternRepetition?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPatternRepetition?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValueACSgSS_tcfc", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValueACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSColorStyle", + "printedName": "TNSColorStyle", + "children": [ + { + "kind": "TypeDecl", + "name": "TNSColor", + "printedName": "TNSColor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColor", + "printedName": "CanvasNative.TNSColorStyle.TNSColor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0CyAESScfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0CyAESScfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "color", + "printedName": "color", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C5colorSSvp", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C5colorSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C5colorSSvg", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C5colorSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C03getD4TypeAA0a5ColordF0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C03getD4TypeAA0a5ColordF0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColor", + "printedName": "CanvasNative.TNSColorStyle.TNSColor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0CAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0CAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C", + "moduleName": "CanvasNative", + "objc_name": "TNSColor", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSGradient", + "printedName": "TNSGradient", + "children": [ + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC03getD4TypeAA0a5ColordG0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC03getD4TypeAA0a5ColordG0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addColorStop", + "printedName": "addColorStop(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC12addColorStopyySf_SStF", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC12addColorStopyySf_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSGradient", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientCAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientCAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLinearGradient", + "printedName": "TNSLinearGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSLinearGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC17TNSLinearGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSLinearGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSRadialGradient", + "printedName": "TNSRadialGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSRadialGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC17TNSRadialGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSRadialGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSConicGradient", + "printedName": "TNSConicGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC16TNSConicGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC16TNSConicGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSConicGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPattern", + "printedName": "TNSPattern", + "children": [ + { + "kind": "Function", + "name": "setTransform", + "printedName": "setTransform(matrix:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC12setTransform6matrixyAA12TNSDOMMatrixC_tF", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC12setTransform6matrixyAA12TNSDOMMatrixC_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC03getD4TypeAA0a5ColordG0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC03getD4TypeAA0a5ColordG0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPattern", + "printedName": "CanvasNative.TNSColorStyle.TNSPattern", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternCAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternCAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC", + "moduleName": "CanvasNative", + "objc_name": "TNSPattern", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColorStyle", + "printedName": "CanvasNative.TNSColorStyle", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle(im)init", + "mangledName": "$s12CanvasNative13TNSColorStyleCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle", + "mangledName": "$s12CanvasNative13TNSColorStyleC", + "moduleName": "CanvasNative", + "objc_name": "TNSColorStyle", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextMetrics", + "printedName": "TNSTextMetrics", + "children": [ + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)width", + "mangledName": "$s12CanvasNative14TNSTextMetricsC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)width", + "mangledName": "$s12CanvasNative14TNSTextMetricsC5widthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxLeft", + "printedName": "actualBoundingBoxLeft", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxLeft", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21actualBoundingBoxLeftSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxLeft", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21actualBoundingBoxLeftSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxRight", + "printedName": "actualBoundingBoxRight", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxRight", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22actualBoundingBoxRightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxRight", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22actualBoundingBoxRightSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxAscent", + "printedName": "actualBoundingBoxAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC23actualBoundingBoxAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC23actualBoundingBoxAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxDescent", + "printedName": "actualBoundingBoxDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC24actualBoundingBoxDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC24actualBoundingBoxDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fontBoundingBoxAscent", + "printedName": "fontBoundingBoxAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)fontBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21fontBoundingBoxAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)fontBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21fontBoundingBoxAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fontBoundingBoxDescent", + "printedName": "fontBoundingBoxDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)fontBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22fontBoundingBoxDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)fontBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22fontBoundingBoxDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emHeightAscent", + "printedName": "emHeightAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)emHeightAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC14emHeightAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)emHeightAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC14emHeightAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emHeightDescent", + "printedName": "emHeightDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)emHeightDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15emHeightDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)emHeightDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15emHeightDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hangingBaseline", + "printedName": "hangingBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)hangingBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15hangingBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)hangingBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15hangingBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alphabeticBaseline", + "printedName": "alphabeticBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)alphabeticBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC18alphabeticBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)alphabeticBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC18alphabeticBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ideographicBaseline", + "printedName": "ideographicBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)ideographicBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC19ideographicBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)ideographicBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC19ideographicBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextMetrics", + "printedName": "CanvasNative.TNSTextMetrics", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)init", + "mangledName": "$s12CanvasNative14TNSTextMetricsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics", + "mangledName": "$s12CanvasNative14TNSTextMetricsC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextMetrics", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "Function", + "name": "resize", + "printedName": "resize(_:fillWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Iterator.Element" + } + ], + "declKind": "Func", + "usr": "s:Sm12CanvasNativeE6resize_8fillWithySi_7ElementQztF", + "mangledName": "$sSm12CanvasNativeE6resize_8fillWithySi_7ElementQztF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeReplaceableCollection>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:Sm", + "mangledName": "$sSm", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Collection, τ_0_0.SubSequence : Swift.RangeReplaceableCollection>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "usr": "s:ST", + "mangledName": "$sST" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 215, + "length": 4, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 229, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 245, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSAnimationFrame.swift", + "kind": "Dictionary", + "offset": 304, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSAnimationFrame.swift", + "kind": "FloatLiteral", + "offset": 403, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSFillRule.swift", + "kind": "IntegerLiteral", + "offset": 205, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageData.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 12, + "value": "\"CanvasNative.TNSImageData\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextDirection.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNS_ANGLE_instanced_arrays.swift", + "kind": "StringLiteral", + "offset": 299, + "length": 26, + "value": "\"CanvasNative.TNS_ANGLE_instanced_arrays\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 308, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 419, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1191, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1305, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "StringLiteral", + "offset": 1345, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1392, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1437, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 1621, + "length": 9, + "value": "[0, 0, 0, 0]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1657, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 1723, + "length": 24, + "value": "[true, true, true, true]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1779, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1870, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1910, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1948, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2038, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2181, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2231, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 4155, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7112, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7731, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 8376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 9867, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 10603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "StringLiteral", + "offset": 219, + "length": 9, + "value": "\"CanvasNative.TNSCanvas\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 328, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 354, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 403, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 492, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 599, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextEncoder.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapPremultiplyAlpha.swift", + "kind": "IntegerLiteral", + "offset": 262, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapPremultiplyAlpha.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineJoin.swift", + "kind": "IntegerLiteral", + "offset": 200, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineJoin.swift", + "kind": "IntegerLiteral", + "offset": 215, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGL2RenderingContext.swift", + "kind": "Array", + "offset": 20793, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGL2RenderingContext.swift", + "kind": "Array", + "offset": 20845, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineCap.swift", + "kind": "IntegerLiteral", + "offset": 196, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineCap.swift", + "kind": "IntegerLiteral", + "offset": 211, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSPath2D.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextDecoder.swift", + "kind": "IntegerLiteral", + "offset": 223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLActiveInfo.swift", + "kind": "StringLiteral", + "offset": 166, + "length": 18, + "value": "\"CanvasNative.TNSWebGLActiveInfo\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 366, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 427, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "StringLiteral", + "offset": 585, + "length": 274, + "value": "\"precision highp float;\nattribute vec4 aPosition;\nuniform mat4 uTextureMatrix;\nvarying vec2 TexCoord;\nvoid main(){\nvec2 clipSpace = (1.0 - 2.0 * aPosition.xy);\nTexCoord = aPosition.xy;\ngl_Position = vec4(clipSpace, 0.0, 1.0);\n}\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "StringLiteral", + "offset": 906, + "length": 170, + "value": "\"precision highp float;\nvarying vec2 TexCoord;\nuniform sampler2D uSampler;\nvoid main(){\ngl_FragColor = texture2D(uSampler, TexCoord);\n}\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "IntegerLiteral", + "offset": 278, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 332, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 360, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 453, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 543, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 617, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 674, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "StringLiteral", + "offset": 721, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 825, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 939, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 983, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 1033, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2242, + "length": 6, + "value": "0x1401" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2278, + "length": 6, + "value": "0x1406" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 6, + "value": "0x140B" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2370, + "length": 6, + "value": "0x8363" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2423, + "length": 6, + "value": "0x8033" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2476, + "length": 6, + "value": "0x8034" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2516, + "length": 6, + "value": "0x1909" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2552, + "length": 6, + "value": "0x1906" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2598, + "length": 6, + "value": "0x190A" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2632, + "length": 6, + "value": "0x1907" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2667, + "length": 6, + "value": "0x1908" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 15164, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "StringLiteral", + "offset": 204, + "length": 24, + "value": "\"CanvasNative.TNSWebGLRenderingContext\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmap.swift", + "kind": "StringLiteral", + "offset": 233, + "length": 22, + "value": "\"Failed to load image\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmap.swift", + "kind": "StringLiteral", + "offset": 174, + "length": 14, + "value": "\"CanvasNative.TNSImageBitmap\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageSmoothingQuality.swift", + "kind": "IntegerLiteral", + "offset": 240, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageSmoothingQuality.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLShaderPrecisionFormat.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 29, + "value": "\"CanvasNative.TNSWebGLShaderPrecisionFormat\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCanvasRenderingContext2D.swift", + "kind": "BooleanLiteral", + "offset": 2373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCanvasRenderingContext2D.swift", + "kind": "StringLiteral", + "offset": 285, + "length": 27, + "value": "\"CanvasNative.TNSCanvasRenderingContext2D\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNS_WEBGL_lose_context.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 22, + "value": "\"CanvasNative.TNS_WEBGL_lose_context\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 810, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 823, + "length": 3, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 836, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 849, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 10, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 11, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 6, + "value": "5" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 180, + "length": 13, + "value": "\"CanvasNative.CanvasGLKView\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 3787, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 4060, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 4545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 4664, + "length": 5, + "value": "\"ltr\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 7109, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 2970, + "length": 10, + "value": "\"CanvasNative.GLRenderer\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSIndexedParameter.swift", + "kind": "BooleanLiteral", + "offset": 226, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 287, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 9, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 324, + "length": 10, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 344, + "length": 15, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 369, + "length": 13, + "value": "5" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 392, + "length": 14, + "value": "6" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 416, + "length": 15, + "value": "7" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 441, + "length": 7, + "value": "8" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 3, + "value": "10" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 485, + "length": 8, + "value": "11" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "12" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 519, + "length": 7, + "value": "13" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "14" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 552, + "length": 7, + "value": "15" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 569, + "length": 10, + "value": "16" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 589, + "length": 9, + "value": "17" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 9, + "value": "18" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 627, + "length": 9, + "value": "19" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 10, + "value": "20" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 666, + "length": 9, + "value": "21" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 685, + "length": 3, + "value": "22" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 10, + "value": "23" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 718, + "length": 5, + "value": "24" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 10, + "value": "25" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAsset.swift", + "kind": "IntegerLiteral", + "offset": 217, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapColorSpaceConversion.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 4, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 249, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 273, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 291, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1047, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1081, + "length": 8, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 2154, + "length": 8, + "value": "\"CanvasNative.TNSColor\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 2616, + "length": 11, + "value": "\"CanvasNative.TNSGradient\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 3775, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 10, + "value": "\"CanvasNative.TNSPattern\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextMetrics.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextMetrics.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 14, + "value": "\"CanvasNative.TNSTextMetrics\"" + } + ] +} \ No newline at end of file diff --git a/packages/canvas/src-native/canvas-ios/dist/Release-iphoneos/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftinterface b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.private.swiftinterface similarity index 97% rename from packages/canvas/src-native/canvas-ios/dist/Release-iphoneos/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftinterface rename to packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.private.swiftinterface index 31a22a2bf..8d3fa7d65 100644 --- a/packages/canvas/src-native/canvas-ios/dist/Release-iphoneos/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftinterface +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) // swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CanvasNative +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation @_exported import CanvasNative import CoreVideo @@ -11,6 +12,7 @@ import OpenGLES import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSDOMMatrix) public class TNSDOMMatrix : ObjectiveC.NSObject { @objc override dynamic public init() @objc public var a: Swift.Float { @@ -235,6 +237,10 @@ import _Concurrency @objc get @objc set } + @objc @_Concurrency.MainActor(unsafe) public var scaling: Swift.Bool { + @objc get + @objc set + } @objc @_Concurrency.MainActor(unsafe) public static func createSVGMatrix() -> CanvasNative.TNSDOMMatrix @objc @_Concurrency.MainActor(unsafe) public var handleInvalidationManually: Swift.Bool { @objc get @@ -248,6 +254,8 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ format: Swift.Float, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func snapshot() -> [Swift.UInt8] + @objc @_Concurrency.MainActor(unsafe) public func getImage(_ flip: Swift.Bool) -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func snapshotEncoded() -> [Swift.UInt8] @objc @_Concurrency.MainActor(unsafe) public var isGL: Swift.Bool { @objc get } @@ -265,11 +273,12 @@ import _Concurrency } @objc @_Concurrency.MainActor(unsafe) public func doDraw() @objc @_Concurrency.MainActor(unsafe) public func flush() - @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, useCpu: Swift.Bool) + @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, useCpu: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) public func setListener(_ listener: CanvasNative.TNSCanvasListener?) @objc @_Concurrency.MainActor(unsafe) public var fps: Swift.Float { @objc get } + @objc @_Concurrency.MainActor(unsafe) public static func layoutView(_ view: UIKit.UIView, _ width: CoreFoundation.CGFloat, _ height: CoreFoundation.CGFloat) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @objc deinit @objc @_Concurrency.MainActor(unsafe) public func resume() @@ -279,7 +288,15 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func handleMoveOffMain() @objc @_Concurrency.MainActor(unsafe) public func handleMoveToMain() @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? - @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Foundation.NSDictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, attributes: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Swift.Dictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, contextAttributes: CanvasNative.TNSContextAttributes) -> CanvasNative.TNSCanvasRenderingContext? +} +@_inheritsConvenienceInitializers @objc(TNSContextAttributes) @objcMembers public class TNSContextAttributes : ObjectiveC.NSObject, Swift.Codable { + @objc override dynamic public init() + @objc deinit + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } @_inheritsConvenienceInitializers @objcMembers @objc(TNSTextEncoder) public class TNSTextEncoder : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1363,6 +1380,9 @@ extension Swift.RangeReplaceableCollection { @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float) @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float, _ anticlockwise: Swift.Bool) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ topLeft: Swift.Float, _ topRight: Swift.Float, _ bottomRight: Swift.Float, _ bottomLeft: Swift.Float) + @objc public func roundRectWithRadii(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: [Swift.Float]) } @_inheritsConvenienceInitializers @objcMembers @objc(TNS_OES_texture_half_float) public class TNS_OES_texture_half_float : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1432,8 +1452,10 @@ extension Swift.RangeReplaceableCollection { @objc set } @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @objc @_Concurrency.MainActor(unsafe) public func toImage() -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func toData() -> Foundation.NSData? @objc deinit } @objcMembers @objc(TNSWebGLRenderingContext) public class TNSWebGLRenderingContext : CanvasNative.TNSCanvasRenderingContext { @@ -2586,7 +2608,8 @@ extension Swift.RangeReplaceableCollection { @objc public static func createTextureCache(_ context: CanvasNative.TNSWebGLRenderingContext) -> CoreVideo.CVOpenGLESTextureCache? @objc public static func createImage(_ texturecache: CoreVideo.CVOpenGLESTextureCache, _ buffer: CoreVideo.CVImageBuffer, _ textureAttributes: CoreFoundation.CFDictionary?, _ target: OpenGLES.GLenum, _ internalFormat: OpenGLES.GLint, _ width: OpenGLES.GLsizei, _ height: OpenGLES.GLsizei, _ format: OpenGLES.GLenum, _ type: OpenGLES.GLenum, _ planeIndex: Swift.Int) -> CoreVideo.CVOpenGLESTexture? @objc public static func setupRender() -> CanvasNative.TNSRender - @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreGraphics.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreFoundation.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func writeToFile(_ data: Foundation.NSData, _ path: Swift.String) throws @objc override dynamic public init() @objc deinit } @@ -2697,10 +2720,12 @@ extension Swift.RangeReplaceableCollection { @objc get @objc set } + @objc public func setFillStyleWithString(_ color: Swift.String) @objc public var fillStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set } + @objc public func setStrokeStyleWithString(_ color: Swift.String) @objc public var strokeStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set @@ -2712,6 +2737,9 @@ extension Swift.RangeReplaceableCollection { @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float) @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, topLeft: Swift.Float, topRight: Swift.Float, bottomRight: Swift.Float, bottomLeft: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: [Swift.Float]) @objc public func fill() @objc public func fill(value: Any) @objc public func fill(_ path: CanvasNative.TNSPath2D, _ rule: CanvasNative.TNSFillRule) @@ -2735,6 +2763,7 @@ extension Swift.RangeReplaceableCollection { @objc public func getCanvas() -> CanvasNative.TNSCanvas @objc public func createLinearGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSLinearGradient @objc public func createRadialGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ r0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float, _ r1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSRadialGradient + @objc public func createConicGradient(_ startAngle: Swift.Float, _ x: Swift.Float, _ y: Swift.Float) -> CanvasNative.TNSColorStyle.TNSConicGradient @objc public func createPattern(_ value: Any, _ repetition: CanvasNative.TNSPatternRepetition) -> Any? @objc public func setTransform(_ a: Swift.Float, _ b: Swift.Float, _ c: Swift.Float, _ d: Swift.Float, _ e: Swift.Float, _ f: Swift.Float) @objc public func scale(_ x: Swift.Float, _ y: Swift.Float) @@ -2833,17 +2862,17 @@ extension Swift.RangeReplaceableCollection { public init?(string: Swift.String) } @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasGLKView) @_Concurrency.MainActor(unsafe) public class CanvasGLKView : GLKit.GLKView { - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreFoundation.CGRect) @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasCPUView) @_Concurrency.MainActor(unsafe) public class CanvasCPUView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) public var ignorePixelScaling: Swift.Bool - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc deinit } public protocol RenderListener { @@ -2860,9 +2889,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { } } @objc public class GLRenderer : ObjectiveC.NSObject, GLKit.GLKViewDelegate { - public var attributes: Foundation.NSDictionary + public var attributes: CanvasNative.TNSContextAttributes public func updateDirection(_ direction: Swift.String) - public var isDirty: Swift.Bool { + public var invalidateState: Swift.Int { get set } @@ -2901,7 +2930,7 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { public func ensureIsReady() public func pause() public func resume() - @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreGraphics.CGRect) + @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreFoundation.CGRect) } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSIndexedParameter) public class TNSIndexedParameter : ObjectiveC.NSObject { @objc deinit @@ -2972,6 +3001,8 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @objc public func loadImageFromUrl(url: Swift.String) -> Swift.Bool @objc public func loadImageFromUrlAsync(url: Swift.String, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromPathAsync(path: Swift.String, callback: @escaping (Swift.String?) -> ()) + @objc public func loadImageFromBuffer(_ buffer: Foundation.NSData) -> Swift.Bool + @objc public func loadImageFromBufferAsync(_ buffer: Foundation.NSData, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromBytes(array: [Swift.UInt8]) -> Swift.Bool @objc public func loadImageFromBytesAsync(array: [Swift.UInt8], callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromImage(image: UIKit.UIImage) -> Swift.Bool @@ -3178,6 +3209,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSRadialGradient) public class TNSRadialGradient : CanvasNative.TNSColorStyle.TNSGradient { @objc deinit } + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSConicGradient) public class TNSConicGradient : CanvasNative.TNSColorStyle.TNSGradient { + @objc deinit + } @_hasMissingDesignatedInitializers @objcMembers @objc(TNSPattern) public class TNSPattern : ObjectiveC.NSObject, CanvasNative.ICanvasColorStyle { @objc public func setTransform(matrix: CanvasNative.TNSDOMMatrix) @objc deinit diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftdoc b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftdoc index b80b4c5a1..8d7e298e8 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftdoc and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftinterface b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftinterface index 31a22a2bf..8d3fa7d65 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftinterface +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) // swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CanvasNative +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation @_exported import CanvasNative import CoreVideo @@ -11,6 +12,7 @@ import OpenGLES import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSDOMMatrix) public class TNSDOMMatrix : ObjectiveC.NSObject { @objc override dynamic public init() @objc public var a: Swift.Float { @@ -235,6 +237,10 @@ import _Concurrency @objc get @objc set } + @objc @_Concurrency.MainActor(unsafe) public var scaling: Swift.Bool { + @objc get + @objc set + } @objc @_Concurrency.MainActor(unsafe) public static func createSVGMatrix() -> CanvasNative.TNSDOMMatrix @objc @_Concurrency.MainActor(unsafe) public var handleInvalidationManually: Swift.Bool { @objc get @@ -248,6 +254,8 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ format: Swift.Float, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func snapshot() -> [Swift.UInt8] + @objc @_Concurrency.MainActor(unsafe) public func getImage(_ flip: Swift.Bool) -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func snapshotEncoded() -> [Swift.UInt8] @objc @_Concurrency.MainActor(unsafe) public var isGL: Swift.Bool { @objc get } @@ -265,11 +273,12 @@ import _Concurrency } @objc @_Concurrency.MainActor(unsafe) public func doDraw() @objc @_Concurrency.MainActor(unsafe) public func flush() - @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, useCpu: Swift.Bool) + @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, useCpu: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) public func setListener(_ listener: CanvasNative.TNSCanvasListener?) @objc @_Concurrency.MainActor(unsafe) public var fps: Swift.Float { @objc get } + @objc @_Concurrency.MainActor(unsafe) public static func layoutView(_ view: UIKit.UIView, _ width: CoreFoundation.CGFloat, _ height: CoreFoundation.CGFloat) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @objc deinit @objc @_Concurrency.MainActor(unsafe) public func resume() @@ -279,7 +288,15 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func handleMoveOffMain() @objc @_Concurrency.MainActor(unsafe) public func handleMoveToMain() @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? - @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Foundation.NSDictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, attributes: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Swift.Dictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, contextAttributes: CanvasNative.TNSContextAttributes) -> CanvasNative.TNSCanvasRenderingContext? +} +@_inheritsConvenienceInitializers @objc(TNSContextAttributes) @objcMembers public class TNSContextAttributes : ObjectiveC.NSObject, Swift.Codable { + @objc override dynamic public init() + @objc deinit + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } @_inheritsConvenienceInitializers @objcMembers @objc(TNSTextEncoder) public class TNSTextEncoder : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1363,6 +1380,9 @@ extension Swift.RangeReplaceableCollection { @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float) @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float, _ anticlockwise: Swift.Bool) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ topLeft: Swift.Float, _ topRight: Swift.Float, _ bottomRight: Swift.Float, _ bottomLeft: Swift.Float) + @objc public func roundRectWithRadii(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: [Swift.Float]) } @_inheritsConvenienceInitializers @objcMembers @objc(TNS_OES_texture_half_float) public class TNS_OES_texture_half_float : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1432,8 +1452,10 @@ extension Swift.RangeReplaceableCollection { @objc set } @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @objc @_Concurrency.MainActor(unsafe) public func toImage() -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func toData() -> Foundation.NSData? @objc deinit } @objcMembers @objc(TNSWebGLRenderingContext) public class TNSWebGLRenderingContext : CanvasNative.TNSCanvasRenderingContext { @@ -2586,7 +2608,8 @@ extension Swift.RangeReplaceableCollection { @objc public static func createTextureCache(_ context: CanvasNative.TNSWebGLRenderingContext) -> CoreVideo.CVOpenGLESTextureCache? @objc public static func createImage(_ texturecache: CoreVideo.CVOpenGLESTextureCache, _ buffer: CoreVideo.CVImageBuffer, _ textureAttributes: CoreFoundation.CFDictionary?, _ target: OpenGLES.GLenum, _ internalFormat: OpenGLES.GLint, _ width: OpenGLES.GLsizei, _ height: OpenGLES.GLsizei, _ format: OpenGLES.GLenum, _ type: OpenGLES.GLenum, _ planeIndex: Swift.Int) -> CoreVideo.CVOpenGLESTexture? @objc public static func setupRender() -> CanvasNative.TNSRender - @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreGraphics.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreFoundation.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func writeToFile(_ data: Foundation.NSData, _ path: Swift.String) throws @objc override dynamic public init() @objc deinit } @@ -2697,10 +2720,12 @@ extension Swift.RangeReplaceableCollection { @objc get @objc set } + @objc public func setFillStyleWithString(_ color: Swift.String) @objc public var fillStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set } + @objc public func setStrokeStyleWithString(_ color: Swift.String) @objc public var strokeStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set @@ -2712,6 +2737,9 @@ extension Swift.RangeReplaceableCollection { @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float) @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, topLeft: Swift.Float, topRight: Swift.Float, bottomRight: Swift.Float, bottomLeft: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: [Swift.Float]) @objc public func fill() @objc public func fill(value: Any) @objc public func fill(_ path: CanvasNative.TNSPath2D, _ rule: CanvasNative.TNSFillRule) @@ -2735,6 +2763,7 @@ extension Swift.RangeReplaceableCollection { @objc public func getCanvas() -> CanvasNative.TNSCanvas @objc public func createLinearGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSLinearGradient @objc public func createRadialGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ r0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float, _ r1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSRadialGradient + @objc public func createConicGradient(_ startAngle: Swift.Float, _ x: Swift.Float, _ y: Swift.Float) -> CanvasNative.TNSColorStyle.TNSConicGradient @objc public func createPattern(_ value: Any, _ repetition: CanvasNative.TNSPatternRepetition) -> Any? @objc public func setTransform(_ a: Swift.Float, _ b: Swift.Float, _ c: Swift.Float, _ d: Swift.Float, _ e: Swift.Float, _ f: Swift.Float) @objc public func scale(_ x: Swift.Float, _ y: Swift.Float) @@ -2833,17 +2862,17 @@ extension Swift.RangeReplaceableCollection { public init?(string: Swift.String) } @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasGLKView) @_Concurrency.MainActor(unsafe) public class CanvasGLKView : GLKit.GLKView { - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreFoundation.CGRect) @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasCPUView) @_Concurrency.MainActor(unsafe) public class CanvasCPUView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) public var ignorePixelScaling: Swift.Bool - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc deinit } public protocol RenderListener { @@ -2860,9 +2889,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { } } @objc public class GLRenderer : ObjectiveC.NSObject, GLKit.GLKViewDelegate { - public var attributes: Foundation.NSDictionary + public var attributes: CanvasNative.TNSContextAttributes public func updateDirection(_ direction: Swift.String) - public var isDirty: Swift.Bool { + public var invalidateState: Swift.Int { get set } @@ -2901,7 +2930,7 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { public func ensureIsReady() public func pause() public func resume() - @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreGraphics.CGRect) + @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreFoundation.CGRect) } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSIndexedParameter) public class TNSIndexedParameter : ObjectiveC.NSObject { @objc deinit @@ -2972,6 +3001,8 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @objc public func loadImageFromUrl(url: Swift.String) -> Swift.Bool @objc public func loadImageFromUrlAsync(url: Swift.String, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromPathAsync(path: Swift.String, callback: @escaping (Swift.String?) -> ()) + @objc public func loadImageFromBuffer(_ buffer: Foundation.NSData) -> Swift.Bool + @objc public func loadImageFromBufferAsync(_ buffer: Foundation.NSData, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromBytes(array: [Swift.UInt8]) -> Swift.Bool @objc public func loadImageFromBytesAsync(array: [Swift.UInt8], callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromImage(image: UIKit.UIImage) -> Swift.Bool @@ -3178,6 +3209,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSRadialGradient) public class TNSRadialGradient : CanvasNative.TNSColorStyle.TNSGradient { @objc deinit } + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSConicGradient) public class TNSConicGradient : CanvasNative.TNSColorStyle.TNSGradient { + @objc deinit + } @_hasMissingDesignatedInitializers @objcMembers @objc(TNSPattern) public class TNSPattern : ObjectiveC.NSObject, CanvasNative.ICanvasColorStyle { @objc public func setTransform(matrix: CanvasNative.TNSDOMMatrix) @objc deinit diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftdoc b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftdoc deleted file mode 100644 index b80b4c5a1..000000000 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftdoc and /dev/null differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/module.modulemap b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/module.modulemap index 9d6034206..0d2a8ed0a 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/module.modulemap +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/CanvasNative.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module CanvasNative { } module CanvasNative.Swift { - header "CanvasNative-Swift.h" - requires objc + header "CanvasNative-Swift.h" + requires objc } diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative index 584252495..e7bc9b5cc 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/CanvasNative b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/CanvasNative index 6fb5529be..1ee75760b 100755 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/CanvasNative and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/CanvasNative differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/CanvasNative-Swift.h b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/CanvasNative-Swift.h index 04fd8375c..5e5dd8c5d 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/CanvasNative-Swift.h +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/CanvasNative-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) #ifndef CANVASNATIVE_SWIFT_H #define CANVASNATIVE_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,15 +192,45 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import CoreFoundation; -@import CoreGraphics; @import CoreVideo; @import Dispatch; @import Foundation; @@ -201,6 +240,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import UIKit; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -208,6 +248,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -216,7 +257,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif -@class NSNumber; +#if defined(__OBJC__) @class NSCoder; SWIFT_CLASS_NAMED("CanvasCPUView") @@ -270,15 +311,17 @@ SWIFT_CLASS_NAMED("TNSAnimationFrame") @end @class TNSDOMMatrix; +@class UIImage; @protocol TNSCanvasListener; @class TNSCanvasRenderingContext; -@class NSDictionary; +@class TNSContextAttributes; SWIFT_CLASS_NAMED("TNSCanvas") @interface TNSCanvas : UIView + (NSMapTable * _Nonnull)getViews SWIFT_WARN_UNUSED_RESULT; - (void * _Nullable)getViewPtr SWIFT_WARN_UNUSED_RESULT; @property (nonatomic) BOOL ignorePixelScaling; +@property (nonatomic) BOOL scaling; + (TNSDOMMatrix * _Nonnull)createSVGMatrix SWIFT_WARN_UNUSED_RESULT; @property (nonatomic) BOOL handleInvalidationManually; - (void)didDraw; @@ -289,6 +332,8 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (void)toDataURLAsync:(NSString * _Nonnull)type :(void (^ _Nonnull)(NSString * _Nonnull))callback; - (void)toDataURLAsync:(NSString * _Nonnull)type :(float)format :(void (^ _Nonnull)(NSString * _Nonnull))callback; - (NSArray * _Nonnull)snapshot SWIFT_WARN_UNUSED_RESULT; +- (UIImage * _Nullable)getImage:(BOOL)flip SWIFT_WARN_UNUSED_RESULT; +- (NSArray * _Nonnull)snapshotEncoded SWIFT_WARN_UNUSED_RESULT; @property (nonatomic, readonly) BOOL isGL; - (GLint)getId SWIFT_WARN_UNUSED_RESULT; @property (nonatomic, readonly) float width; @@ -301,6 +346,7 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (nonnull instancetype)initWithFrame:(CGRect)frame useCpu:(BOOL)useCpu OBJC_DESIGNATED_INITIALIZER; - (void)setListener:(id _Nullable)listener; @property (nonatomic, readonly) float fps; ++ (void)layoutView:(UIView * _Nonnull)view :(CGFloat)width :(CGFloat)height; - (void)layoutSubviews; - (void)resume; - (void)pause; @@ -309,7 +355,9 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (void)handleMoveOffMain; - (void)handleMoveToMain; - (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type SWIFT_WARN_UNUSED_RESULT; -- (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type contextAttributes:(NSDictionary * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContextWithType:(NSString * _Nonnull)type attributes:(NSString * _Nonnull)attributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type contextAttributes:(NSDictionary * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContextWithType:(NSString * _Nonnull)type contextAttributes:(TNSContextAttributes * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @end @@ -335,6 +383,7 @@ enum TNSTextBaseLine : NSInteger; enum TNSFillRule : NSInteger; @class TNSLinearGradient; @class TNSRadialGradient; +@class TNSConicGradient; enum TNSPatternRepetition : NSInteger; @class TNSImageData; @class TNSTextMetrics; @@ -359,7 +408,9 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") @property (nonatomic) float shadowOffsetY; @property (nonatomic) enum TNSTextAlignment textAlign; @property (nonatomic) enum TNSTextBaseLine textBaseline; +- (void)setFillStyleWithString:(NSString * _Nonnull)color; @property (nonatomic, strong) id _Nonnull fillStyle; +- (void)setStrokeStyleWithString:(NSString * _Nonnull)color; @property (nonatomic, strong) id _Nonnull strokeStyle; - (void)fillRect:(float)x :(float)y :(float)width :(float)height; - (void)strokeRect:(float)x :(float)y :(float)width :(float)height; @@ -368,6 +419,9 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") - (void)strokeText:(NSString * _Nonnull)text :(float)x :(float)y; - (void)strokeText:(NSString * _Nonnull)text :(float)x :(float)y :(float)width; - (void)rect:(float)x :(float)y :(float)width :(float)height; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height topLeft:(float)topLeft topRight:(float)topRight bottomRight:(float)bottomRight bottomLeft:(float)bottomLeft; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height radii:(float)radii; +- (void)roundRect:(float)x :(float)y :(float)width :(float)height :(NSArray * _Nonnull)radii; - (void)fill; - (void)fillWithValue:(id _Nonnull)value; - (void)fill:(TNSPath2D * _Nonnull)path :(enum TNSFillRule)rule; @@ -391,6 +445,7 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") - (TNSCanvas * _Nonnull)getCanvas SWIFT_WARN_UNUSED_RESULT; - (TNSLinearGradient * _Nonnull)createLinearGradient:(float)x0 :(float)y0 :(float)x1 :(float)y1 SWIFT_WARN_UNUSED_RESULT; - (TNSRadialGradient * _Nonnull)createRadialGradient:(float)x0 :(float)y0 :(float)r0 :(float)x1 :(float)y1 :(float)r1 SWIFT_WARN_UNUSED_RESULT; +- (TNSConicGradient * _Nonnull)createConicGradient:(float)startAngle :(float)x :(float)y SWIFT_WARN_UNUSED_RESULT; - (id _Nullable)createPattern:(id _Nonnull)value :(enum TNSPatternRepetition)repetition SWIFT_WARN_UNUSED_RESULT; - (void)setTransform:(float)a :(float)b :(float)c :(float)d :(float)e :(float)f; - (void)scale:(float)x :(float)y; @@ -456,6 +511,11 @@ SWIFT_CLASS_NAMED("TNSRadialGradient") @end +SWIFT_CLASS_NAMED("TNSConicGradient") +@interface TNSConicGradient : TNSGradient +@end + + SWIFT_CLASS_NAMED("TNSPattern") @interface TNSPattern : NSObject - (void)setTransformWithMatrix:(TNSDOMMatrix * _Nonnull)matrix; @@ -494,6 +554,12 @@ typedef SWIFT_ENUM_NAMED(NSInteger, TNSCompositeOperationType, "TNSCompositeOper }; +SWIFT_CLASS_NAMED("TNSContextAttributes") +@interface TNSContextAttributes : NSObject +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + SWIFT_CLASS_NAMED("TNSDOMMatrix") @interface TNSDOMMatrix : NSObject - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @@ -536,7 +602,7 @@ SWIFT_CLASS_NAMED("TNSFramebufferAttachmentParameter") - (nonnull instancetype)initWithIsTexture:(BOOL)isTexture isRenderbuffer:(BOOL)isRenderbuffer value:(int32_t)value OBJC_DESIGNATED_INITIALIZER; @end -@class UIImage; +@class NSData; enum TNSImageAssetFormat : NSInteger; SWIFT_CLASS_NAMED("TNSImageAsset") @@ -549,6 +615,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) dispatch_queue_t _Null - (BOOL)loadImageFromUrlWithUrl:(NSString * _Nonnull)url SWIFT_WARN_UNUSED_RESULT; - (void)loadImageFromUrlAsyncWithUrl:(NSString * _Nonnull)url callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (void)loadImageFromPathAsyncWithPath:(NSString * _Nonnull)path callback:(void (^ _Nonnull)(NSString * _Nullable))callback; +- (BOOL)loadImageFromBuffer:(NSData * _Nonnull)buffer SWIFT_WARN_UNUSED_RESULT; +- (void)loadImageFromBufferAsync:(NSData * _Nonnull)buffer callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (BOOL)loadImageFromBytesWithArray:(NSArray * _Nonnull)array SWIFT_WARN_UNUSED_RESULT; - (void)loadImageFromBytesAsyncWithArray:(NSArray * _Nonnull)array callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (BOOL)loadImageFromImageWithImage:(UIImage * _Nonnull)image SWIFT_WARN_UNUSED_RESULT; @@ -573,7 +641,6 @@ typedef SWIFT_ENUM_NAMED(NSInteger, TNSImageAssetFormat, "TNSImageAssetFormat", }; @class TNSImageBitmapOptions; -@class NSData; SWIFT_CLASS_NAMED("TNSImageBitmap") @interface TNSImageBitmap : NSObject @@ -691,6 +758,9 @@ SWIFT_CLASS_NAMED("TNSPath2D") - (void)ellipse:(float)x :(float)y :(float)radiusX :(float)radiusY :(float)rotation :(float)startAngle :(float)endAngle; - (void)ellipse:(float)x :(float)y :(float)radiusX :(float)radiusY :(float)rotation :(float)startAngle :(float)endAngle :(BOOL)anticlockwise; - (void)rect:(float)x :(float)y :(float)width :(float)height; +- (void)roundRect:(float)x :(float)y :(float)width :(float)height :(float)topLeft :(float)topRight :(float)bottomRight :(float)bottomLeft; +- (void)roundRectWithRadii:(float)x :(float)y :(float)width :(float)height :(float)radii; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height radii:(NSArray * _Nonnull)radii; @end typedef SWIFT_ENUM(NSInteger, TNSPatternRepetition, open) { @@ -717,6 +787,8 @@ SWIFT_CLASS_NAMED("TNSSVG") - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; - (void)drawRect:(CGRect)rect; +- (UIImage * _Nullable)toImage SWIFT_WARN_UNUSED_RESULT; +- (NSData * _Nullable)toData SWIFT_WARN_UNUSED_RESULT; @end typedef SWIFT_ENUM_NAMED(NSInteger, TNSTextAlignment, "TNSTextAlignment", open) { @@ -1988,9 +2060,13 @@ SWIFT_CLASS_NAMED("Utils") + (CVOpenGLESTextureRef _Nullable)createImage:(CVOpenGLESTextureCacheRef _Nonnull)texturecache :(CVImageBufferRef _Nonnull)buffer :(CFDictionaryRef _Nullable)textureAttributes :(GLenum)target :(GLint)internalFormat :(GLsizei)width :(GLsizei)height :(GLenum)format :(GLenum)type :(NSInteger)planeIndex SWIFT_WARN_UNUSED_RESULT; + (TNSRender * _Nonnull)setupRender SWIFT_WARN_UNUSED_RESULT; + (void)drawFrame:(AVPlayer * _Nonnull)player :(AVPlayerItemVideoOutput * _Nonnull)output :(CGSize)videoSize :(TNSRender * _Nonnull)render :(int32_t)internalFormat :(int32_t)format :(BOOL)flipYWebGL; ++ (BOOL)writeToFile:(NSData * _Nonnull)data :(NSString * _Nonnull)path error:(NSError * _Nullable * _Nullable)error; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -1998,7 +2074,7 @@ SWIFT_CLASS_NAMED("Utils") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) #ifndef CANVASNATIVE_SWIFT_H #define CANVASNATIVE_SWIFT_H #pragma clang diagnostic push @@ -2021,11 +2097,20 @@ SWIFT_CLASS_NAMED("Utils") # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -2181,15 +2266,45 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import CoreFoundation; -@import CoreGraphics; @import CoreVideo; @import Dispatch; @import Foundation; @@ -2199,6 +2314,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import UIKit; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -2206,6 +2322,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -2214,7 +2331,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif -@class NSNumber; +#if defined(__OBJC__) @class NSCoder; SWIFT_CLASS_NAMED("CanvasCPUView") @@ -2268,15 +2385,17 @@ SWIFT_CLASS_NAMED("TNSAnimationFrame") @end @class TNSDOMMatrix; +@class UIImage; @protocol TNSCanvasListener; @class TNSCanvasRenderingContext; -@class NSDictionary; +@class TNSContextAttributes; SWIFT_CLASS_NAMED("TNSCanvas") @interface TNSCanvas : UIView + (NSMapTable * _Nonnull)getViews SWIFT_WARN_UNUSED_RESULT; - (void * _Nullable)getViewPtr SWIFT_WARN_UNUSED_RESULT; @property (nonatomic) BOOL ignorePixelScaling; +@property (nonatomic) BOOL scaling; + (TNSDOMMatrix * _Nonnull)createSVGMatrix SWIFT_WARN_UNUSED_RESULT; @property (nonatomic) BOOL handleInvalidationManually; - (void)didDraw; @@ -2287,6 +2406,8 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (void)toDataURLAsync:(NSString * _Nonnull)type :(void (^ _Nonnull)(NSString * _Nonnull))callback; - (void)toDataURLAsync:(NSString * _Nonnull)type :(float)format :(void (^ _Nonnull)(NSString * _Nonnull))callback; - (NSArray * _Nonnull)snapshot SWIFT_WARN_UNUSED_RESULT; +- (UIImage * _Nullable)getImage:(BOOL)flip SWIFT_WARN_UNUSED_RESULT; +- (NSArray * _Nonnull)snapshotEncoded SWIFT_WARN_UNUSED_RESULT; @property (nonatomic, readonly) BOOL isGL; - (GLint)getId SWIFT_WARN_UNUSED_RESULT; @property (nonatomic, readonly) float width; @@ -2299,6 +2420,7 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (nonnull instancetype)initWithFrame:(CGRect)frame useCpu:(BOOL)useCpu OBJC_DESIGNATED_INITIALIZER; - (void)setListener:(id _Nullable)listener; @property (nonatomic, readonly) float fps; ++ (void)layoutView:(UIView * _Nonnull)view :(CGFloat)width :(CGFloat)height; - (void)layoutSubviews; - (void)resume; - (void)pause; @@ -2307,7 +2429,9 @@ SWIFT_CLASS_NAMED("TNSCanvas") - (void)handleMoveOffMain; - (void)handleMoveToMain; - (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type SWIFT_WARN_UNUSED_RESULT; -- (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type contextAttributes:(NSDictionary * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContextWithType:(NSString * _Nonnull)type attributes:(NSString * _Nonnull)attributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContext:(NSString * _Nonnull)type contextAttributes:(NSDictionary * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; +- (TNSCanvasRenderingContext * _Nullable)getContextWithType:(NSString * _Nonnull)type contextAttributes:(TNSContextAttributes * _Nonnull)contextAttributes SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @end @@ -2333,6 +2457,7 @@ enum TNSTextBaseLine : NSInteger; enum TNSFillRule : NSInteger; @class TNSLinearGradient; @class TNSRadialGradient; +@class TNSConicGradient; enum TNSPatternRepetition : NSInteger; @class TNSImageData; @class TNSTextMetrics; @@ -2357,7 +2482,9 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") @property (nonatomic) float shadowOffsetY; @property (nonatomic) enum TNSTextAlignment textAlign; @property (nonatomic) enum TNSTextBaseLine textBaseline; +- (void)setFillStyleWithString:(NSString * _Nonnull)color; @property (nonatomic, strong) id _Nonnull fillStyle; +- (void)setStrokeStyleWithString:(NSString * _Nonnull)color; @property (nonatomic, strong) id _Nonnull strokeStyle; - (void)fillRect:(float)x :(float)y :(float)width :(float)height; - (void)strokeRect:(float)x :(float)y :(float)width :(float)height; @@ -2366,6 +2493,9 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") - (void)strokeText:(NSString * _Nonnull)text :(float)x :(float)y; - (void)strokeText:(NSString * _Nonnull)text :(float)x :(float)y :(float)width; - (void)rect:(float)x :(float)y :(float)width :(float)height; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height topLeft:(float)topLeft topRight:(float)topRight bottomRight:(float)bottomRight bottomLeft:(float)bottomLeft; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height radii:(float)radii; +- (void)roundRect:(float)x :(float)y :(float)width :(float)height :(NSArray * _Nonnull)radii; - (void)fill; - (void)fillWithValue:(id _Nonnull)value; - (void)fill:(TNSPath2D * _Nonnull)path :(enum TNSFillRule)rule; @@ -2389,6 +2519,7 @@ SWIFT_CLASS_NAMED("TNSCanvasRenderingContext2D") - (TNSCanvas * _Nonnull)getCanvas SWIFT_WARN_UNUSED_RESULT; - (TNSLinearGradient * _Nonnull)createLinearGradient:(float)x0 :(float)y0 :(float)x1 :(float)y1 SWIFT_WARN_UNUSED_RESULT; - (TNSRadialGradient * _Nonnull)createRadialGradient:(float)x0 :(float)y0 :(float)r0 :(float)x1 :(float)y1 :(float)r1 SWIFT_WARN_UNUSED_RESULT; +- (TNSConicGradient * _Nonnull)createConicGradient:(float)startAngle :(float)x :(float)y SWIFT_WARN_UNUSED_RESULT; - (id _Nullable)createPattern:(id _Nonnull)value :(enum TNSPatternRepetition)repetition SWIFT_WARN_UNUSED_RESULT; - (void)setTransform:(float)a :(float)b :(float)c :(float)d :(float)e :(float)f; - (void)scale:(float)x :(float)y; @@ -2454,6 +2585,11 @@ SWIFT_CLASS_NAMED("TNSRadialGradient") @end +SWIFT_CLASS_NAMED("TNSConicGradient") +@interface TNSConicGradient : TNSGradient +@end + + SWIFT_CLASS_NAMED("TNSPattern") @interface TNSPattern : NSObject - (void)setTransformWithMatrix:(TNSDOMMatrix * _Nonnull)matrix; @@ -2492,6 +2628,12 @@ typedef SWIFT_ENUM_NAMED(NSInteger, TNSCompositeOperationType, "TNSCompositeOper }; +SWIFT_CLASS_NAMED("TNSContextAttributes") +@interface TNSContextAttributes : NSObject +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + SWIFT_CLASS_NAMED("TNSDOMMatrix") @interface TNSDOMMatrix : NSObject - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @@ -2534,7 +2676,7 @@ SWIFT_CLASS_NAMED("TNSFramebufferAttachmentParameter") - (nonnull instancetype)initWithIsTexture:(BOOL)isTexture isRenderbuffer:(BOOL)isRenderbuffer value:(int32_t)value OBJC_DESIGNATED_INITIALIZER; @end -@class UIImage; +@class NSData; enum TNSImageAssetFormat : NSInteger; SWIFT_CLASS_NAMED("TNSImageAsset") @@ -2547,6 +2689,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) dispatch_queue_t _Null - (BOOL)loadImageFromUrlWithUrl:(NSString * _Nonnull)url SWIFT_WARN_UNUSED_RESULT; - (void)loadImageFromUrlAsyncWithUrl:(NSString * _Nonnull)url callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (void)loadImageFromPathAsyncWithPath:(NSString * _Nonnull)path callback:(void (^ _Nonnull)(NSString * _Nullable))callback; +- (BOOL)loadImageFromBuffer:(NSData * _Nonnull)buffer SWIFT_WARN_UNUSED_RESULT; +- (void)loadImageFromBufferAsync:(NSData * _Nonnull)buffer callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (BOOL)loadImageFromBytesWithArray:(NSArray * _Nonnull)array SWIFT_WARN_UNUSED_RESULT; - (void)loadImageFromBytesAsyncWithArray:(NSArray * _Nonnull)array callback:(void (^ _Nonnull)(NSString * _Nullable))callback; - (BOOL)loadImageFromImageWithImage:(UIImage * _Nonnull)image SWIFT_WARN_UNUSED_RESULT; @@ -2571,7 +2715,6 @@ typedef SWIFT_ENUM_NAMED(NSInteger, TNSImageAssetFormat, "TNSImageAssetFormat", }; @class TNSImageBitmapOptions; -@class NSData; SWIFT_CLASS_NAMED("TNSImageBitmap") @interface TNSImageBitmap : NSObject @@ -2689,6 +2832,9 @@ SWIFT_CLASS_NAMED("TNSPath2D") - (void)ellipse:(float)x :(float)y :(float)radiusX :(float)radiusY :(float)rotation :(float)startAngle :(float)endAngle; - (void)ellipse:(float)x :(float)y :(float)radiusX :(float)radiusY :(float)rotation :(float)startAngle :(float)endAngle :(BOOL)anticlockwise; - (void)rect:(float)x :(float)y :(float)width :(float)height; +- (void)roundRect:(float)x :(float)y :(float)width :(float)height :(float)topLeft :(float)topRight :(float)bottomRight :(float)bottomLeft; +- (void)roundRectWithRadii:(float)x :(float)y :(float)width :(float)height :(float)radii; +- (void)roundRectWithX:(float)x y:(float)y width:(float)width height:(float)height radii:(NSArray * _Nonnull)radii; @end typedef SWIFT_ENUM(NSInteger, TNSPatternRepetition, open) { @@ -2715,6 +2861,8 @@ SWIFT_CLASS_NAMED("TNSSVG") - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; - (void)drawRect:(CGRect)rect; +- (UIImage * _Nullable)toImage SWIFT_WARN_UNUSED_RESULT; +- (NSData * _Nullable)toData SWIFT_WARN_UNUSED_RESULT; @end typedef SWIFT_ENUM_NAMED(NSInteger, TNSTextAlignment, "TNSTextAlignment", open) { @@ -3986,13 +4134,19 @@ SWIFT_CLASS_NAMED("Utils") + (CVOpenGLESTextureRef _Nullable)createImage:(CVOpenGLESTextureCacheRef _Nonnull)texturecache :(CVImageBufferRef _Nonnull)buffer :(CFDictionaryRef _Nullable)textureAttributes :(GLenum)target :(GLint)internalFormat :(GLsizei)width :(GLsizei)height :(GLenum)format :(GLenum)type :(NSInteger)planeIndex SWIFT_WARN_UNUSED_RESULT; + (TNSRender * _Nonnull)setupRender SWIFT_WARN_UNUSED_RESULT; + (void)drawFrame:(AVPlayer * _Nonnull)player :(AVPlayerItemVideoOutput * _Nonnull)output :(CGSize)videoSize :(TNSRender * _Nonnull)render :(int32_t)internalFormat :(int32_t)format :(BOOL)flipYWebGL; ++ (BOOL)writeToFile:(NSData * _Nonnull)data :(NSString * _Nonnull)path error:(NSError * _Nullable * _Nullable)error; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/canvas_native.h b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/canvas_native.h index 74c6edfed..75ff07b1b 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/canvas_native.h +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Headers/canvas_native.h @@ -137,6 +137,12 @@ typedef struct U8Array { uintptr_t data_len; } U8Array; +#if defined(TARGET_OS_ANDROID) +typedef struct ASurfaceTexture { + uint8_t _unused[0]; +} ASurfaceTexture; +#endif + typedef struct PaintStyleValue { long long value; enum PaintStyleValueType value_type; @@ -237,6 +243,36 @@ void destroy_u32_array(struct U32Array *array); void destroy_u8_array(struct U8Array *array); +#if defined(TARGET_OS_ANDROID) +/** + * Returns the API level of the device we're actually running on, or -1 on failure. + * The returned values correspond to the named constants in ``, + * and is equivalent to the Java `Build.VERSION.SDK_INT` API. + * + * See also android_get_application_target_sdk_version(). + */ +extern int android_get_device_api_level(void); +#endif + +#if defined(TARGET_OS_ANDROID) +/** + * Get a reference to the native ASurfaceTexture from the corresponding java object. + * + * The caller must keep a reference to the Java SurfaceTexture during the lifetime of the returned + * ASurfaceTexture. Failing to do so could result in the ASurfaceTexture to stop functioning + * properly once the Java object gets finalized. + * However, this will not result in program termination. + * + * \param env JNI environment + * \param surfacetexture Instance of Java SurfaceTexture object + * \return native ASurfaceTexture reference or nullptr if the java object is not a SurfaceTexture. + * The returned reference MUST BE released when it's no longer needed using + * ASurfaceTexture_release(). + */ +extern struct ASurfaceTexture *ASurfaceTexture_fromSurfaceTexture(JNIEnv *env, + jobject surfacetexture); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void destroy_string(const char *string); #endif @@ -253,6 +289,10 @@ void destroy_paint_style(long long style); void destroy_text_metrics(long long metrics); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +struct U8Array *gl_snapshot_current_gl_context(float width, float height, bool _alpha); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) long long context_init_context(float width, float height, @@ -275,6 +315,10 @@ long long context_init_context_with_custom_surface(float width, enum TextDirection direction); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +void context_set_scaling(long long context, bool scaling); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_resize_custom_surface(long long context, float width, @@ -303,6 +347,10 @@ const char *context_data_url(long long context, const char *format, float qualit struct U8Array *context_snapshot_canvas(long long context); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +struct U8Array *context_snapshot_canvas_encoded(long long context); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_flush(long long context); #endif @@ -564,6 +612,10 @@ long long context_create_radial_gradient(long long context, float r1); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +long long context_create_conic_gradient(long long context, float start_angle, float x, float y); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_draw_image_dx_dy(long long context, const uint8_t *image_data, @@ -739,6 +791,18 @@ void context_quadratic_curve_to(long long context, float cpx, float cpy, float x void context_rect(long long context, float x, float y, float width, float height); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +void context_round_rect(long long context, + float x, + float y, + float width, + float height, + float top_left, + float top_right, + float bottom_right, + float bottom_left); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void context_reset_transform(long long context); #endif @@ -794,9 +858,9 @@ void context_translate(long long context, float x, float y); #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void gl_tex_image_2D_asset(unsigned int target, int level, - int internalformat, + int _internalformat, int border, - unsigned int format, + unsigned int _format, unsigned int image_type, long long asset, bool flip_y); @@ -816,12 +880,12 @@ void gl_tex_sub_image_2D_asset(unsigned int target, #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void gl_tex_image_3D_asset(unsigned int target, int level, - int internalformat, + int _internalformat, int width, int height, int depth, int border, - unsigned int format, + unsigned int _format, unsigned int image_type, long long asset, bool flip_y); @@ -875,14 +939,6 @@ bool image_asset_load_from_raw(long long asset, const uint8_t *array, uintptr_t struct U8Array *image_asset_get_bytes(long long asset); #endif -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -struct U8Array *image_asset_get_rgba_bytes(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -struct U8Array *image_asset_get_rgb_bytes(long long asset); -#endif - #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) unsigned int image_asset_width(long long asset); #endif @@ -903,30 +959,6 @@ bool image_asset_has_error(long long asset); bool image_asset_scale(long long asset, unsigned int x, unsigned int y); #endif -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_x(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_x_in_place(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_y(long long asset); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -void image_asset_flip_y_in_place_owned(uint8_t *buf, uintptr_t length); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -void image_asset_flip_x_in_place_owned(uint8_t *buf, uintptr_t length); -#endif - -#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) -bool image_asset_flip_y_in_place(long long asset); -#endif - #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) bool image_asset_save_path(long long asset, const char *path, unsigned int format); #endif @@ -1339,6 +1371,18 @@ void path_ellipse(long long path, void path_rect(long long path, float x, float y, float width, float height); #endif +#if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) +void path_round_rect(long long path, + float x, + float y, + float width, + float height, + float top_left, + float top_right, + float bottom_right, + float bottom_left); +#endif + #if (defined(TARGET_OS_IOS) || defined(TARGET_OS_MACOS)) void destroy_path(long long path); #endif diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Info.plist b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Info.plist index 2906dc8fd..15d8b997f 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Info.plist and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Info.plist differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo index bd216b4e8..be5a9afa2 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo deleted file mode 100644 index bd216b4e8..000000000 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo and /dev/null differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo index 25d66f16e..628762b39 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64.swiftsourceinfo b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64.swiftsourceinfo deleted file mode 100644 index 25d66f16e..000000000 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/Project/x86_64.swiftsourceinfo and /dev/null differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 000000000..2ee714b84 --- /dev/null +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,75693 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSDOMMatrix", + "printedName": "TNSDOMMatrix", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)init", + "mangledName": "$s12CanvasNative12TNSDOMMatrixCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "a", + "printedName": "a", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)a", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)a", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setA:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1aSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "b", + "printedName": "b", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)b", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)b", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setB:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1bSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "c", + "printedName": "c", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)c", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)c", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setC:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1cSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "d", + "printedName": "d", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)d", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)d", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setD:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1dSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "e", + "printedName": "e", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)e", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)e", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setE:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1eSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "f", + "printedName": "f", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)f", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)f", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setF:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1fSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m11", + "printedName": "m11", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m11", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m11", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM11:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m11SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m12", + "printedName": "m12", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m12", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m12", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM12:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m12SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m13", + "printedName": "m13", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m13", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m13", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM13:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m13SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m14", + "printedName": "m14", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m14", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m14", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM14:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m14SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m21", + "printedName": "m21", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m21", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m21", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM21:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m21SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m22", + "printedName": "m22", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m22", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m22", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM22:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m22SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m23", + "printedName": "m23", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m23", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m23", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM23:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m23SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m24", + "printedName": "m24", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m24", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m24", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM24:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m24SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m31", + "printedName": "m31", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m31", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m31", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM31:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m31SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m32", + "printedName": "m32", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m32", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m32", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM32:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m32SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m33", + "printedName": "m33", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m33", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m33", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM33:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m33SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m34", + "printedName": "m34", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m34", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m34", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM34:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m34SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m41", + "printedName": "m41", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m41", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m41", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM41:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m41SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m42", + "printedName": "m42", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m42", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m42", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM42:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m42SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m43", + "printedName": "m43", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m43", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m43", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM43:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m43SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m44", + "printedName": "m44", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m44", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m44", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM44:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m44SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC", + "moduleName": "CanvasNative", + "objc_name": "TNSDOMMatrix", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextAlignment", + "printedName": "TNSTextAlignment", + "children": [ + { + "kind": "Var", + "name": "Start", + "printedName": "Start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentStart", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO5StartyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Left", + "printedName": "Left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentLeft", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO4LeftyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Center", + "printedName": "Center", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentCenter", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO6CenteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Right", + "printedName": "Right", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentRight", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO5RightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "End", + "printedName": "End", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentEnd", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO3EndyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextAlignment?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextAlignment?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextAlignmentO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextAlignment", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasListener", + "printedName": "TNSCanvasListener", + "children": [ + { + "kind": "Function", + "name": "contextReady", + "printedName": "contextReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener(im)contextReady", + "mangledName": "$s12CanvasNative17TNSCanvasListenerP12contextReadyyyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.TNSCanvasListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener", + "mangledName": "$s12CanvasNative17TNSCanvasListenerP", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "TNSCanvasListener", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_standard_derivatives", + "printedName": "TNS_OES_standard_derivatives", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_standard_derivatives", + "printedName": "CanvasNative.TNS_OES_standard_derivatives", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives(im)init", + "mangledName": "$s12CanvasNative28TNS_OES_standard_derivativesCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives", + "mangledName": "$s12CanvasNative28TNS_OES_standard_derivativesC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_standard_derivatives", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_vertex_array_object", + "printedName": "TNS_OES_vertex_array_object", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_vertex_array_object", + "printedName": "CanvasNative.TNS_OES_vertex_array_object", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)init", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "VERTEX_ARRAY_BINDING_OES", + "printedName": "VERTEX_ARRAY_BINDING_OES", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(py)VERTEX_ARRAY_BINDING_OES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC021VERTEX_ARRAY_BINDING_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)VERTEX_ARRAY_BINDING_OES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC021VERTEX_ARRAY_BINDING_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createVertexArrayOES", + "printedName": "createVertexArrayOES()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)createVertexArrayOES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC017createVertexArrayD0s6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteVertexArrayOES", + "printedName": "deleteVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)deleteVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC017deleteVertexArrayD00F6Objectys6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isVertexArrayOES", + "printedName": "isVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)isVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC013isVertexArrayD00F6ObjectSbs6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindVertexArrayOES", + "printedName": "bindVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)bindVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC015bindVertexArrayD00F6Objectys6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_vertex_array_object", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_float", + "printedName": "TNS_OES_texture_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_float", + "printedName": "CanvasNative.TNS_OES_texture_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float(im)init", + "mangledName": "$s12CanvasNative21TNS_OES_texture_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float", + "mangledName": "$s12CanvasNative21TNS_OES_texture_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSAnimationFrame", + "printedName": "TNSAnimationFrame", + "children": [ + { + "kind": "Function", + "name": "requestAnimationFrame", + "printedName": "requestAnimationFrame(toLoop:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(cm)requestAnimationFrameToLoop:", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC016requestAnimationD06toLoopyySfc_tFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelAnimationFrame", + "printedName": "cancelAnimationFrame(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(cm)cancelAnimationFrameWithId:", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC015cancelAnimationD02idySS_tFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSAnimationFrame", + "printedName": "CanvasNative.TNSAnimationFrame", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(im)init", + "mangledName": "$s12CanvasNative17TNSAnimationFrameCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC", + "moduleName": "CanvasNative", + "objc_name": "TNSAnimationFrame", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSFillRule", + "printedName": "TNSFillRule", + "children": [ + { + "kind": "Var", + "name": "NonZero", + "printedName": "NonZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSFillRule.Type) -> CanvasNative.TNSFillRule", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSFillRule.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSFillRule@TNSFillRuleNonZero", + "mangledName": "$s12CanvasNative11TNSFillRuleO7NonZeroyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "EvenOdd", + "printedName": "EvenOdd", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSFillRule.Type) -> CanvasNative.TNSFillRule", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSFillRule.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSFillRule@TNSFillRuleEvenOdd", + "mangledName": "$s12CanvasNative11TNSFillRuleO7EvenOddyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSFillRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSFillRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSFillRuleO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative11TNSFillRuleO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSFillRule", + "mangledName": "$s12CanvasNative11TNSFillRuleO", + "moduleName": "CanvasNative", + "objc_name": "TNSFillRule", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_sRGB", + "printedName": "TNS_EXT_sRGB", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_sRGB", + "printedName": "CanvasNative.TNS_EXT_sRGB", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)init", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "SRGB_EXT", + "printedName": "SRGB_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC05SRGB_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC05SRGB_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB_ALPHA_EXT", + "printedName": "SRGB_ALPHA_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB_ALPHA_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC011SRGB_ALPHA_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB_ALPHA_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC011SRGB_ALPHA_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8_ALPHA8_EXT", + "printedName": "SRGB8_ALPHA8_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB8_ALPHA8_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC013SRGB8_ALPHA8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB8_ALPHA8_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC013SRGB8_ALPHA8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC038FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC038FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_sRGB", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageData", + "printedName": "TNSImageData", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)data", + "mangledName": "$s12CanvasNative12TNSImageDataC4dataSo6NSDataCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)data", + "mangledName": "$s12CanvasNative12TNSImageDataC4dataSo6NSDataCvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)width", + "mangledName": "$s12CanvasNative12TNSImageDataC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)width", + "mangledName": "$s12CanvasNative12TNSImageDataC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)height", + "mangledName": "$s12CanvasNative12TNSImageDataC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)height", + "mangledName": "$s12CanvasNative12TNSImageDataC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)init", + "mangledName": "$s12CanvasNative12TNSImageDataCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData", + "mangledName": "$s12CanvasNative12TNSImageDataC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageData", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextDirection", + "printedName": "TNSTextDirection", + "children": [ + { + "kind": "Var", + "name": "Ltr", + "printedName": "Ltr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextDirection.Type) -> CanvasNative.TNSTextDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextDirection@TNSTextDirectionLtr", + "mangledName": "$s12CanvasNative16TNSTextDirectionO3LtryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Rtl", + "printedName": "Rtl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextDirection.Type) -> CanvasNative.TNSTextDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextDirection@TNSTextDirectionRtl", + "mangledName": "$s12CanvasNative16TNSTextDirectionO3RtlyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextDirectionO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative16TNSTextDirectionO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextDirection", + "mangledName": "$s12CanvasNative16TNSTextDirectionO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextDirection", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_color_buffer_float", + "printedName": "TNS_WEBGL_color_buffer_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_color_buffer_float", + "printedName": "CanvasNative.TNS_WEBGL_color_buffer_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)init", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "RGBA32F_EXT", + "printedName": "RGBA32F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)RGBA32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC11RGBA32F_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)RGBA32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC11RGBA32F_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32F_EXT", + "printedName": "RGB32F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)RGB32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC10RGB32F_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)RGB32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC10RGB32F_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC41FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC41FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED_EXT", + "printedName": "UNSIGNED_NORMALIZED_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC23UNSIGNED_NORMALIZED_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC23UNSIGNED_NORMALIZED_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_color_buffer_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "TNS_ANGLE_instanced_arrays", + "children": [ + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "printedName": "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(py)VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC028VERTEX_ATTRIB_ARRAY_DIVISOR_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC028VERTEX_ATTRIB_ARRAY_DIVISOR_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(context:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "CanvasNative.TNS_ANGLE_instanced_arrays", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays" + }, + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)initWithContext:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC7contextAcA24TNSWebGLRenderingContextC_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "drawArraysInstancedANGLE", + "printedName": "drawArraysInstancedANGLE(mode:first:count:primcount:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)drawArraysInstancedANGLEWithMode:first:count:primcount:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC019drawArraysInstancedD04mode5first5count9primcountys5Int32V_A3JtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElementsInstancedANGLE", + "printedName": "drawElementsInstancedANGLE(mode:count:type:offset:primcount:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)drawElementsInstancedANGLEWithMode:count:type:offset:primcount:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC021drawElementsInstancedD04mode5count4type6offset9primcountys5Int32V_A4KtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribDivisorANGLE", + "printedName": "vertexAttribDivisorANGLE(index:divisor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)vertexAttribDivisorANGLEWithIndex:divisor:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC019vertexAttribDivisorD05index7divisorys5Int32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "CanvasNative.TNS_ANGLE_instanced_arrays", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)init", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC", + "moduleName": "CanvasNative", + "objc_name": "TNS_ANGLE_instanced_arrays", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_blend_minmax", + "printedName": "TNS_EXT_blend_minmax", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_blend_minmax", + "printedName": "CanvasNative.TNS_EXT_blend_minmax", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)init", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "MIN_EXT", + "printedName": "MIN_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(py)MIN_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MIN_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)MIN_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MIN_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_EXT", + "printedName": "MAX_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(py)MAX_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MAX_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)MAX_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MAX_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_blend_minmax", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "MetalKit", + "printedName": "MetalKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSCanvas", + "printedName": "TNSCanvas", + "children": [ + { + "kind": "Function", + "name": "getViews", + "printedName": "getViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)getViews", + "mangledName": "$s12CanvasNative9TNSCanvasC8getViewsSo10NSMapTableCySo8NSStringCACGyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getViewPtr", + "printedName": "getViewPtr()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getViewPtr", + "mangledName": "$s12CanvasNative9TNSCanvasC10getViewPtrSvSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "scaling", + "printedName": "scaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)scaling", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)scaling", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setScaling:", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC7scalingSbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "createSVGMatrix", + "printedName": "createSVGMatrix()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)createSVGMatrix", + "mangledName": "$s12CanvasNative9TNSCanvasC15createSVGMatrixAA12TNSDOMMatrixCyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "handleInvalidationManually", + "printedName": "handleInvalidationManually", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)handleInvalidationManually", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleInvalidationManually", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setHandleInvalidationManually:", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "didDraw", + "printedName": "didDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)didDraw", + "mangledName": "$s12CanvasNative9TNSCanvasC7didDrawyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLSSyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL:", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLyS2SF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL::", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLyS2S_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync:", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyyySScF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync::", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyySS_ySSctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync:::", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyySS_SfySSctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "snapshot", + "printedName": "snapshot()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)snapshot", + "mangledName": "$s12CanvasNative9TNSCanvasC8snapshotSays5UInt8VGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImage", + "printedName": "getImage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getImage:", + "mangledName": "$s12CanvasNative9TNSCanvasC8getImageySo7UIImageCSgSbF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "snapshotEncoded", + "printedName": "snapshotEncoded()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)snapshotEncoded", + "mangledName": "$s12CanvasNative9TNSCanvasC15snapshotEncodedSays5UInt8VGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isGL", + "printedName": "isGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)isGL", + "mangledName": "$s12CanvasNative9TNSCanvasC4isGLSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)isGL", + "mangledName": "$s12CanvasNative9TNSCanvasC4isGLSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getId", + "printedName": "getId()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getId", + "mangledName": "$s12CanvasNative9TNSCanvasC5getIds5Int32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)width", + "mangledName": "$s12CanvasNative9TNSCanvasC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)width", + "mangledName": "$s12CanvasNative9TNSCanvasC5widthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)height", + "mangledName": "$s12CanvasNative9TNSCanvasC6heightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)height", + "mangledName": "$s12CanvasNative9TNSCanvasC6heightSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "updateDirection", + "printedName": "updateDirection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)updateDirection:", + "mangledName": "$s12CanvasNative9TNSCanvasC15updateDirectionyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)context", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)context", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setContext:", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC7contexts5Int64VvM", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64VvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "doDraw", + "printedName": "doDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)doDraw", + "mangledName": "$s12CanvasNative9TNSCanvasC6doDrawyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)flush", + "mangledName": "$s12CanvasNative9TNSCanvasC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:useCpu:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)initWithFrame:useCpu:", + "mangledName": "$s12CanvasNative9TNSCanvasC5frame6useCpuACSo6CGRectV_Sbtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setListener", + "printedName": "setListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasListener?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasListener", + "printedName": "CanvasNative.TNSCanvasListener", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setListener:", + "mangledName": "$s12CanvasNative9TNSCanvasC11setListeneryyAA0cE0_pSgF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fps", + "printedName": "fps", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)fps", + "mangledName": "$s12CanvasNative9TNSCanvasC3fpsSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)fps", + "mangledName": "$s12CanvasNative9TNSCanvasC3fpsSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "layoutView", + "printedName": "layoutView(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)layoutView:::", + "mangledName": "$s12CanvasNative9TNSCanvasC10layoutViewyySo6UIViewC_12CoreGraphics7CGFloatVAItFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)layoutSubviews", + "mangledName": "$s12CanvasNative9TNSCanvasC14layoutSubviewsyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)resume", + "mangledName": "$s12CanvasNative9TNSCanvasC6resumeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)pause", + "mangledName": "$s12CanvasNative9TNSCanvasC5pauseyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveToMain", + "printedName": "moveToMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)moveToMain", + "mangledName": "$s12CanvasNative9TNSCanvasC10moveToMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveOffMain", + "printedName": "moveOffMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)moveOffMain", + "mangledName": "$s12CanvasNative9TNSCanvasC11moveOffMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleMoveOffMain", + "printedName": "handleMoveOffMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleMoveOffMain", + "mangledName": "$s12CanvasNative9TNSCanvasC17handleMoveOffMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleMoveToMain", + "printedName": "handleMoveToMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleMoveToMain", + "mangledName": "$s12CanvasNative9TNSCanvasC16handleMoveToMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContext:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContextyAA0c9RenderingE0CSgSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(type:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContextWithType:attributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext4type10attributesAA0c9RenderingE0CSgSS_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(_:contextAttributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContext:contextAttributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext_17contextAttributesAA0c9RenderingE0CSgSS_SDySSypGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(type:contextAttributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContextWithType:contextAttributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext4type17contextAttributesAA0c9RenderingE0CSgSS_AA010TNSContextH0CtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)initWithFrame:", + "mangledName": "$s12CanvasNative9TNSCanvasC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas", + "mangledName": "$s12CanvasNative9TNSCanvasC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvas", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RenderListener", + "printedName": "RenderListener", + "usr": "s:12CanvasNative14RenderListenerP", + "mangledName": "$s12CanvasNative14RenderListenerP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSContextAttributes", + "printedName": "TNSContextAttributes", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes(im)init", + "mangledName": "$s12CanvasNative20TNSContextAttributesCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSContextAttributesC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s12CanvasNative20TNSContextAttributesC4fromACs7Decoder_p_tKcfc", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative20TNSContextAttributesC6encode2toys7Encoder_p_tKF", + "mangledName": "$s12CanvasNative20TNSContextAttributesC6encode2toys7Encoder_p_tKF", + "moduleName": "CanvasNative", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes", + "mangledName": "$s12CanvasNative20TNSContextAttributesC", + "moduleName": "CanvasNative", + "objc_name": "TNSContextAttributes", + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextEncoder", + "printedName": "TNSTextEncoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextEncoder", + "printedName": "CanvasNative.TNSTextEncoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)init", + "mangledName": "$s12CanvasNative14TNSTextEncoderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encoding:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextEncoder", + "printedName": "CanvasNative.TNSTextEncoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)initWithEncoding:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(py)encoding", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encoding", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(text:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encodeWithText:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC6encode4textSo6NSDataCSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(pointer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:SP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encodeWithPointer:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC6encode7pointerSo6NSDataCSPys4Int8VGSg_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder", + "mangledName": "$s12CanvasNative14TNSTextEncoderC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextEncoder", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "Var", + "name": "Default", + "printedName": "Default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaDefault", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO7DefaultyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Premultiply", + "printedName": "Premultiply", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaPremultiply", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO0E0yA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "None", + "printedName": "None", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaNone", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO4NoneyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapPremultiplyAlpha", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_etc1", + "printedName": "TNS_WEBGL_compressed_texture_etc1", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_etc1", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_etc1", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(im)init", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1CACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_ETC1_WEBGL", + "printedName": "COMPRESSED_RGB_ETC1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(py)COMPRESSED_RGB_ETC1_WEBGL", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C020COMPRESSED_RGB_ETC1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(im)COMPRESSED_RGB_ETC1_WEBGL", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C020COMPRESSED_RGB_ETC1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_etc1", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_texture_filter_anisotropic", + "printedName": "TNS_EXT_texture_filter_anisotropic", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_texture_filter_anisotropic", + "printedName": "CanvasNative.TNS_EXT_texture_filter_anisotropic", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)init", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "printedName": "MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(py)MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC012MAX_TEXTURE_h12_ANISOTROPY_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC012MAX_TEXTURE_h12_ANISOTROPY_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_ANISOTROPY_EXT", + "printedName": "TEXTURE_MAX_ANISOTROPY_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(py)TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC023TEXTURE_MAX_ANISOTROPY_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC023TEXTURE_MAX_ANISOTROPY_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_texture_filter_anisotropic", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLineJoin", + "printedName": "TNSLineJoin", + "children": [ + { + "kind": "Var", + "name": "Round", + "printedName": "Round", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinRound", + "mangledName": "$s12CanvasNative11TNSLineJoinO5RoundyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Bevel", + "printedName": "Bevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinBevel", + "mangledName": "$s12CanvasNative11TNSLineJoinO5BevelyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Miter", + "printedName": "Miter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinMiter", + "mangledName": "$s12CanvasNative11TNSLineJoinO5MiteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineJoin?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineJoin?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSLineJoinO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative11TNSLineJoinO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSLineJoin", + "mangledName": "$s12CanvasNative11TNSLineJoinO", + "moduleName": "CanvasNative", + "objc_name": "TNSLineJoin", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapOptions", + "printedName": "TNSImageBitmapOptions", + "children": [ + { + "kind": "Var", + "name": "flipY", + "printedName": "flipY", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)flipY", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)flipY", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setFlipY:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC5flipYSbvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "premultiplyAlpha", + "printedName": "premultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)premultiplyAlpha", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)premultiplyAlpha", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setPremultiplyAlpha:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorSpaceConversion", + "printedName": "colorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)colorSpaceConversion", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)colorSpaceConversion", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setColorSpaceConversion:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeQuality", + "printedName": "resizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeQuality", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeQuality", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeQuality:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeWidth", + "printedName": "resizeWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeWidth", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeWidth", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeWidth:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeHeight", + "printedName": "resizeHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeHeight", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeHeight", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeHeight:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)init", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapOptions", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "TNSFramebufferAttachmentParameter", + "children": [ + { + "kind": "Var", + "name": "isTexture", + "printedName": "isTexture", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)isTexture", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTextureSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)isTexture", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTextureSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isRenderbuffer", + "printedName": "isRenderbuffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)isRenderbuffer", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC14isRenderbufferSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)isRenderbuffer", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC14isRenderbufferSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)value", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC5values5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)value", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC5values5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)init", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isTexture:isRenderbuffer:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)initWithIsTexture:isRenderbuffer:value:", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTexture0F12Renderbuffer5valueACSb_Sbs5Int32Vtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC", + "moduleName": "CanvasNative", + "objc_name": "TNSFramebufferAttachmentParameter", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_element_index_uint", + "printedName": "TNS_OES_element_index_uint", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_element_index_uint", + "printedName": "CanvasNative.TNS_OES_element_index_uint", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(im)init", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "UNSIGNED_INT", + "printedName": "UNSIGNED_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(py)UNSIGNED_INT", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC12UNSIGNED_INTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(im)UNSIGNED_INT", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC12UNSIGNED_INTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_element_index_uint", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSWebGL2RenderingContext", + "printedName": "TNSWebGL2RenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGL2RenderingContext", + "printedName": "CanvasNative.TNSWebGL2RenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)init:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextCyAcA9TNSCanvasCcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGL2RenderingContext", + "printedName": "CanvasNative.TNSWebGL2RenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)init::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextCyAcA9TNSCanvasC_SDySSypGtcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init::", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "beginQuery", + "printedName": "beginQuery(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)beginQuery::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10beginQueryyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "beginTransformFeedback", + "printedName": "beginTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)beginTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22beginTransformFeedbackyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBufferBase", + "printedName": "bindBufferBase(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindBufferBase:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14bindBufferBaseyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBufferRange", + "printedName": "bindBufferRange(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindBufferRange:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15bindBufferRangeyys6UInt32V_A2FS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindSampler", + "printedName": "bindSampler(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindSampler::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11bindSampleryys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindTransformFeedback", + "printedName": "bindTransformFeedback(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindTransformFeedback::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21bindTransformFeedbackyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindVertexArray", + "printedName": "bindVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15bindVertexArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blitFramebuffer", + "printedName": "blitFramebuffer(_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)blitFramebuffer::::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15blitFramebufferyys5Int32V_A7Fs6UInt32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfv", + "printedName": "clearBufferfv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfvyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfv", + "printedName": "clearBufferfv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferiv", + "printedName": "clearBufferiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferivyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferiv", + "printedName": "clearBufferiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferiv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferuiv", + "printedName": "clearBufferuiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferuiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clearBufferuivyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferuiv", + "printedName": "clearBufferuiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferuiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clearBufferuiv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfi", + "printedName": "clearBufferfi(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfi::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfiyys6UInt32V_s5Int32VSfAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientWaitSync", + "printedName": "clientWaitSync(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clientWaitSync:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clientWaitSyncys5Int32Vs13OpaquePointerV_s6UInt32Vs6UInt64VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3Dyys6UInt32V_s5Int32VA6hf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i8:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i8:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________2i8__ys6UInt32V_s5Int32VA6iGSays4Int8VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u8:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u8:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________2u8__ys6UInt32V_s5Int32VA6iGSays5UInt8VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i16:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i16:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3i16__ys6UInt32V_s5Int32VA6iGSays5Int16VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u16:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u16:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3u16__ys6UInt32V_s5Int32VA6iGSays6UInt16VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3i32__ys6UInt32V_s5Int32VA6iGSayAIGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3u32__ys6UInt32V_s5Int32VA6iGSayAGGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:f32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::f32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3f32__ys6UInt32V_s5Int32VA6iGSaySfGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:f64:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::f64:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3f64__ys6UInt32V_s5Int32VA6iGSaySdGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBufferSubData", + "printedName": "copyBufferSubData(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)copyBufferSubData:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17copyBufferSubDatayys6UInt32V_AFS3itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexSubImage3D", + "printedName": "copyTexSubImage3D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)copyTexSubImage3D:::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17copyTexSubImage3Dyys6UInt32V_s5Int32VA7HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createQuery", + "printedName": "createQuery()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createQuery", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11createQuerys6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSampler", + "printedName": "createSampler()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createSampler", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13createSamplers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createVertexArray", + "printedName": "createVertexArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createVertexArray", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17createVertexArrays6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTransformFeedback", + "printedName": "createTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23createTransformFeedbacks6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteQuery", + "printedName": "deleteQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11deleteQueryyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteSampler", + "printedName": "deleteSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteSampler:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13deleteSampleryys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteSync", + "printedName": "deleteSync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteSync:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10deleteSyncyys13OpaquePointerVF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteTransformFeedback", + "printedName": "deleteTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23deleteTransformFeedbackyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteVertexArray", + "printedName": "deleteVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17deleteVertexArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawArraysInstanced", + "printedName": "drawArraysInstanced(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawArraysInstanced::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19drawArraysInstancedyys6UInt32V_s5Int32VA2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElementsInstanced", + "printedName": "drawElementsInstanced(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawElementsInstanced:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21drawElementsInstancedyys6UInt32V_s5Int32VAFSiAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawRangeElements", + "printedName": "drawRangeElements(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawRangeElements::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17drawRangeElementsyys6UInt32V_A2Fs5Int32VAFSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawBuffers", + "printedName": "drawBuffers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawBuffers:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11drawBuffersyySays6UInt32VGF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endQuery", + "printedName": "endQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)endQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8endQueryyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endTransformFeedback", + "printedName": "endTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)endTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20endTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fenceSync", + "printedName": "fenceSync(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)fenceSync::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9fenceSyncyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferTextureLayer", + "printedName": "framebufferTextureLayer(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)framebufferTextureLayer:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23framebufferTextureLayeryys6UInt32V_A2Fs5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniformBlockName", + "printedName": "getActiveUniformBlockName(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniformBlockName::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25getActiveUniformBlockNameySSs6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniformBlockParameter", + "printedName": "getActiveUniformBlockParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniformBlockParameter:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30getActiveUniformBlockParameteryyps6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniforms", + "printedName": "getActiveUniforms(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniforms:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getActiveUniformsyyps6UInt32V_SayAFGAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferSubData", + "printedName": "getBufferSubData(_:_:_:size:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getBufferSubData:::size:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getBufferSubData___4size__ys6UInt32V_SiSvSis5Int32VAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferSubData", + "printedName": "getBufferSubData(_:_:_:size:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getBufferSubData:::size:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getBufferSubData___4size__6offsetys6UInt32V_SiSvSis5Int32VAJSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFragDataLocation", + "printedName": "getFragDataLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getFragDataLocation::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getFragDataLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIndexedParameter", + "printedName": "getIndexedParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getIndexedParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getIndexedParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInternalformatParameter", + "printedName": "getInternalformatParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getInternalformatParameter:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26getInternalformatParameteryyps6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameter", + "printedName": "getParameter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getParameter:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12getParameteryypSgs6UInt32VF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "getParameter:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQuery", + "printedName": "getQuery(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getQuery::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8getQueryyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameter", + "printedName": "getQueryParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getQueryParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getQueryParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSamplerParameter", + "printedName": "getSamplerParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getSamplerParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getSamplerParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSyncParameter", + "printedName": "getSyncParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getSyncParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getSyncParameteryyps13OpaquePointerV_s6UInt32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTransformFeedbackVarying", + "printedName": "getTransformFeedbackVarying(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getTransformFeedbackVarying::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27getTransformFeedbackVaryingyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformBlockIndex", + "printedName": "getUniformBlockIndex(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getUniformBlockIndex::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20getUniformBlockIndexys6UInt32VAF_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformIndices", + "printedName": "getUniformIndices(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getUniformIndices::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getUniformIndicesySays6UInt32VGAF_SaySSGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidateFramebuffer", + "printedName": "invalidateFramebuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)invalidateFramebuffer::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21invalidateFramebufferyys6UInt32V_SayAFGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidateSubFramebuffer", + "printedName": "invalidateSubFramebuffer(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)invalidateSubFramebuffer::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24invalidateSubFramebufferyys6UInt32V_SayAFGs5Int32VA3ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isQuery", + "printedName": "isQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7isQueryySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSampler", + "printedName": "isSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isSampler:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9isSamplerySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSync", + "printedName": "isSync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isSync:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6isSyncySbs13OpaquePointerVF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isTransformFeedback", + "printedName": "isTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19isTransformFeedbackySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isVertexArray", + "printedName": "isVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13isVertexArrayySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pauseTransformFeedback", + "printedName": "pauseTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)pauseTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22pauseTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readBuffer", + "printedName": "readBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)readBuffer:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10readBufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "renderbufferStorageMultisample", + "printedName": "renderbufferStorageMultisample(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)renderbufferStorageMultisample:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30renderbufferStorageMultisampleyys6UInt32V_s5Int32VAf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resumeTransformFeedback", + "printedName": "resumeTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)resumeTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23resumeTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "samplerParameteri", + "printedName": "samplerParameteri(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)samplerParameteri:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17samplerParameteriyys6UInt32V_AFs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "samplerParameterf", + "printedName": "samplerParameterf(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)samplerParameterf:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17samplerParameterfyys6UInt32V_AFSftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::data:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________4datays6UInt32V_s5Int32VA5i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6offsetys6UInt32V_s5Int32VA5i2GSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::pixels:size:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6pixels4sizeys6UInt32V_s5Int32VA5j2HSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:pixels:size:pixelOffset:srcOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::pixels:size:pixelOffset:srcOffset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6pixels4size11pixelOffset03srcL0ys6UInt32V_s5Int32VA5l2JSVS2iALtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2i8ys6UInt32V_s5Int32VA5i2GSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2u8ys6UInt32V_s5Int32VA5i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i16ys6UInt32V_s5Int32VA5i2GSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u16ys6UInt32V_s5Int32VA5i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i32ys6UInt32V_s5Int32VA5i2GSayAIGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u32ys6UInt32V_s5Int32VA5i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f32ys6UInt32V_s5Int32VA5i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f64:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f64ys6UInt32V_s5Int32VA5i2GSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2i8_ys6UInt32V_s5Int32VA5i2GSays4Int8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2u8_ys6UInt32V_s5Int32VA5i2GSays5UInt8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i16_ys6UInt32V_s5Int32VA5i2GSays5Int16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u16_ys6UInt32V_s5Int32VA5i2GSays6UInt16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i32_ys6UInt32V_s5Int32VA5i2GSayAIGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u32_ys6UInt32V_s5Int32VA5i2GSayAGGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f32_ys6UInt32V_s5Int32VA5i2GSaySfGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f64::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f64_ys6UInt32V_s5Int32VA5i2GSaySdGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:source:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::source:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6sourceys6UInt32V_s5Int32VA5i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::asset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________5assetys6UInt32V_s5Int32VA5i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::bitmap:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6bitmapys6UInt32V_s5Int32VA5i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::canvas:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6canvasys6UInt32V_s5Int32VA5i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texStorage2D", + "printedName": "texStorage2D(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texStorage2D:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12texStorage2Dyys6UInt32V_s5Int32VAf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texStorage3D", + "printedName": "texStorage3D(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texStorage3D::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12texStorage3Dyys6UInt32V_s5Int32VAf3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::data:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________4datays6UInt32V_s5Int32VA6i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6offsetys6UInt32V_s5Int32VA6i2gItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2i8ys6UInt32V_s5Int32VA6i2GSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2u8ys6UInt32V_s5Int32VA6i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i16ys6UInt32V_s5Int32VA6i2GSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u16ys6UInt32V_s5Int32VA6i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i32ys6UInt32V_s5Int32VA6i2GSayAIGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u32ys6UInt32V_s5Int32VA6i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f32ys6UInt32V_s5Int32VA6i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f64:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f64ys6UInt32V_s5Int32VA6i2GSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2i8_ys6UInt32V_s5Int32VA6i2GSays4Int8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2u8_ys6UInt32V_s5Int32VA6i2GSays5UInt8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i16_ys6UInt32V_s5Int32VA6i2GSays5Int16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u16_ys6UInt32V_s5Int32VA6i2GSays6UInt16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i32_ys6UInt32V_s5Int32VA6i2GSayAIGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u32_ys6UInt32V_s5Int32VA6i2GSayAGGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f32_ys6UInt32V_s5Int32VA6i2GSaySfGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f64::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f64_ys6UInt32V_s5Int32VA6i2GSaySdGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:srcData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::srcData:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________7srcDatays6UInt32V_s5Int32VA6i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::canvas:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6canvasys6UInt32V_s5Int32VA6i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::asset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________5assetys6UInt32V_s5Int32VA6i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::bitmap:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6bitmapys6UInt32V_s5Int32VA6i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformFeedbackVaryings", + "printedName": "transformFeedbackVaryings(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)transformFeedbackVaryings:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25transformFeedbackVaryingsyys6UInt32V_SaySSGAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1ui", + "printedName": "uniform1ui(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1ui::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform1uiyys5Int32V_s6UInt32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2ui", + "printedName": "uniform2ui(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2ui:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform2uiyys5Int32V_s6UInt32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3ui", + "printedName": "uniform3ui(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3ui::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform3uiyys5Int32V_s6UInt32VA2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4ui", + "printedName": "uniform4ui(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4ui:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform4uiyys5Int32V_s6UInt32VA3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1uiv", + "printedName": "uniform1uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform1uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1uiv", + "printedName": "uniform1uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform1uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2uiv", + "printedName": "uniform2uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform2uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2uiv", + "printedName": "uniform2uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform2uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3uiv", + "printedName": "uniform3uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform3uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3uiv", + "printedName": "uniform3uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform3uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4uiv", + "printedName": "uniform4uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform4uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4uiv", + "printedName": "uniform4uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform4uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformBlockBinding", + "printedName": "uniformBlockBinding(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformBlockBinding:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19uniformBlockBindingyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x2fv", + "printedName": "uniformMatrix3x2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x2fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x2fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x2fv", + "printedName": "uniformMatrix3x2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x2fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x2fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x2fv", + "printedName": "uniformMatrix4x2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x2fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x2fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x2fv", + "printedName": "uniformMatrix4x2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x2fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x2fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x3fv", + "printedName": "uniformMatrix2x3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x3fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x3fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x3fv", + "printedName": "uniformMatrix2x3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x3fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x3fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x3fv", + "printedName": "uniformMatrix4x3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x3fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x3fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x3fv", + "printedName": "uniformMatrix4x3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x3fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x3fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x4fv", + "printedName": "uniformMatrix2x4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x4fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x4fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x4fv", + "printedName": "uniformMatrix2x4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x4fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x4fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x4fv", + "printedName": "uniformMatrix3x4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x4fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x4fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x4fv", + "printedName": "uniformMatrix3x4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x4fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x4fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribDivisor", + "printedName": "vertexAttribDivisor(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribDivisor::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19vertexAttribDivisoryys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4i", + "printedName": "vertexAttribI4i(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4i:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15vertexAttribI4iyys6UInt32V_s5Int32VA3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4ui", + "printedName": "vertexAttribI4ui(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4ui:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4uiyys6UInt32V_A4FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4iv", + "printedName": "vertexAttribI4iv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4iv::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4ivyys6UInt32V_SVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4iv", + "printedName": "vertexAttribI4iv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4iv::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4iv__6offsetys6UInt32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4uiv", + "printedName": "vertexAttribI4uiv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4uiv::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17vertexAttribI4uivyys6UInt32V_SVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4uiv", + "printedName": "vertexAttribI4uiv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4uiv::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17vertexAttribI4uiv__6offsetys6UInt32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "READ_BUFFER", + "printedName": "READ_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11READ_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11READ_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_ROW_LENGTH", + "printedName": "UNPACK_ROW_LENGTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNPACK_ROW_LENGTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNPACK_ROW_LENGTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_ROWS", + "printedName": "UNPACK_SKIP_ROWS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16UNPACK_SKIP_ROWSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16UNPACK_SKIP_ROWSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_PIXELS", + "printedName": "UNPACK_SKIP_PIXELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_PIXELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_PIXELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_ROW_LENGTH", + "printedName": "PACK_ROW_LENGTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15PACK_ROW_LENGTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15PACK_ROW_LENGTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_SKIP_ROWS", + "printedName": "PACK_SKIP_ROWS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14PACK_SKIP_ROWSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14PACK_SKIP_ROWSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_SKIP_PIXELS", + "printedName": "PACK_SKIP_PIXELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16PACK_SKIP_PIXELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16PACK_SKIP_PIXELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_3D", + "printedName": "TEXTURE_BINDING_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BINDING_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BINDING_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BINDING_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BINDING_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_IMAGES", + "printedName": "UNPACK_SKIP_IMAGES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_IMAGES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_IMAGESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_IMAGES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_IMAGESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_IMAGE_HEIGHT", + "printedName": "UNPACK_IMAGE_HEIGHT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_IMAGE_HEIGHT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNPACK_IMAGE_HEIGHTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_IMAGE_HEIGHT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNPACK_IMAGE_HEIGHTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_3D_TEXTURE_SIZE", + "printedName": "MAX_3D_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_3D_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19MAX_3D_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_3D_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19MAX_3D_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENTS_VERTICES", + "printedName": "MAX_ELEMENTS_VERTICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENTS_VERTICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_ELEMENTS_VERTICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENTS_VERTICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_ELEMENTS_VERTICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENTS_INDICES", + "printedName": "MAX_ELEMENTS_INDICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENTS_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_ELEMENTS_INDICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENTS_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_ELEMENTS_INDICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_LOD_BIAS", + "printedName": "MAX_TEXTURE_LOD_BIAS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TEXTURE_LOD_BIAS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_TEXTURE_LOD_BIASs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TEXTURE_LOD_BIAS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_TEXTURE_LOD_BIASs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_COMPONENTS", + "printedName": "MAX_FRAGMENT_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31MAX_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31MAX_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_COMPONENTS", + "printedName": "MAX_VERTEX_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ARRAY_TEXTURE_LAYERS", + "printedName": "MAX_ARRAY_TEXTURE_LAYERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ARRAY_TEXTURE_LAYERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_ARRAY_TEXTURE_LAYERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ARRAY_TEXTURE_LAYERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_ARRAY_TEXTURE_LAYERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIN_PROGRAM_TEXEL_OFFSET", + "printedName": "MIN_PROGRAM_TEXEL_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MIN_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MIN_PROGRAM_TEXEL_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MIN_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MIN_PROGRAM_TEXEL_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_PROGRAM_TEXEL_OFFSET", + "printedName": "MAX_PROGRAM_TEXEL_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_PROGRAM_TEXEL_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_PROGRAM_TEXEL_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VARYING_COMPONENTS", + "printedName": "MAX_VARYING_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VARYING_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_VARYING_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VARYING_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_VARYING_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAGMENT_SHADER_DERIVATIVE_HINT", + "printedName": "FRAGMENT_SHADER_DERIVATIVE_HINT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAGMENT_SHADER_DERIVATIVE_HINT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAGMENT_SHADER_DERIVATIVE_HINTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAGMENT_SHADER_DERIVATIVE_HINT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAGMENT_SHADER_DERIVATIVE_HINTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RASTERIZER_DISCARD", + "printedName": "RASTERIZER_DISCARD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RASTERIZER_DISCARD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18RASTERIZER_DISCARDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RASTERIZER_DISCARD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18RASTERIZER_DISCARDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ARRAY_BINDING", + "printedName": "VERTEX_ARRAY_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ARRAY_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20VERTEX_ARRAY_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ARRAY_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20VERTEX_ARRAY_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_OUTPUT_COMPONENTS", + "printedName": "MAX_VERTEX_OUTPUT_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_OUTPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28MAX_VERTEX_OUTPUT_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_OUTPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28MAX_VERTEX_OUTPUT_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_INPUT_COMPONENTS", + "printedName": "MAX_FRAGMENT_INPUT_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_INPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_FRAGMENT_INPUT_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_INPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_FRAGMENT_INPUT_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_SERVER_WAIT_TIMEOUT", + "printedName": "MAX_SERVER_WAIT_TIMEOUT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_SERVER_WAIT_TIMEOUT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23MAX_SERVER_WAIT_TIMEOUTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_SERVER_WAIT_TIMEOUT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23MAX_SERVER_WAIT_TIMEOUTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENT_INDEX", + "printedName": "MAX_ELEMENT_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENT_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17MAX_ELEMENT_INDEXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENT_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17MAX_ELEMENT_INDEXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED", + "printedName": "RED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3REDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3REDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8", + "printedName": "RGB8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RGB8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RGB8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8", + "printedName": "RGBA8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGBA8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGBA8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB10_A2", + "printedName": "RGB10_A2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB10_A2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGB10_A2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB10_A2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGB10_A2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_3D", + "printedName": "TEXTURE_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10TEXTURE_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10TEXTURE_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_R", + "printedName": "TEXTURE_WRAP_R", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_WRAP_R", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14TEXTURE_WRAP_Rs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_WRAP_R", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14TEXTURE_WRAP_Rs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MIN_LOD", + "printedName": "TEXTURE_MIN_LOD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MIN_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MIN_LODs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MIN_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MIN_LODs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_LOD", + "printedName": "TEXTURE_MAX_LOD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MAX_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MAX_LODs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MAX_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MAX_LODs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BASE_LEVEL", + "printedName": "TEXTURE_BASE_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BASE_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BASE_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BASE_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BASE_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_LEVEL", + "printedName": "TEXTURE_MAX_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MAX_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17TEXTURE_MAX_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MAX_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17TEXTURE_MAX_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_COMPARE_MODE", + "printedName": "TEXTURE_COMPARE_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_COMPARE_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_COMPARE_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_COMPARE_FUNC", + "printedName": "TEXTURE_COMPARE_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_COMPARE_FUNC", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_COMPARE_FUNC", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB", + "printedName": "SRGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4SRGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4SRGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8", + "printedName": "SRGB8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5SRGB8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5SRGB8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8_ALPHA8", + "printedName": "SRGB8_ALPHA8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB8_ALPHA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12SRGB8_ALPHA8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB8_ALPHA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12SRGB8_ALPHA8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPARE_REF_TO_TEXTURE", + "printedName": "COMPARE_REF_TO_TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COMPARE_REF_TO_TEXTURE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22COMPARE_REF_TO_TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COMPARE_REF_TO_TEXTURE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22COMPARE_REF_TO_TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32F", + "printedName": "RGBA32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32F", + "printedName": "RGB32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16F", + "printedName": "RGBA16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F", + "printedName": "RGB16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_2D_ARRAY", + "printedName": "TEXTURE_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16TEXTURE_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16TEXTURE_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_2D_ARRAY", + "printedName": "TEXTURE_BINDING_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BINDING_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_BINDING_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BINDING_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_BINDING_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R11F_G11F_B10F", + "printedName": "R11F_G11F_B10F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14R11F_G11F_B10Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14R11F_G11F_B10Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB9_E5", + "printedName": "RGB9_E5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB9_E5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB9_E5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB9_E5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB9_E5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32UI", + "printedName": "RGBA32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32UI", + "printedName": "RGB32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16UI", + "printedName": "RGBA16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16UI", + "printedName": "RGB16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8UI", + "printedName": "RGBA8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8UI", + "printedName": "RGB8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32I", + "printedName": "RGBA32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32I", + "printedName": "RGB32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16I", + "printedName": "RGBA16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16I", + "printedName": "RGB16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8I", + "printedName": "RGBA8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGBA8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGBA8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8I", + "printedName": "RGB8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGB8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGB8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED_INTEGER", + "printedName": "RED_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RED_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RED_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RED_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RED_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB_INTEGER", + "printedName": "RGB_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGB_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGB_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA_INTEGER", + "printedName": "RGBA_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12RGBA_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12RGBA_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8", + "printedName": "R8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2R8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2R8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8", + "printedName": "RG8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3RG8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3RG8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16F", + "printedName": "R16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32F", + "printedName": "R32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16F", + "printedName": "RG16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32F", + "printedName": "RG32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8I", + "printedName": "R8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3R8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3R8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8UI", + "printedName": "R8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16I", + "printedName": "R16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16UI", + "printedName": "R16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32I", + "printedName": "R32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32UI", + "printedName": "R32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8I", + "printedName": "RG8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RG8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RG8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8UI", + "printedName": "RG8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16I", + "printedName": "RG16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16UI", + "printedName": "RG16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32I", + "printedName": "RG32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32UI", + "printedName": "RG32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8_SNORM", + "printedName": "R8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8R8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8R8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8_SNORM", + "printedName": "RG8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9RG8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9RG8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8_SNORM", + "printedName": "RGB8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8_SNORM", + "printedName": "RGBA8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGBA8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGBA8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB10_A2UI", + "printedName": "RGB10_A2UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB10_A2UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB10_A2UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB10_A2UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB10_A2UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_IMMUTABLE_FORMAT", + "printedName": "TEXTURE_IMMUTABLE_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_IMMUTABLE_FORMAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_IMMUTABLE_FORMAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_IMMUTABLE_LEVELS", + "printedName": "TEXTURE_IMMUTABLE_LEVELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_IMMUTABLE_LEVELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_LEVELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_IMMUTABLE_LEVELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_LEVELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_2_10_10_10_REV", + "printedName": "UNSIGNED_INT_2_10_10_10_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27UNSIGNED_INT_2_10_10_10_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27UNSIGNED_INT_2_10_10_10_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_10F_11F_11F_REV", + "printedName": "UNSIGNED_INT_10F_11F_11F_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_10F_11F_11F_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28UNSIGNED_INT_10F_11F_11F_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_10F_11F_11F_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28UNSIGNED_INT_10F_11F_11F_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_5_9_9_9_REV", + "printedName": "UNSIGNED_INT_5_9_9_9_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_5_9_9_9_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24UNSIGNED_INT_5_9_9_9_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_5_9_9_9_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24UNSIGNED_INT_5_9_9_9_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_32_UNSIGNED_INT_24_8_REV", + "printedName": "FLOAT_32_UNSIGNED_INT_24_8_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_32_UNSIGNED_INT_24_8_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30FLOAT_32_UNSIGNED_INT_24_8_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_32_UNSIGNED_INT_24_8_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30FLOAT_32_UNSIGNED_INT_24_8_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_24_8", + "printedName": "UNSIGNED_INT_24_8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_24_8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_24_8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_24_8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_24_8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HALF_FLOAT", + "printedName": "HALF_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)HALF_FLOAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10HALF_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)HALF_FLOAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10HALF_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG", + "printedName": "RG", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2RGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2RGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG_INTEGER", + "printedName": "RG_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RG_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RG_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_2_10_10_10_REV", + "printedName": "INT_2_10_10_10_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18INT_2_10_10_10_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18INT_2_10_10_10_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "QUERY_RESULT_AVAILABLE", + "printedName": "QUERY_RESULT_AVAILABLE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)QUERY_RESULT_AVAILABLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22QUERY_RESULT_AVAILABLEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)QUERY_RESULT_AVAILABLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22QUERY_RESULT_AVAILABLEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "QUERY_RESULT", + "printedName": "QUERY_RESULT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)QUERY_RESULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12QUERY_RESULTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)QUERY_RESULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12QUERY_RESULTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_QUERY", + "printedName": "CURRENT_QUERY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)CURRENT_QUERY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13CURRENT_QUERYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)CURRENT_QUERY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13CURRENT_QUERYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ANY_SAMPLES_PASSED", + "printedName": "ANY_SAMPLES_PASSED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ANY_SAMPLES_PASSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18ANY_SAMPLES_PASSEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ANY_SAMPLES_PASSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18ANY_SAMPLES_PASSEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ANY_SAMPLES_PASSED_CONSERVATIVE", + "printedName": "ANY_SAMPLES_PASSED_CONSERVATIVE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ANY_SAMPLES_PASSED_CONSERVATIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31ANY_SAMPLES_PASSED_CONSERVATIVEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ANY_SAMPLES_PASSED_CONSERVATIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31ANY_SAMPLES_PASSED_CONSERVATIVEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_DRAW_BUFFERS", + "printedName": "MAX_DRAW_BUFFERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_DRAW_BUFFERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16MAX_DRAW_BUFFERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_DRAW_BUFFERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16MAX_DRAW_BUFFERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER0", + "printedName": "DRAW_BUFFER0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER0", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER0", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER1", + "printedName": "DRAW_BUFFER1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER2", + "printedName": "DRAW_BUFFER2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER3", + "printedName": "DRAW_BUFFER3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER4", + "printedName": "DRAW_BUFFER4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER5", + "printedName": "DRAW_BUFFER5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER6", + "printedName": "DRAW_BUFFER6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER7", + "printedName": "DRAW_BUFFER7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER8", + "printedName": "DRAW_BUFFER8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER9", + "printedName": "DRAW_BUFFER9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER10", + "printedName": "DRAW_BUFFER10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER11", + "printedName": "DRAW_BUFFER11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER12", + "printedName": "DRAW_BUFFER12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER13", + "printedName": "DRAW_BUFFER13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER14", + "printedName": "DRAW_BUFFER14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER15", + "printedName": "DRAW_BUFFER15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COLOR_ATTACHMENTS", + "printedName": "MAX_COLOR_ATTACHMENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COLOR_ATTACHMENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_COLOR_ATTACHMENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COLOR_ATTACHMENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_COLOR_ATTACHMENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT1", + "printedName": "COLOR_ATTACHMENT1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT2", + "printedName": "COLOR_ATTACHMENT2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT3", + "printedName": "COLOR_ATTACHMENT3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT4", + "printedName": "COLOR_ATTACHMENT4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT5", + "printedName": "COLOR_ATTACHMENT5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT6", + "printedName": "COLOR_ATTACHMENT6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT7", + "printedName": "COLOR_ATTACHMENT7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT8", + "printedName": "COLOR_ATTACHMENT8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT9", + "printedName": "COLOR_ATTACHMENT9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT10", + "printedName": "COLOR_ATTACHMENT10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT11", + "printedName": "COLOR_ATTACHMENT11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT12", + "printedName": "COLOR_ATTACHMENT12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT13", + "printedName": "COLOR_ATTACHMENT13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT14", + "printedName": "COLOR_ATTACHMENT14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT15", + "printedName": "COLOR_ATTACHMENT15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_3D", + "printedName": "SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_SHADOW", + "printedName": "SAMPLER_2D_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SAMPLER_2D_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SAMPLER_2D_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_ARRAY", + "printedName": "SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_ARRAY_SHADOW", + "printedName": "SAMPLER_2D_ARRAY_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_ARRAY_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SAMPLER_2D_ARRAY_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_ARRAY_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SAMPLER_2D_ARRAY_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_CUBE_SHADOW", + "printedName": "SAMPLER_CUBE_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_CUBE_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19SAMPLER_CUBE_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_CUBE_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19SAMPLER_CUBE_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_2D", + "printedName": "INT_SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_3D", + "printedName": "INT_SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_CUBE", + "printedName": "INT_SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16INT_SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16INT_SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_2D_ARRAY", + "printedName": "INT_SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20INT_SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20INT_SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_2D", + "printedName": "UNSIGNED_INT_SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_3D", + "printedName": "UNSIGNED_INT_SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_CUBE", + "printedName": "UNSIGNED_INT_SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25UNSIGNED_INT_SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25UNSIGNED_INT_SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_2D_ARRAY", + "printedName": "UNSIGNED_INT_SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNSIGNED_INT_SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNSIGNED_INT_SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_SAMPLES", + "printedName": "MAX_SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11MAX_SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11MAX_SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_BINDING", + "printedName": "SAMPLER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15SAMPLER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15SAMPLER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_PACK_BUFFER", + "printedName": "PIXEL_PACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_PACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17PIXEL_PACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_PACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17PIXEL_PACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_UNPACK_BUFFER", + "printedName": "PIXEL_UNPACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_UNPACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19PIXEL_UNPACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_UNPACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19PIXEL_UNPACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_PACK_BUFFER_BINDING", + "printedName": "PIXEL_PACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_PACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25PIXEL_PACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_PACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25PIXEL_PACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_UNPACK_BUFFER_BINDING", + "printedName": "PIXEL_UNPACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_UNPACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27PIXEL_UNPACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_UNPACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27PIXEL_UNPACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_READ_BUFFER", + "printedName": "COPY_READ_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16COPY_READ_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16COPY_READ_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_WRITE_BUFFER", + "printedName": "COPY_WRITE_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_WRITE_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COPY_WRITE_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_WRITE_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COPY_WRITE_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_READ_BUFFER_BINDING", + "printedName": "COPY_READ_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_READ_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24COPY_READ_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_READ_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24COPY_READ_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_WRITE_BUFFER_BINDING", + "printedName": "COPY_WRITE_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_WRITE_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25COPY_WRITE_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_WRITE_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25COPY_WRITE_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2x3", + "printedName": "FLOAT_MAT2x3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT2x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT2x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2x4", + "printedName": "FLOAT_MAT2x4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT2x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT2x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3x2", + "printedName": "FLOAT_MAT3x2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT3x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT3x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3x4", + "printedName": "FLOAT_MAT3x4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT3x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT3x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4x2", + "printedName": "FLOAT_MAT4x2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT4x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT4x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4x3", + "printedName": "FLOAT_MAT4x3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT4x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT4x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC2", + "printedName": "UNSIGNED_INT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC3", + "printedName": "UNSIGNED_INT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC4", + "printedName": "UNSIGNED_INT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED", + "printedName": "UNSIGNED_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNSIGNED_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNSIGNED_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SIGNED_NORMALIZED", + "printedName": "SIGNED_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SIGNED_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SIGNED_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_INTEGER", + "printedName": "VERTEX_ATTRIB_ARRAY_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ATTRIB_ARRAY_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ATTRIB_ARRAY_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_DIVISOR", + "printedName": "VERTEX_ATTRIB_ARRAY_DIVISOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ATTRIB_ARRAY_DIVISOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_DIVISORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ATTRIB_ARRAY_DIVISOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_DIVISORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_MODE", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "printedName": "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC42MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC42MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_VARYINGS", + "printedName": "TRANSFORM_FEEDBACK_VARYINGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_VARYINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27TRANSFORM_FEEDBACK_VARYINGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_VARYINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27TRANSFORM_FEEDBACK_VARYINGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_START", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_START", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31TRANSFORM_FEEDBACK_BUFFER_STARTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31TRANSFORM_FEEDBACK_BUFFER_STARTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_SIZE", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "printedName": "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37TRANSFORM_FEEDBACK_PRIMITIVES_WRITTENs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37TRANSFORM_FEEDBACK_PRIMITIVES_WRITTENs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "printedName": "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC45MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC45MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "printedName": "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC39MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC39MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INTERLEAVED_ATTRIBS", + "printedName": "INTERLEAVED_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INTERLEAVED_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19INTERLEAVED_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INTERLEAVED_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19INTERLEAVED_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SEPARATE_ATTRIBS", + "printedName": "SEPARATE_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SEPARATE_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SEPARATE_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER", + "printedName": "TRANSFORM_FEEDBACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_BINDING", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33TRANSFORM_FEEDBACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33TRANSFORM_FEEDBACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK", + "printedName": "TRANSFORM_FEEDBACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TRANSFORM_FEEDBACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TRANSFORM_FEEDBACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_PAUSED", + "printedName": "TRANSFORM_FEEDBACK_PAUSED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_PAUSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_PAUSEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_PAUSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_PAUSEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_ACTIVE", + "printedName": "TRANSFORM_FEEDBACK_ACTIVE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_ACTIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_ACTIVEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_ACTIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_ACTIVEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BINDING", + "printedName": "TRANSFORM_FEEDBACK_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26TRANSFORM_FEEDBACK_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26TRANSFORM_FEEDBACK_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "printedName": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COLOR_ENCODINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COLOR_ENCODINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAMEBUFFER_ATTACHMENT_RED_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAMEBUFFER_ATTACHMENT_RED_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_GREEN_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_GREEN_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC32FRAMEBUFFER_ATTACHMENT_BLUE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC32FRAMEBUFFER_ATTACHMENT_BLUE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_ALPHA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_ALPHA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_DEPTH_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_DEPTH_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC35FRAMEBUFFER_ATTACHMENT_STENCIL_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC35FRAMEBUFFER_ATTACHMENT_STENCIL_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_DEFAULT", + "printedName": "FRAMEBUFFER_DEFAULT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_DEFAULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19FRAMEBUFFER_DEFAULTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_DEFAULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19FRAMEBUFFER_DEFAULTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL_ATTACHMENT", + "printedName": "DEPTH_STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL_ATTACHMENT", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL_ATTACHMENT", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL", + "printedName": "DEPTH_STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DEPTH_STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DEPTH_STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH24_STENCIL8", + "printedName": "DEPTH24_STENCIL8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH24_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DEPTH24_STENCIL8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH24_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DEPTH24_STENCIL8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_FRAMEBUFFER_BINDING", + "printedName": "DRAW_FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DRAW_FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DRAW_FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "READ_FRAMEBUFFER", + "printedName": "READ_FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16READ_FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16READ_FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_FRAMEBUFFER", + "printedName": "DRAW_FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DRAW_FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DRAW_FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "READ_FRAMEBUFFER_BINDING", + "printedName": "READ_FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24READ_FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24READ_FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_SAMPLES", + "printedName": "RENDERBUFFER_SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RENDERBUFFER_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20RENDERBUFFER_SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RENDERBUFFER_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20RENDERBUFFER_SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "printedName": "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC34FRAMEBUFFER_INCOMPLETE_MULTISAMPLEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC34FRAMEBUFFER_INCOMPLETE_MULTISAMPLEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER", + "printedName": "UNIFORM_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_BINDING", + "printedName": "UNIFORM_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22UNIFORM_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22UNIFORM_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_START", + "printedName": "UNIFORM_BUFFER_START", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_BUFFER_STARTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_BUFFER_STARTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_SIZE", + "printedName": "UNIFORM_BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_BLOCKS", + "printedName": "MAX_VERTEX_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25MAX_VERTEX_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25MAX_VERTEX_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_BLOCKS", + "printedName": "MAX_FRAGMENT_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_FRAGMENT_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_FRAGMENT_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_UNIFORM_BLOCKS", + "printedName": "MAX_COMBINED_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_COMBINED_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_COMBINED_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_UNIFORM_BUFFER_BINDINGS", + "printedName": "MAX_UNIFORM_BUFFER_BINDINGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_UNIFORM_BUFFER_BINDINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_UNIFORM_BUFFER_BINDINGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_UNIFORM_BUFFER_BINDINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_UNIFORM_BUFFER_BINDINGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_UNIFORM_BLOCK_SIZE", + "printedName": "MAX_UNIFORM_BLOCK_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_UNIFORM_BLOCK_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_UNIFORM_BLOCK_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_UNIFORM_BLOCK_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_UNIFORM_BLOCK_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "printedName": "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC38MAX_COMBINED_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC38MAX_COMBINED_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "printedName": "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC40MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC40MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "printedName": "UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31UNIFORM_BUFFER_OFFSET_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31UNIFORM_BUFFER_OFFSET_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_UNIFORM_BLOCKS", + "printedName": "ACTIVE_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ACTIVE_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21ACTIVE_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ACTIVE_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21ACTIVE_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_TYPE", + "printedName": "UNIFORM_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_SIZE", + "printedName": "UNIFORM_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_INDEX", + "printedName": "UNIFORM_BLOCK_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BLOCK_INDEXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BLOCK_INDEXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_OFFSET", + "printedName": "UNIFORM_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_ARRAY_STRIDE", + "printedName": "UNIFORM_ARRAY_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_ARRAY_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_ARRAY_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_MATRIX_STRIDE", + "printedName": "UNIFORM_MATRIX_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_MATRIX_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_MATRIX_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_MATRIX_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_MATRIX_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_IS_ROW_MAJOR", + "printedName": "UNIFORM_IS_ROW_MAJOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_IS_ROW_MAJOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_IS_ROW_MAJORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_IS_ROW_MAJOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_IS_ROW_MAJORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_BINDING", + "printedName": "UNIFORM_BLOCK_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_BLOCK_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_BLOCK_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_DATA_SIZE", + "printedName": "UNIFORM_BLOCK_DATA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_DATA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNIFORM_BLOCK_DATA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_DATA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNIFORM_BLOCK_DATA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "printedName": "UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNIFORM_BLOCK_ACTIVE_UNIFORMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNIFORM_BLOCK_ACTIVE_UNIFORMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "printedName": "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC021UNIFORM_BLOCK_ACTIVE_G8_INDICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC021UNIFORM_BLOCK_ACTIVE_G8_INDICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "printedName": "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC41UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC41UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "printedName": "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC43UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC43UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "OBJECT_TYPE", + "printedName": "OBJECT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)OBJECT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11OBJECT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)OBJECT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11OBJECT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_CONDITION", + "printedName": "SYNC_CONDITION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_CONDITION", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14SYNC_CONDITIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_CONDITION", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14SYNC_CONDITIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_STATUS", + "printedName": "SYNC_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_STATUS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11SYNC_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_STATUS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11SYNC_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FLAGS", + "printedName": "SYNC_FLAGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FLAGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FLAGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FLAGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FLAGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FENCE", + "printedName": "SYNC_FENCE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FENCE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FENCEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FENCE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FENCEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_GPU_COMMANDS_COMPLETE", + "printedName": "SYNC_GPU_COMMANDS_COMPLETE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_GPU_COMMANDS_COMPLETE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26SYNC_GPU_COMMANDS_COMPLETEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_GPU_COMMANDS_COMPLETE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26SYNC_GPU_COMMANDS_COMPLETEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNALED", + "printedName": "UNSIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10UNSIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10UNSIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SIGNALED", + "printedName": "SIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8SIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8SIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALREADY_SIGNALED", + "printedName": "ALREADY_SIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ALREADY_SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16ALREADY_SIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ALREADY_SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16ALREADY_SIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TIMEOUT_EXPIRED", + "printedName": "TIMEOUT_EXPIRED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TIMEOUT_EXPIRED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_EXPIREDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TIMEOUT_EXPIRED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_EXPIREDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONDITION_SATISFIED", + "printedName": "CONDITION_SATISFIED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)CONDITION_SATISFIED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19CONDITION_SATISFIEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)CONDITION_SATISFIED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19CONDITION_SATISFIEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "WAIT_FAILED", + "printedName": "WAIT_FAILED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)WAIT_FAILED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11WAIT_FAILEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)WAIT_FAILED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11WAIT_FAILEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FLUSH_COMMANDS_BIT", + "printedName": "SYNC_FLUSH_COMMANDS_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FLUSH_COMMANDS_BIT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SYNC_FLUSH_COMMANDS_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FLUSH_COMMANDS_BIT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SYNC_FLUSH_COMMANDS_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR", + "printedName": "COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH", + "printedName": "DEPTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5DEPTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5DEPTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL", + "printedName": "STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIN", + "printedName": "MIN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MIN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MINs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MIN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MINs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX", + "printedName": "MAX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MAXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MAXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT24", + "printedName": "DEPTH_COMPONENT24", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_COMPONENT24", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH_COMPONENT24s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_COMPONENT24", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH_COMPONENT24s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_READ", + "printedName": "STREAM_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STREAM_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STREAM_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_COPY", + "printedName": "STREAM_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STREAM_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STREAM_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_READ", + "printedName": "STATIC_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STATIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STATIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_COPY", + "printedName": "STATIC_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STATIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STATIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_READ", + "printedName": "DYNAMIC_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DYNAMIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DYNAMIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_COPY", + "printedName": "DYNAMIC_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DYNAMIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DYNAMIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT32F", + "printedName": "DEPTH_COMPONENT32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_COMPONENT32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18DEPTH_COMPONENT32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_COMPONENT32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18DEPTH_COMPONENT32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH32F_STENCIL8", + "printedName": "DEPTH32F_STENCIL8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH32F_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH32F_STENCIL8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH32F_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH32F_STENCIL8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_INDEX", + "printedName": "INVALID_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INVALID_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13INVALID_INDEXSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INVALID_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13INVALID_INDEXSivg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TIMEOUT_IGNORED", + "printedName": "TIMEOUT_IGNORED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TIMEOUT_IGNORED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_IGNOREDs6UInt64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TIMEOUT_IGNORED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_IGNOREDs6UInt64Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "printedName": "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_CLIENT_WAIT_TIMEOUT_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_CLIENT_WAIT_TIMEOUT_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGL2RenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSWebGLRenderingContext", + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_pvrtc", + "printedName": "TNS_WEBGL_compressed_texture_pvrtc", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_pvrtc", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_pvrtc", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)init", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "printedName": "COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_4BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_4BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "printedName": "COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_4BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_4BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "printedName": "COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_2BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_2BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "printedName": "COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_2BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_2BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_pvrtc", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLineCap", + "printedName": "TNSLineCap", + "children": [ + { + "kind": "Var", + "name": "Butt", + "printedName": "Butt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapButt", + "mangledName": "$s12CanvasNative10TNSLineCapO4ButtyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Round", + "printedName": "Round", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapRound", + "mangledName": "$s12CanvasNative10TNSLineCapO5RoundyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Square", + "printedName": "Square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapSquare", + "mangledName": "$s12CanvasNative10TNSLineCapO6SquareyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10TNSLineCapO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10TNSLineCapO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineCap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10TNSLineCapO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineCap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10TNSLineCapO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative10TNSLineCapO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSLineCap", + "mangledName": "$s12CanvasNative10TNSLineCapO", + "moduleName": "CanvasNative", + "objc_name": "TNSLineCap", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPath2D", + "printedName": "TNSPath2D", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)init", + "mangledName": "$s12CanvasNative9TNSPath2DCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)initWithPath:", + "mangledName": "$s12CanvasNative9TNSPath2DC4pathA2C_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)initWithData:", + "mangledName": "$s12CanvasNative9TNSPath2DC4dataACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addPath", + "printedName": "addPath(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)addPath:", + "mangledName": "$s12CanvasNative9TNSPath2DC7addPathyyACF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addPath", + "printedName": "addPath(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSDOMMatrix?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)addPath::", + "mangledName": "$s12CanvasNative9TNSPath2DC7addPathyyAC_AA12TNSDOMMatrixCSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closePath", + "printedName": "closePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)closePath", + "mangledName": "$s12CanvasNative9TNSPath2DC9closePathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveTo", + "printedName": "moveTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)moveTo::", + "mangledName": "$s12CanvasNative9TNSPath2DC6moveToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineTo", + "printedName": "lineTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)lineTo::", + "mangledName": "$s12CanvasNative9TNSPath2DC6lineToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bezierCurveTo", + "printedName": "bezierCurveTo(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)bezierCurveTo::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC13bezierCurveToyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quadraticCurveTo", + "printedName": "quadraticCurveTo(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)quadraticCurveTo::::", + "mangledName": "$s12CanvasNative9TNSPath2DC16quadraticCurveToyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arc:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC3arcyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arc::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC3arcyySf_S4fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arcTo", + "printedName": "arcTo(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arcTo:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC5arcToyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)ellipse:::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC7ellipseyySf_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)ellipse::::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC7ellipseyySf_S6fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rect", + "printedName": "rect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)rect::::", + "mangledName": "$s12CanvasNative9TNSPath2DC4rectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRect::::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC9roundRectyySf_S7ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRectWithRadii", + "printedName": "roundRectWithRadii(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRectWithRadii:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC18roundRectWithRadiiyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:radii:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRectWithX:y:width:height:radii:", + "mangledName": "$s12CanvasNative9TNSPath2DC9roundRect1x1y5width6height5radiiySf_S3fSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D", + "mangledName": "$s12CanvasNative9TNSPath2DC", + "moduleName": "CanvasNative", + "objc_name": "TNSPath2D", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_half_float", + "printedName": "TNS_OES_texture_half_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_half_float", + "printedName": "CanvasNative.TNS_OES_texture_half_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(im)init", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "HALF_FLOAT_OES", + "printedName": "HALF_FLOAT_OES", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(py)HALF_FLOAT_OES", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC011HALF_FLOAT_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(im)HALF_FLOAT_OES", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC011HALF_FLOAT_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_half_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextDecoder", + "printedName": "TNSTextDecoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDecoder", + "printedName": "CanvasNative.TNSTextDecoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)init", + "mangledName": "$s12CanvasNative14TNSTextDecoderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encoding:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDecoder", + "printedName": "CanvasNative.TNSTextDecoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)initWithEncoding:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(py)encoding", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)encoding", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6bufferSS10Foundation4DataV_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6buffer6offsetSS10Foundation4DataV_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:offset:length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:offset:length:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6buffer6offset6lengthSS10Foundation4DataV_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU8::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2u8_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u8:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU8::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2u8_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBytes:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode5bytesSSSays5UInt8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8SSSays4Int8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16SSSays6UInt16VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16SSSays5Int16VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32SSSays5Int32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32SSSays6UInt32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder", + "mangledName": "$s12CanvasNative14TNSTextDecoderC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextDecoder", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLActiveInfo", + "printedName": "TNSWebGLActiveInfo", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)name", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4nameSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)name", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4nameSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)size", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4sizes5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)size", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4sizes5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)type", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4types6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)type", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4types6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:size:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)initWithName:size:type:", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4name4size4typeACSS_s5Int32Vs6UInt32Vtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)init", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLActiveInfo", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "CoreVideo", + "printedName": "CoreVideo", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSRender", + "printedName": "TNSRender", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender(im)init", + "mangledName": "$s12CanvasNative9TNSRenderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createSurface", + "printedName": "createSurface()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender(im)createSurface", + "mangledName": "$s12CanvasNative9TNSRenderC13createSurfaceyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender", + "mangledName": "$s12CanvasNative9TNSRenderC", + "moduleName": "CanvasNative", + "objc_name": "TNSRender", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSSVG", + "printedName": "TNSSVG", + "children": [ + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "src", + "printedName": "src", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)src", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)src", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setSrc:", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC3srcSSSgvM", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "srcPath", + "printedName": "srcPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)srcPath", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)srcPath", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setSrcPath:", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC7srcPathSSSgvM", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)layoutSubviews", + "mangledName": "$s12CanvasNative6TNSSVGC14layoutSubviewsyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSSVG", + "printedName": "CanvasNative.TNSSVG", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)initWithFrame:", + "mangledName": "$s12CanvasNative6TNSSVGC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)drawRect:", + "mangledName": "$s12CanvasNative6TNSSVGC4drawyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toImage", + "printedName": "toImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)toImage", + "mangledName": "$s12CanvasNative6TNSSVGC7toImageSo7UIImageCSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toData", + "printedName": "toData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSData?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)toData", + "mangledName": "$s12CanvasNative6TNSSVGC6toDataSo6NSDataCSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG", + "mangledName": "$s12CanvasNative6TNSSVGC", + "moduleName": "CanvasNative", + "objc_name": "TNSSVG", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLRenderingContext", + "printedName": "TNSWebGLRenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCyAcA9TNSCanvasCcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCyAcA9TNSCanvasC_SDySSypGtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getCanvas", + "printedName": "getCanvas()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getCanvas", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC03getA0AA9TNSCanvasCyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "drawingBufferWidth", + "printedName": "drawingBufferWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)drawingBufferWidth", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18drawingBufferWidths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawingBufferWidth", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18drawingBufferWidths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferHeight", + "printedName": "drawingBufferHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)drawingBufferHeight", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19drawingBufferHeights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawingBufferHeight", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19drawingBufferHeights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "activeTexture", + "printedName": "activeTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)activeTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13activeTextureyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attachShader", + "printedName": "attachShader(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)attachShader::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12attachShaderyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindAttribLocation", + "printedName": "bindAttribLocation(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindAttribLocation:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18bindAttribLocationyys6UInt32V_AFSStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBuffer", + "printedName": "bindBuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindBuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bindBufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindFramebuffer", + "printedName": "bindFramebuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindFramebuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15bindFramebufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindRenderbuffer", + "printedName": "bindRenderbuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindRenderbuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16bindRenderbufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindTexture", + "printedName": "bindTexture(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindTexture::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11bindTextureyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendColor", + "printedName": "blendColor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendColor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10blendColoryySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendEquation", + "printedName": "blendEquation(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendEquation:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13blendEquationyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendEquationSeparate", + "printedName": "blendEquationSeparate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendEquationSeparate::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21blendEquationSeparateyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendFunc", + "printedName": "blendFunc(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendFunc::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9blendFuncyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendFuncSeparate", + "printedName": "blendFuncSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendFuncSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17blendFuncSeparateyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:size:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:size::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_4size_ys6UInt32V_SiAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG0_ys6UInt32V_So6NSNullCAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i8::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_2i8_ys6UInt32V_Says4Int8VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:size:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData:size::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG04size_ys6UInt32V_SvSiAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:size:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData:size::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG04size_6offsetys6UInt32V_SvSiAISitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u8::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_2u8_ys6UInt32V_Says5UInt8VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i16::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3i16_ys6UInt32V_Says5Int16VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u16::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3u16_ys6UInt32V_Says6UInt16VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3i32_ys6UInt32V_Says5Int32VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3u32_ys6UInt32V_SayAGGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:f32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3f32_ys6UInt32V_SaySfGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:f64::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3f64_ys6UInt32V_SaySdGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubDatayys6UInt32V_SiSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__2i8ys6UInt32V_SiSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:srcData:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::srcData:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__03srcH04sizeys6UInt32V_SiSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:srcData:size:os:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::srcData:size:os:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__03srcH04size2osys6UInt32V_SiSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__2u8ys6UInt32V_SiSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3i16ys6UInt32V_SiSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3u16ys6UInt32V_SiSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3i32ys6UInt32V_SiSays5Int32VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3u32ys6UInt32V_SiSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3f32ys6UInt32V_SiSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::f64:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3f64ys6UInt32V_SiSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFramebufferStatus", + "printedName": "checkFramebufferStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)checkFramebufferStatus:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22checkFramebufferStatusys6UInt32VAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clear:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5clearyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearColor", + "printedName": "clearColor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearColor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10clearColoryySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearDepth", + "printedName": "clearDepth(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearDepth:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10clearDepthyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearStencil", + "printedName": "clearStencil(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearStencil:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12clearStencilyys5Int32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "colorMask", + "printedName": "colorMask(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)colorMask::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9colorMaskyySb_S3btF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "commit", + "printedName": "commit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)commit", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6commityyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compileShader", + "printedName": "compileShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compileShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13compileShaderyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexImage2D", + "printedName": "compressedTexImage2D(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compressedTexImage2D:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20compressedTexImage2Dyys6UInt32V_s5Int32VAf3H10Foundation4DataVSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage2D", + "printedName": "compressedTexSubImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compressedTexSubImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23compressedTexSubImage2Dyys6UInt32V_s5Int32VA4hF10Foundation4DataVSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexImage2D", + "printedName": "copyTexImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)copyTexImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14copyTexImage2Dyys6UInt32V_s5Int32VAf5HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexSubImage2D", + "printedName": "copyTexSubImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)copyTexSubImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17copyTexSubImage2Dyys6UInt32V_s5Int32VA6HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createBuffer", + "printedName": "createBuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createBuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12createBuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFramebuffer", + "printedName": "createFramebuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createFramebuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17createFramebuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createProgram", + "printedName": "createProgram()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createProgram", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13createPrograms6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRenderbuffer", + "printedName": "createRenderbuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createRenderbuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18createRenderbuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createShader", + "printedName": "createShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12createShaderys6UInt32VAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTexture", + "printedName": "createTexture()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createTexture", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13createTextures6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cullFace", + "printedName": "cullFace(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)cullFace:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8cullFaceyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteBuffer", + "printedName": "deleteBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteBuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12deleteBufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteFramebuffer", + "printedName": "deleteFramebuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteFramebuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17deleteFramebufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteProgram", + "printedName": "deleteProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13deleteProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteRenderbuffer", + "printedName": "deleteRenderbuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteRenderbuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18deleteRenderbufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteShader", + "printedName": "deleteShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12deleteShaderyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteTexture", + "printedName": "deleteTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13deleteTextureyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthFunc", + "printedName": "depthFunc(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthFunc:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9depthFuncyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthMask", + "printedName": "depthMask(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthMask:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9depthMaskyySbF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthRange", + "printedName": "depthRange(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthRange::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10depthRangeyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "detachShader", + "printedName": "detachShader(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)detachShader::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12detachShaderyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)disable:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7disableyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableVertexAttribArray", + "printedName": "disableVertexAttribArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)disableVertexAttribArray:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24disableVertexAttribArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawArrays", + "printedName": "drawArrays(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawArrays:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10drawArraysyys6UInt32V_s5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElements", + "printedName": "drawElements(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawElements::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12drawElementsyys6UInt32V_s5Int32VAFSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)enable:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6enableyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableVertexAttribArray", + "printedName": "enableVertexAttribArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)enableVertexAttribArray:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23enableVertexAttribArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)finish", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6finishyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)flush", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferRenderbuffer", + "printedName": "framebufferRenderbuffer(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)framebufferRenderbuffer::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23framebufferRenderbufferyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferTexture2D", + "printedName": "framebufferTexture2D(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)framebufferTexture2D:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20framebufferTexture2Dyys6UInt32V_A3Fs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frontFace", + "printedName": "frontFace(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)frontFace:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9frontFaceyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateMipmap", + "printedName": "generateMipmap(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)generateMipmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14generateMipmapyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveAttrib", + "printedName": "getActiveAttrib(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getActiveAttrib::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getActiveAttribyAA0C12GLActiveInfoCs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniform", + "printedName": "getActiveUniform(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getActiveUniform::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16getActiveUniformyAA0C12GLActiveInfoCs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttachedShaders", + "printedName": "getAttachedShaders(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getAttachedShaders:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getAttachedShadersySays6UInt32VGAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttribLocation", + "printedName": "getAttribLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getAttribLocation::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17getAttribLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferParameter", + "printedName": "getBufferParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getBufferParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getBufferParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContextAttributes", + "printedName": "getContextAttributes()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getContextAttributes", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC03getE10AttributesypyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getError", + "printedName": "getError()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getError", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8getErrors6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getExtension", + "printedName": "getExtension(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getExtension:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12getExtensionyypSgSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFramebufferAttachmentParameter", + "printedName": "getFramebufferAttachmentParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getFramebufferAttachmentParameter:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33getFramebufferAttachmentParameteryAA014TNSFramebufferhI0Cs6UInt32V_A2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameter", + "printedName": "getParameter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getParameter:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12getParameteryypSgs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProgramInfoLog", + "printedName": "getProgramInfoLog(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getProgramInfoLog:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17getProgramInfoLogySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProgramParameter", + "printedName": "getProgramParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getProgramParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19getProgramParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRenderbufferParameter", + "printedName": "getRenderbufferParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getRenderbufferParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24getRenderbufferParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderInfoLog", + "printedName": "getShaderInfoLog(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderInfoLog:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16getShaderInfoLogySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderParameter", + "printedName": "getShaderParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getShaderParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderPrecisionFormat", + "printedName": "getShaderPrecisionFormat(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderPrecisionFormat::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24getShaderPrecisionFormatyAA0c8GLShaderhI0Cs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderSource", + "printedName": "getShaderSource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderSource:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getShaderSourceySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSupportedExtensions", + "printedName": "getSupportedExtensions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getSupportedExtensions", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22getSupportedExtensionsSaySSGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTexParameter", + "printedName": "getTexParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getTexParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getTexParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniform", + "printedName": "getUniform(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getUniform::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10getUniformyyps6UInt32V_s5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformLocation", + "printedName": "getUniformLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getUniformLocation::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getUniformLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVertexAttrib", + "printedName": "getVertexAttrib(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getVertexAttrib::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getVertexAttribyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVertexAttribOffset", + "printedName": "getVertexAttribOffset(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getVertexAttribOffset::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21getVertexAttribOffsetySis6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hint", + "printedName": "hint(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)hint::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4hintyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isBuffer", + "printedName": "isBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isBuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8isBufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContextLost", + "printedName": "isContextLost()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isContextLost", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC02isE4LostSbyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isEnabled:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isEnabledySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isFramebuffer", + "printedName": "isFramebuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isFramebuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13isFramebufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isProgram", + "printedName": "isProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isProgramySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRenderbuffer", + "printedName": "isRenderbuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isRenderbuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14isRenderbufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isShader", + "printedName": "isShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8isShaderySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isTexture", + "printedName": "isTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isTextureySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineWidth", + "printedName": "lineWidth(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)lineWidth:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9lineWidthyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "linkProgram", + "printedName": "linkProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)linkProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11linkProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pixelStorei", + "printedName": "pixelStorei(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)pixelStorei::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11pixelStoreiyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "polygonOffset", + "printedName": "polygonOffset(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)polygonOffset::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13polygonOffsetyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readPixels", + "printedName": "readPixels(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)readPixels:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10readPixelsyys5Int32V_A3Fs6UInt32VAHSvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readPixels", + "printedName": "readPixels(_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)readPixels:::::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10readPixels_______6offsetys5Int32V_A3Gs6UInt32VAISvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "renderbufferStorage", + "printedName": "renderbufferStorage(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)renderbufferStorage::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19renderbufferStorageyys6UInt32V_AFs5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sampleCoverage", + "printedName": "sampleCoverage(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)sampleCoverage::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14sampleCoverageyySf_SbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scissor", + "printedName": "scissor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)scissor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7scissoryys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shaderSource", + "printedName": "shaderSource(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)shaderSource::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12shaderSourceyys6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilFunc", + "printedName": "stencilFunc(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilFunc:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11stencilFuncyys6UInt32V_s5Int32VAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilFuncSeparate", + "printedName": "stencilFuncSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilFuncSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19stencilFuncSeparateyys6UInt32V_AFs5Int32VAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilMask", + "printedName": "stencilMask(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilMask:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11stencilMaskyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilMaskSeparate", + "printedName": "stencilMaskSeparate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilMaskSeparate::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19stencilMaskSeparateyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilOp", + "printedName": "stencilOp(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilOp:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9stencilOpyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilOpSeparate", + "printedName": "stencilOpSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilOpSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17stencilOpSeparateyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::data:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________4datays6UInt32V_s5Int32VA4i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________2u8ys6UInt32V_s5Int32VA4i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::pixels:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________6pixels4sizeys6UInt32V_s5Int32VA4j2HSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:pixels:size:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::pixels:size:offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________6pixels4size6offsetys6UInt32V_s5Int32VA4k2ISVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3u16ys6UInt32V_s5Int32VA4i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3u32ys6UInt32V_s5Int32VA4i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3f32ys6UInt32V_s5Int32VA4i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2Dyys6UInt32V_s5Int32VA4h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:pixels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::pixels:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6pixelsys6UInt32V_s5Int32VAi2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::asset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____5assetys6UInt32V_s5Int32VAi2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::bitmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6bitmapys6UInt32V_s5Int32VAi2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2Dyys6UInt32V_s5Int32VAh2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::canvas:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6canvasys6UInt32V_s5Int32VAi2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texParameterf", + "printedName": "texParameterf(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texParameterf:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texParameterfyys6UInt32V_AFSftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texParameteri", + "printedName": "texParameteri(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texParameteri:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texParameteriyys6UInt32V_AFs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::data:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________4datays6UInt32V_s5Int32VA4i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________2u8ys6UInt32V_s5Int32VA4i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::pixels:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________6pixels4sizeys6UInt32V_s5Int32VA4j2HSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:pixels:size:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::pixels:size:offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________6pixels4size6offsetys6UInt32V_s5Int32VA4k2ISvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________3u16ys6UInt32V_s5Int32VA4i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________3f32ys6UInt32V_s5Int32VA4i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D:::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2Dyys6UInt32V_s5Int32VA4h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:pixels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::pixels:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6pixelsys6UInt32V_s5Int32VA2i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::asset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______5assetys6UInt32V_s5Int32VA2i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::bitmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6bitmapys6UInt32V_s5Int32VA2i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::canvas:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6canvasys6UInt32V_s5Int32VA2i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2Dyys6UInt32V_s5Int32VA2h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1f", + "printedName": "uniform1f(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1f::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform1fyys5Int32V_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1fv", + "printedName": "uniform1fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1fv", + "printedName": "uniform1fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1i", + "printedName": "uniform1i(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1i::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform1iyys5Int32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1iv", + "printedName": "uniform1iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1iv", + "printedName": "uniform1iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2f", + "printedName": "uniform2f(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2f:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform2fyys5Int32V_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2fv", + "printedName": "uniform2fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2fv", + "printedName": "uniform2fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2i", + "printedName": "uniform2i(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2i:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform2iyys5Int32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2iv", + "printedName": "uniform2iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2iv", + "printedName": "uniform2iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3f", + "printedName": "uniform3f(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3f::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform3fyys5Int32V_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3fv", + "printedName": "uniform3fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3fv", + "printedName": "uniform3fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3i", + "printedName": "uniform3i(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3i::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform3iyys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3iv", + "printedName": "uniform3iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3iv", + "printedName": "uniform3iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4f", + "printedName": "uniform4f(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4f:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform4fyys5Int32V_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4fv", + "printedName": "uniform4fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4fv", + "printedName": "uniform4fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4i", + "printedName": "uniform4i(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4i:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform4iyys5Int32V_A4FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4iv", + "printedName": "uniform4iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4iv", + "printedName": "uniform4iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2fv", + "printedName": "uniformMatrix2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix2fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix2fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2fv", + "printedName": "uniformMatrix2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix2fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix2fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3fv", + "printedName": "uniformMatrix3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix3fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix3fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3fv", + "printedName": "uniformMatrix3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix3fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix3fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4fv", + "printedName": "uniformMatrix4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix4fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix4fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4fv", + "printedName": "uniformMatrix4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix4fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix4fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "useProgram", + "printedName": "useProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)useProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10useProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateProgram", + "printedName": "validateProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)validateProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15validateProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1f", + "printedName": "vertexAttrib1f(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1f::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib1fyys6UInt32V_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2f", + "printedName": "vertexAttrib2f(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2f:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib2fyys6UInt32V_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3f", + "printedName": "vertexAttrib3f(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3f::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib3fyys6UInt32V_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4f", + "printedName": "vertexAttrib4f(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4f:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib4fyys6UInt32V_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1fv", + "printedName": "vertexAttrib1fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib1fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1fv", + "printedName": "vertexAttrib1fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib1fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2fv", + "printedName": "vertexAttrib2fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib2fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2fv", + "printedName": "vertexAttrib2fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib2fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3fv", + "printedName": "vertexAttrib3fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib3fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3fv", + "printedName": "vertexAttrib3fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib3fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4fv", + "printedName": "vertexAttrib4fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib4fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4fv", + "printedName": "vertexAttrib4fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib4fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribPointer", + "printedName": "vertexAttribPointer(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttribPointer::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19vertexAttribPointeryys6UInt32V_s5Int32VAFSbAHSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewport", + "printedName": "viewport(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)viewport::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8viewportyys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "DEPTH_BUFFER_BIT", + "printedName": "DEPTH_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_BUFFER_BIT", + "printedName": "COLOR_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16COLOR_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16COLOR_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BUFFER_BIT", + "printedName": "STENCIL_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POINTS", + "printedName": "POINTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POINTS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6POINTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POINTS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6POINTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINES", + "printedName": "LINES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5LINESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5LINESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_LOOP", + "printedName": "LINE_LOOP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_LOOP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LINE_LOOPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_LOOP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LINE_LOOPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_STRIP", + "printedName": "LINE_STRIP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_STRIPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_STRIPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLES", + "printedName": "TRIANGLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TRIANGLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TRIANGLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLE_STRIP", + "printedName": "TRIANGLE_STRIP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TRIANGLE_STRIPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TRIANGLE_STRIPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLE_FAN", + "printedName": "TRIANGLE_FAN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLE_FAN", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12TRIANGLE_FANs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLE_FAN", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12TRIANGLE_FANs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE", + "printedName": "ONE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3ONEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3ONEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ZERO", + "printedName": "ZERO", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ZERO", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4ZEROs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ZERO", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4ZEROs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_COLOR", + "printedName": "SRC_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_SRC_COLOR", + "printedName": "ONE_MINUS_SRC_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_ALPHA", + "printedName": "SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_SRC_ALPHA", + "printedName": "ONE_MINUS_SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DST_ALPHA", + "printedName": "DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_DST_ALPHA", + "printedName": "ONE_MINUS_DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DST_COLOR", + "printedName": "DST_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_DST_COLOR", + "printedName": "ONE_MINUS_DST_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_ALPHA_SATURATE", + "printedName": "SRC_ALPHA_SATURATE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_ALPHA_SATURATE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18SRC_ALPHA_SATURATEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_ALPHA_SATURATE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18SRC_ALPHA_SATURATEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONSTANT_COLOR", + "printedName": "CONSTANT_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_CONSTANT_COLOR", + "printedName": "ONE_MINUS_CONSTANT_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONSTANT_ALPHA", + "printedName": "CONSTANT_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_CONSTANT_ALPHA", + "printedName": "ONE_MINUS_CONSTANT_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_ADD", + "printedName": "FUNC_ADD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_ADD", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8FUNC_ADDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_ADD", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8FUNC_ADDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_SUBTRACT", + "printedName": "FUNC_SUBTRACT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13FUNC_SUBTRACTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13FUNC_SUBTRACTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_REVERSE_SUBTRACT", + "printedName": "FUNC_REVERSE_SUBTRACT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_REVERSE_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21FUNC_REVERSE_SUBTRACTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_REVERSE_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21FUNC_REVERSE_SUBTRACTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION", + "printedName": "BLEND_EQUATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14BLEND_EQUATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14BLEND_EQUATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION_RGB", + "printedName": "BLEND_EQUATION_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18BLEND_EQUATION_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18BLEND_EQUATION_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION_ALPHA", + "printedName": "BLEND_EQUATION_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20BLEND_EQUATION_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20BLEND_EQUATION_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_DST_RGB", + "printedName": "BLEND_DST_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_DST_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_DST_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_DST_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_DST_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_SRC_RGB", + "printedName": "BLEND_SRC_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_SRC_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_SRC_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_SRC_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_SRC_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_DST_ALPHA", + "printedName": "BLEND_DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_SRC_ALPHA", + "printedName": "BLEND_SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_COLOR", + "printedName": "BLEND_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BLEND_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BLEND_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ARRAY_BUFFER_BINDING", + "printedName": "ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ELEMENT_ARRAY_BUFFER_BINDING", + "printedName": "ELEMENT_ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ELEMENT_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28ELEMENT_ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ELEMENT_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28ELEMENT_ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_WIDTH", + "printedName": "LINE_WIDTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_WIDTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_WIDTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALIASED_POINT_SIZE_RANGE", + "printedName": "ALIASED_POINT_SIZE_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALIASED_POINT_SIZE_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_POINT_SIZE_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALIASED_POINT_SIZE_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_POINT_SIZE_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALIASED_LINE_WIDTH_RANGE", + "printedName": "ALIASED_LINE_WIDTH_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALIASED_LINE_WIDTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_LINE_WIDTH_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALIASED_LINE_WIDTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_LINE_WIDTH_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CULL_FACE_MODE", + "printedName": "CULL_FACE_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CULL_FACE_MODE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CULL_FACE_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CULL_FACE_MODE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CULL_FACE_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT_FACE", + "printedName": "FRONT_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FRONT_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FRONT_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_RANGE", + "printedName": "DEPTH_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11DEPTH_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11DEPTH_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_WRITEMASK", + "printedName": "DEPTH_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_CLEAR_VALUE", + "printedName": "DEPTH_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_FUNC", + "printedName": "DEPTH_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_CLEAR_VALUE", + "printedName": "STENCIL_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19STENCIL_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19STENCIL_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_FUNC", + "printedName": "STENCIL_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_FAIL", + "printedName": "STENCIL_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_PASS_DEPTH_FAIL", + "printedName": "STENCIL_PASS_DEPTH_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_PASS_DEPTH_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_PASS_DEPTH_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_PASS_DEPTH_PASS", + "printedName": "STENCIL_PASS_DEPTH_PASS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC019STENCIL_PASS_DEPTH_G0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC019STENCIL_PASS_DEPTH_G0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_REF", + "printedName": "STENCIL_REF", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STENCIL_REFs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STENCIL_REFs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_VALUE_MASK", + "printedName": "STENCIL_VALUE_MASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_VALUE_MASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_VALUE_MASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_WRITEMASK", + "printedName": "STENCIL_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_FUNC", + "printedName": "STENCIL_BACK_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_FAIL", + "printedName": "STENCIL_BACK_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_PASS_DEPTH_FAIL", + "printedName": "STENCIL_BACK_PASS_DEPTH_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28STENCIL_BACK_PASS_DEPTH_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28STENCIL_BACK_PASS_DEPTH_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_PASS_DEPTH_PASS", + "printedName": "STENCIL_BACK_PASS_DEPTH_PASS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC024STENCIL_BACK_PASS_DEPTH_H0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC024STENCIL_BACK_PASS_DEPTH_H0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_REF", + "printedName": "STENCIL_BACK_REF", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16STENCIL_BACK_REFs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16STENCIL_BACK_REFs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_VALUE_MASK", + "printedName": "STENCIL_BACK_VALUE_MASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_BACK_VALUE_MASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_BACK_VALUE_MASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_WRITEMASK", + "printedName": "STENCIL_BACK_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22STENCIL_BACK_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22STENCIL_BACK_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VIEWPORT", + "printedName": "VIEWPORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VIEWPORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8VIEWPORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VIEWPORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8VIEWPORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SCISSOR_BOX", + "printedName": "SCISSOR_BOX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SCISSOR_BOX", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SCISSOR_BOXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SCISSOR_BOX", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SCISSOR_BOXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_CLEAR_VALUE", + "printedName": "COLOR_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_WRITEMASK", + "printedName": "COLOR_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15COLOR_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15COLOR_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_ALIGNMENT", + "printedName": "UNPACK_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16UNPACK_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16UNPACK_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_ALIGNMENT", + "printedName": "PACK_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)PACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14PACK_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)PACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14PACK_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_SIZE", + "printedName": "MAX_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16MAX_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16MAX_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VIEWPORT_DIMS", + "printedName": "MAX_VIEWPORT_DIMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VIEWPORT_DIMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17MAX_VIEWPORT_DIMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VIEWPORT_DIMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17MAX_VIEWPORT_DIMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SUBPIXEL_BITS", + "printedName": "SUBPIXEL_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SUBPIXEL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13SUBPIXEL_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SUBPIXEL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13SUBPIXEL_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED_BITS", + "printedName": "RED_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RED_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RED_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RED_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RED_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GREEN_BITS", + "printedName": "GREEN_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GREEN_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10GREEN_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GREEN_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10GREEN_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLUE_BITS", + "printedName": "BLUE_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLUE_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BLUE_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLUE_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BLUE_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALPHA_BITS", + "printedName": "ALPHA_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALPHA_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10ALPHA_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALPHA_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10ALPHA_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_BITS", + "printedName": "DEPTH_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BITS", + "printedName": "STENCIL_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_UNITS", + "printedName": "POLYGON_OFFSET_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20POLYGON_OFFSET_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20POLYGON_OFFSET_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_FACTOR", + "printedName": "POLYGON_OFFSET_FACTOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_FACTOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21POLYGON_OFFSET_FACTORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_FACTOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21POLYGON_OFFSET_FACTORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_2D", + "printedName": "TEXTURE_BINDING_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_BINDING_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_BINDING_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_BINDING_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_BINDING_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_BUFFERS", + "printedName": "SAMPLE_BUFFERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_BUFFERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14SAMPLE_BUFFERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_BUFFERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14SAMPLE_BUFFERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLES", + "printedName": "SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE_VALUE", + "printedName": "SAMPLE_COVERAGE_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21SAMPLE_COVERAGE_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21SAMPLE_COVERAGE_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE_INVERT", + "printedName": "SAMPLE_COVERAGE_INVERT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE_INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22SAMPLE_COVERAGE_INVERTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE_INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22SAMPLE_COVERAGE_INVERTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_TEXTURE_FORMATS", + "printedName": "COMPRESSED_TEXTURE_FORMATS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COMPRESSED_TEXTURE_FORMATS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26COMPRESSED_TEXTURE_FORMATSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COMPRESSED_TEXTURE_FORMATS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26COMPRESSED_TEXTURE_FORMATSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VENDOR", + "printedName": "VENDOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VENDOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6VENDORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VENDOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6VENDORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERER", + "printedName": "RENDERER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RENDERERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RENDERERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERSION", + "printedName": "VERSION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7VERSIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7VERSIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "IMPLEMENTATION_COLOR_READ_TYPE", + "printedName": "IMPLEMENTATION_COLOR_READ_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)IMPLEMENTATION_COLOR_READ_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30IMPLEMENTATION_COLOR_READ_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)IMPLEMENTATION_COLOR_READ_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30IMPLEMENTATION_COLOR_READ_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "IMPLEMENTATION_COLOR_READ_FORMAT", + "printedName": "IMPLEMENTATION_COLOR_READ_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)IMPLEMENTATION_COLOR_READ_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32IMPLEMENTATION_COLOR_READ_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)IMPLEMENTATION_COLOR_READ_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32IMPLEMENTATION_COLOR_READ_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BROWSER_DEFAULT_WEBGL", + "printedName": "BROWSER_DEFAULT_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BROWSER_DEFAULT_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21BROWSER_DEFAULT_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BROWSER_DEFAULT_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21BROWSER_DEFAULT_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_DRAW", + "printedName": "STATIC_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STATIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STATIC_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STATIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STATIC_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_DRAW", + "printedName": "STREAM_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STREAM_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STREAM_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STREAM_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STREAM_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_DRAW", + "printedName": "DYNAMIC_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DYNAMIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12DYNAMIC_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DYNAMIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12DYNAMIC_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ARRAY_BUFFER", + "printedName": "ARRAY_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12ARRAY_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12ARRAY_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ELEMENT_ARRAY_BUFFER", + "printedName": "ELEMENT_ARRAY_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ELEMENT_ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ELEMENT_ARRAY_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ELEMENT_ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ELEMENT_ARRAY_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BUFFER_SIZE", + "printedName": "BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BUFFER_USAGE", + "printedName": "BUFFER_USAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BUFFER_USAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12BUFFER_USAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BUFFER_USAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12BUFFER_USAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_VERTEX_ATTRIB", + "printedName": "CURRENT_VERTEX_ATTRIB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CURRENT_VERTEX_ATTRIB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21CURRENT_VERTEX_ATTRIBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CURRENT_VERTEX_ATTRIB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21CURRENT_VERTEX_ATTRIBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_ENABLED", + "printedName": "VERTEX_ATTRIB_ARRAY_ENABLED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_ENABLED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_ENABLEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_ENABLED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_ENABLEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_SIZE", + "printedName": "VERTEX_ATTRIB_ARRAY_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_STRIDE", + "printedName": "VERTEX_ATTRIB_ARRAY_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26VERTEX_ATTRIB_ARRAY_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26VERTEX_ATTRIB_ARRAY_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_TYPE", + "printedName": "VERTEX_ATTRIB_ARRAY_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_NORMALIZED", + "printedName": "VERTEX_ATTRIB_ARRAY_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_NORMALIZED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30VERTEX_ATTRIB_ARRAY_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_NORMALIZED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30VERTEX_ATTRIB_ARRAY_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_POINTER", + "printedName": "VERTEX_ATTRIB_ARRAY_POINTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_POINTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_POINTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_POINTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_POINTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "printedName": "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34VERTEX_ATTRIB_ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34VERTEX_ATTRIB_ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CULL_FACE", + "printedName": "CULL_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CULL_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9CULL_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CULL_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9CULL_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT", + "printedName": "FRONT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FRONTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FRONTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BACK", + "printedName": "BACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT_AND_BACK", + "printedName": "FRONT_AND_BACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT_AND_BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14FRONT_AND_BACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT_AND_BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14FRONT_AND_BACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND", + "printedName": "BLEND", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5BLENDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5BLENDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_TEST", + "printedName": "DEPTH_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DITHER", + "printedName": "DITHER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DITHER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6DITHERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DITHER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6DITHERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_FILL", + "printedName": "POLYGON_OFFSET_FILL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_FILL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19POLYGON_OFFSET_FILLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_FILL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19POLYGON_OFFSET_FILLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_ALPHA_TO_COVERAGE", + "printedName": "SAMPLE_ALPHA_TO_COVERAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_ALPHA_TO_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SAMPLE_ALPHA_TO_COVERAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_ALPHA_TO_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SAMPLE_ALPHA_TO_COVERAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE", + "printedName": "SAMPLE_COVERAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15SAMPLE_COVERAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15SAMPLE_COVERAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SCISSOR_TEST", + "printedName": "SCISSOR_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SCISSOR_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SCISSOR_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SCISSOR_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SCISSOR_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_TEST", + "printedName": "STENCIL_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NO_ERROR", + "printedName": "NO_ERROR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NO_ERROR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NO_ERRORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NO_ERROR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NO_ERRORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_ENUM", + "printedName": "INVALID_ENUM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_ENUM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12INVALID_ENUMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_ENUM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12INVALID_ENUMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_VALUE", + "printedName": "INVALID_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13INVALID_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13INVALID_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_OPERATION", + "printedName": "INVALID_OPERATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17INVALID_OPERATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17INVALID_OPERATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_FRAMEBUFFER_OPERATION", + "printedName": "INVALID_FRAMEBUFFER_OPERATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_FRAMEBUFFER_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC29INVALID_FRAMEBUFFER_OPERATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_FRAMEBUFFER_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC29INVALID_FRAMEBUFFER_OPERATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "OUT_OF_MEMORY", + "printedName": "OUT_OF_MEMORY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)OUT_OF_MEMORY", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13OUT_OF_MEMORYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)OUT_OF_MEMORY", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13OUT_OF_MEMORYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONTEXT_LOST_WEBGL", + "printedName": "CONTEXT_LOST_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONTEXT_LOST_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18CONTEXT_LOST_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONTEXT_LOST_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18CONTEXT_LOST_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CW", + "printedName": "CW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC2CWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC2CWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CCW", + "printedName": "CCW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CCW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3CCWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CCW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3CCWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DONT_CARE", + "printedName": "DONT_CARE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DONT_CARE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DONT_CAREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DONT_CARE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DONT_CAREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FASTEST", + "printedName": "FASTEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FASTEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7FASTESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FASTEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7FASTESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NICEST", + "printedName": "NICEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NICEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6NICESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NICEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6NICESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GENERATE_MIPMAP_HINT", + "printedName": "GENERATE_MIPMAP_HINT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GENERATE_MIPMAP_HINT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20GENERATE_MIPMAP_HINTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GENERATE_MIPMAP_HINT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20GENERATE_MIPMAP_HINTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BYTE", + "printedName": "BYTE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BYTEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BYTEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_BYTE", + "printedName": "UNSIGNED_BYTE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13UNSIGNED_BYTEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13UNSIGNED_BYTEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT", + "printedName": "UNSIGNED_SHORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14UNSIGNED_SHORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14UNSIGNED_SHORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHORT", + "printedName": "SHORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5SHORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5SHORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT", + "printedName": "UNSIGNED_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12UNSIGNED_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12UNSIGNED_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT", + "printedName": "INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT", + "printedName": "FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT", + "printedName": "DEPTH_COMPONENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_COMPONENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_COMPONENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_COMPONENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_COMPONENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALPHA", + "printedName": "ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB", + "printedName": "RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA", + "printedName": "RGBA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGBA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4RGBAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGBA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4RGBAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LUMINANCE", + "printedName": "LUMINANCE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LUMINANCE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LUMINANCEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LUMINANCE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LUMINANCEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LUMINANCE_ALPHA", + "printedName": "LUMINANCE_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LUMINANCE_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15LUMINANCE_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LUMINANCE_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15LUMINANCE_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_4_4_4_4", + "printedName": "UNSIGNED_SHORT_4_4_4_4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_4_4_4_4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_4_4_4_4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_4_4_4_4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_4_4_4_4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_5_5_5_1", + "printedName": "UNSIGNED_SHORT_5_5_5_1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_5_5_5_1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_5_5_5_1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_5_5_5_1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_5_5_5_1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_5_6_5", + "printedName": "UNSIGNED_SHORT_5_6_5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_5_6_5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20UNSIGNED_SHORT_5_6_5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_5_6_5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20UNSIGNED_SHORT_5_6_5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAGMENT_SHADER", + "printedName": "FRAGMENT_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15FRAGMENT_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15FRAGMENT_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_SHADER", + "printedName": "VERTEX_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13VERTEX_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13VERTEX_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPILE_STATUS", + "printedName": "COMPILE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COMPILE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14COMPILE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COMPILE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14COMPILE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DELETE_STATUS", + "printedName": "DELETE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DELETE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DELETE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DELETE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DELETE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINK_STATUS", + "printedName": "LINK_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINK_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11LINK_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINK_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11LINK_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VALIDATE_STATUS", + "printedName": "VALIDATE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VALIDATE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15VALIDATE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VALIDATE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15VALIDATE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ATTACHED_SHADERS", + "printedName": "ATTACHED_SHADERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ATTACHED_SHADERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16ATTACHED_SHADERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ATTACHED_SHADERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16ATTACHED_SHADERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_ATTRIBUTES", + "printedName": "ACTIVE_ATTRIBUTES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_ATTRIBUTES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17ACTIVE_ATTRIBUTESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_ATTRIBUTES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17ACTIVE_ATTRIBUTESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_UNIFORMS", + "printedName": "ACTIVE_UNIFORMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15ACTIVE_UNIFORMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15ACTIVE_UNIFORMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_VECTORS", + "printedName": "MAX_VERTEX_UNIFORM_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26MAX_VERTEX_UNIFORM_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26MAX_VERTEX_UNIFORM_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VARYING_VECTORS", + "printedName": "MAX_VARYING_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VARYING_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19MAX_VARYING_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VARYING_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19MAX_VARYING_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32MAX_COMBINED_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32MAX_COMBINED_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30MAX_VERTEX_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30MAX_VERTEX_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23MAX_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23MAX_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_ATTRIBS", + "printedName": "MAX_VERTEX_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_ATTRIBS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18MAX_VERTEX_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_ATTRIBS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18MAX_VERTEX_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_VECTORS", + "printedName": "MAX_FRAGMENT_UNIFORM_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_FRAGMENT_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28MAX_FRAGMENT_UNIFORM_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_FRAGMENT_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28MAX_FRAGMENT_UNIFORM_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHADER_TYPE", + "printedName": "SHADER_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHADER_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SHADER_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHADER_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SHADER_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHADING_LANGUAGE_VERSION", + "printedName": "SHADING_LANGUAGE_VERSION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHADING_LANGUAGE_VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SHADING_LANGUAGE_VERSIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHADING_LANGUAGE_VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SHADING_LANGUAGE_VERSIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_PROGRAM", + "printedName": "CURRENT_PROGRAM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CURRENT_PROGRAM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15CURRENT_PROGRAMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CURRENT_PROGRAM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15CURRENT_PROGRAMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEVER", + "printedName": "NEVER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEVER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5NEVERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEVER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5NEVERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LESS", + "printedName": "LESS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LESS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4LESSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LESS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4LESSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "EQUAL", + "printedName": "EQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)EQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5EQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)EQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5EQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LEQUAL", + "printedName": "LEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GREATER", + "printedName": "GREATER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GREATER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7GREATERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GREATER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7GREATERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NOTEQUAL", + "printedName": "NOTEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NOTEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NOTEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NOTEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NOTEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GEQUAL", + "printedName": "GEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6GEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6GEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALWAYS", + "printedName": "ALWAYS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALWAYS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6ALWAYSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALWAYS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6ALWAYSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "KEEP", + "printedName": "KEEP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)KEEP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4KEEPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)KEEP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4KEEPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "REPLACE", + "printedName": "REPLACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)REPLACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7REPLACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)REPLACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7REPLACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INCR", + "printedName": "INCR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INCR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4INCRs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INCR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4INCRs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DECR", + "printedName": "DECR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DECR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4DECRs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DECR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4DECRs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVERT", + "printedName": "INVERT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6INVERTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6INVERTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INCR_WRAP", + "printedName": "INCR_WRAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INCR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9INCR_WRAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INCR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9INCR_WRAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DECR_WRAP", + "printedName": "DECR_WRAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DECR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DECR_WRAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DECR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DECR_WRAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST", + "printedName": "NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7NEARESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7NEARESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR", + "printedName": "LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LINEARs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LINEARs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST_MIPMAP_NEAREST", + "printedName": "NEAREST_MIPMAP_NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC015NEAREST_MIPMAP_F0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC015NEAREST_MIPMAP_F0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR_MIPMAP_NEAREST", + "printedName": "LINEAR_MIPMAP_NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21LINEAR_MIPMAP_NEARESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21LINEAR_MIPMAP_NEARESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST_MIPMAP_LINEAR", + "printedName": "NEAREST_MIPMAP_LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21NEAREST_MIPMAP_LINEARs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21NEAREST_MIPMAP_LINEARs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR_MIPMAP_LINEAR", + "printedName": "LINEAR_MIPMAP_LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC014LINEAR_MIPMAP_F0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC014LINEAR_MIPMAP_F0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAG_FILTER", + "printedName": "TEXTURE_MAG_FILTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_MAG_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MAG_FILTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_MAG_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MAG_FILTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MIN_FILTER", + "printedName": "TEXTURE_MIN_FILTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_MIN_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MIN_FILTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_MIN_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MIN_FILTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_S", + "printedName": "TEXTURE_WRAP_S", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_WRAP_S", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ss6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_WRAP_S", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ss6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_T", + "printedName": "TEXTURE_WRAP_T", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_WRAP_T", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ts6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_WRAP_T", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ts6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_2D", + "printedName": "TEXTURE_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10TEXTURE_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10TEXTURE_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE", + "printedName": "TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP", + "printedName": "TEXTURE_CUBE_MAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16TEXTURE_CUBE_MAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16TEXTURE_CUBE_MAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_CUBE_MAP", + "printedName": "TEXTURE_BINDING_CUBE_MAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_BINDING_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24TEXTURE_BINDING_CUBE_MAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_BINDING_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24TEXTURE_BINDING_CUBE_MAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_X", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_X", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Xs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Xs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_X", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_X", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Xs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Xs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Y", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_Y", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Ys6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Ys6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Y", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_Y", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Ys6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Ys6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Z", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_Z", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Zs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Zs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Z", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_Z", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Zs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Zs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_CUBE_MAP_TEXTURE_SIZE", + "printedName": "MAX_CUBE_MAP_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_CUBE_MAP_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25MAX_CUBE_MAP_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_CUBE_MAP_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25MAX_CUBE_MAP_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE0", + "printedName": "TEXTURE0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE1", + "printedName": "TEXTURE1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE2", + "printedName": "TEXTURE2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE3", + "printedName": "TEXTURE3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE4", + "printedName": "TEXTURE4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE5", + "printedName": "TEXTURE5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE6", + "printedName": "TEXTURE6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE6", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE6", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE7", + "printedName": "TEXTURE7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE7", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE7", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE8", + "printedName": "TEXTURE8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE9", + "printedName": "TEXTURE9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE9", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE9", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE10", + "printedName": "TEXTURE10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE10", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE10", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE11", + "printedName": "TEXTURE11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE11", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE11", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE12", + "printedName": "TEXTURE12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE12", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE12", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE13", + "printedName": "TEXTURE13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE13", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE13", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE14", + "printedName": "TEXTURE14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE14", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE14", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE15", + "printedName": "TEXTURE15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE15", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE15", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE16", + "printedName": "TEXTURE16", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE16s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE16s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE17", + "printedName": "TEXTURE17", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE17", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE17s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE17", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE17s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE18", + "printedName": "TEXTURE18", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE18", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE18s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE18", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE18s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE19", + "printedName": "TEXTURE19", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE19", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE19s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE19", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE19s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE20", + "printedName": "TEXTURE20", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE20", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE20s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE20", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE20s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE21", + "printedName": "TEXTURE21", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE21", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE21s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE21", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE21s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE22", + "printedName": "TEXTURE22", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE22", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE22s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE22", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE22s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE23", + "printedName": "TEXTURE23", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE23", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE23s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE23", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE23s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE24", + "printedName": "TEXTURE24", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE24", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE24s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE24", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE24s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE25", + "printedName": "TEXTURE25", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE25", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE25s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE25", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE25s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE26", + "printedName": "TEXTURE26", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE26", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE26s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE26", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE26s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE27", + "printedName": "TEXTURE27", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE27", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE27s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE27", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE27s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE28", + "printedName": "TEXTURE28", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE28", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE28s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE28", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE28s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE29", + "printedName": "TEXTURE29", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE29", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE29s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE29", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE29s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE30", + "printedName": "TEXTURE30", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE30", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE30s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE30", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE30s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE31", + "printedName": "TEXTURE31", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE31", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE31s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE31", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE31s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_TEXTURE", + "printedName": "ACTIVE_TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14ACTIVE_TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14ACTIVE_TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "REPEAT", + "printedName": "REPEAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6REPEATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6REPEATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CLAMP_TO_EDGE", + "printedName": "CLAMP_TO_EDGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CLAMP_TO_EDGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13CLAMP_TO_EDGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CLAMP_TO_EDGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13CLAMP_TO_EDGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIRRORED_REPEAT", + "printedName": "MIRRORED_REPEAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MIRRORED_REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15MIRRORED_REPEATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MIRRORED_REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15MIRRORED_REPEATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC2", + "printedName": "FLOAT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC3", + "printedName": "FLOAT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC4", + "printedName": "FLOAT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC2", + "printedName": "INT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC3", + "printedName": "INT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC4", + "printedName": "INT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL", + "printedName": "BOOL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BOOLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BOOLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC2", + "printedName": "BOOL_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC3", + "printedName": "BOOL_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC4", + "printedName": "BOOL_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2", + "printedName": "FLOAT_MAT2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3", + "printedName": "FLOAT_MAT3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4", + "printedName": "FLOAT_MAT4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D", + "printedName": "SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLER_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLER_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_CUBE", + "printedName": "SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLER_CUBE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLER_CUBE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LOW_FLOAT", + "printedName": "LOW_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LOW_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LOW_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LOW_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LOW_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MEDIUM_FLOAT", + "printedName": "MEDIUM_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MEDIUM_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12MEDIUM_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MEDIUM_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12MEDIUM_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HIGH_FLOAT", + "printedName": "HIGH_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)HIGH_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10HIGH_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)HIGH_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10HIGH_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LOW_INT", + "printedName": "LOW_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LOW_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7LOW_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LOW_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7LOW_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MEDIUM_INT", + "printedName": "MEDIUM_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MEDIUM_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10MEDIUM_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MEDIUM_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10MEDIUM_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HIGH_INT", + "printedName": "HIGH_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)HIGH_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8HIGH_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)HIGH_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8HIGH_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER", + "printedName": "FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER", + "printedName": "RENDERBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12RENDERBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12RENDERBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA4", + "printedName": "RGBA4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGBA4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5RGBA4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGBA4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5RGBA4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB565", + "printedName": "RGB565", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB565", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6RGB565s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB565", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6RGB565s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB5_A1", + "printedName": "RGB5_A1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB5_A1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7RGB5_A1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB5_A1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7RGB5_A1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT16", + "printedName": "DEPTH_COMPONENT16", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_COMPONENT16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_COMPONENT16s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_COMPONENT16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_COMPONENT16s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_INDEX8", + "printedName": "STENCIL_INDEX8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_INDEX8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14STENCIL_INDEX8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_INDEX8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14STENCIL_INDEX8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL", + "printedName": "DEPTH_STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DEPTH_STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DEPTH_STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_WIDTH", + "printedName": "RENDERBUFFER_WIDTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18RENDERBUFFER_WIDTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18RENDERBUFFER_WIDTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_HEIGHT", + "printedName": "RENDERBUFFER_HEIGHT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_HEIGHT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19RENDERBUFFER_HEIGHTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_HEIGHT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19RENDERBUFFER_HEIGHTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_INTERNAL_FORMAT", + "printedName": "RENDERBUFFER_INTERNAL_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_INTERNAL_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28RENDERBUFFER_INTERNAL_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_INTERNAL_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28RENDERBUFFER_INTERNAL_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_RED_SIZE", + "printedName": "RENDERBUFFER_RED_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_RED_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21RENDERBUFFER_RED_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_RED_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21RENDERBUFFER_RED_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_GREEN_SIZE", + "printedName": "RENDERBUFFER_GREEN_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_GREEN_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_GREEN_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_GREEN_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_GREEN_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_BLUE_SIZE", + "printedName": "RENDERBUFFER_BLUE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_BLUE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22RENDERBUFFER_BLUE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_BLUE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22RENDERBUFFER_BLUE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_ALPHA_SIZE", + "printedName": "RENDERBUFFER_ALPHA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_ALPHA_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_ALPHA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_ALPHA_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_ALPHA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_DEPTH_SIZE", + "printedName": "RENDERBUFFER_DEPTH_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_DEPTH_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_DEPTH_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_DEPTH_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_DEPTH_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_STENCIL_SIZE", + "printedName": "RENDERBUFFER_STENCIL_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_STENCIL_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25RENDERBUFFER_STENCIL_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_STENCIL_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25RENDERBUFFER_STENCIL_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "printedName": "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "printedName": "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_NAMEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_NAMEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC44FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC44FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT0", + "printedName": "COLOR_ATTACHMENT0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_ATTACHMENT0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_ATTACHMENT0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_ATTACHMENT0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_ATTACHMENT0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_ATTACHMENT", + "printedName": "DEPTH_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_ATTACHMENT", + "printedName": "STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL_ATTACHMENT", + "printedName": "DEPTH_STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NONE", + "printedName": "NONE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4NONEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4NONEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_COMPLETE", + "printedName": "FRAMEBUFFER_COMPLETE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_COMPLETE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20FRAMEBUFFER_COMPLETEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_COMPLETE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20FRAMEBUFFER_COMPLETEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "printedName": "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "printedName": "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC41FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC41FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "printedName": "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_DIMENSIONSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_DIMENSIONSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_UNSUPPORTED", + "printedName": "FRAMEBUFFER_UNSUPPORTED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_UNSUPPORTED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23FRAMEBUFFER_UNSUPPORTEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_UNSUPPORTED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23FRAMEBUFFER_UNSUPPORTEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_BINDING", + "printedName": "FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_BINDING", + "printedName": "RENDERBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20RENDERBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20RENDERBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_RENDERBUFFER_SIZE", + "printedName": "MAX_RENDERBUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_RENDERBUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21MAX_RENDERBUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_RENDERBUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21MAX_RENDERBUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_COLORSPACE_CONVERSION_WEBGL", + "printedName": "UNPACK_COLORSPACE_CONVERSION_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_COLORSPACE_CONVERSION_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34UNPACK_COLORSPACE_CONVERSION_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_COLORSPACE_CONVERSION_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34UNPACK_COLORSPACE_CONVERSION_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_FLIP_Y_WEBGL", + "printedName": "UNPACK_FLIP_Y_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_FLIP_Y_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19UNPACK_FLIP_Y_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_FLIP_Y_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19UNPACK_FLIP_Y_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "printedName": "UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30UNPACK_PREMULTIPLY_ALPHA_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30UNPACK_PREMULTIPLY_ALPHA_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLRenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "superclassNames": [ + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmap", + "printedName": "TNSImageBitmap", + "children": [ + { + "kind": "Var", + "name": "queue", + "printedName": "queue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cpy)queue", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5queueSo012OS_dispatch_E0CvpZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)queue", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5queueSo012OS_dispatch_E0CvgZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createFromImageBitmap", + "printedName": "createFromImageBitmap(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageBitmap:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC015createFromImageD0yyAC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageBitmap", + "printedName": "createFromImageBitmap(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageBitmap:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC015createFromImageD0yyAC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageAsset", + "printedName": "createFromImageAsset(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageAsset:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC20createFromImageAssetyyAA0cH0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageAsset", + "printedName": "createFromImageAsset(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageAsset:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC20createFromImageAssetyyAA0cH0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageData", + "printedName": "createFromImageData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageData:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC19createFromImageDatayyAA0cH0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageData", + "printedName": "createFromImageData(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageData:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC19createFromImageDatayyAA0cH0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromCanvas", + "printedName": "createFromCanvas(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromCanvas:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC010createFromA0yyAA9TNSCanvasC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromCanvas", + "printedName": "createFromCanvas(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromCanvas:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC010createFromA0yyAA9TNSCanvasC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromData", + "printedName": "createFromData(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromData:::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC14createFromDatayySo6NSDataC_S2fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromData", + "printedName": "createFromData(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromData:::::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC14createFromDatayySo6NSDataC_S6fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromDataEncoded", + "printedName": "createFromDataEncoded(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromDataEncoded:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC21createFromDataEncodedyySo6NSDataC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromDataEncoded", + "printedName": "createFromDataEncoded(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromDataEncoded:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC21createFromDataEncodedyySo6NSDataC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytes", + "printedName": "createFromBytes(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytes:::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC15createFromBytesyySays5UInt8VG_S2fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytes", + "printedName": "createFromBytes(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytes:::::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC15createFromBytesyySays5UInt8VG_S6fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytesEncoded", + "printedName": "createFromBytesEncoded(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytesEncoded:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC22createFromBytesEncodedyySays5UInt8VG_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytesEncoded", + "printedName": "createFromBytesEncoded(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytesEncoded:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC22createFromBytesEncodedyySays5UInt8VG_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromUIImage", + "printedName": "createFromUIImage(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromUIImage:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC17createFromUIImageyySo0G0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromUIImage", + "printedName": "createFromUIImage(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromUIImage:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC17createFromUIImageyySo0G0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)width", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)width", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)height", + "mangledName": "$s12CanvasNative14TNSImageBitmapC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)height", + "mangledName": "$s12CanvasNative14TNSImageBitmapC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)close", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5closeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)error", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5errorSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)error", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5errorSSSgvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)init", + "mangledName": "$s12CanvasNative14TNSImageBitmapCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap", + "mangledName": "$s12CanvasNative14TNSImageBitmapC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmap", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_fbo_render_mipmap", + "printedName": "TNS_OES_fbo_render_mipmap", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_fbo_render_mipmap", + "printedName": "CanvasNative.TNS_OES_fbo_render_mipmap", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap(im)init", + "mangledName": "$s12CanvasNative25TNS_OES_fbo_render_mipmapCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap", + "mangledName": "$s12CanvasNative25TNS_OES_fbo_render_mipmapC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_fbo_render_mipmap", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageSmoothingQuality", + "printedName": "TNSImageSmoothingQuality", + "children": [ + { + "kind": "Var", + "name": "Low", + "printedName": "Low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityLow", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO3LowyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Medium", + "printedName": "Medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityMedium", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO6MediumyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "High", + "printedName": "High", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityHigh", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO4HighyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageSmoothingQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageSmoothingQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageSmoothingQuality", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "CoreVideo", + "printedName": "CoreVideo", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "Utils", + "printedName": "Utils", + "children": [ + { + "kind": "Function", + "name": "createTextureCache", + "printedName": "createTextureCache(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreVideo.CVOpenGLESTextureCache?", + "children": [ + { + "kind": "TypeNominal", + "name": "CVOpenGLESTextureCache", + "printedName": "CoreVideo.CVOpenGLESTextureCache", + "usr": "c:@T@CVOpenGLESTextureCacheRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createTextureCache:", + "mangledName": "$s12CanvasNative5UtilsC18createTextureCacheySo017CVOpenGLESTextureF3RefaSgAA24TNSWebGLRenderingContextCFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImage", + "printedName": "createImage(_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreVideo.CVBuffer?", + "children": [ + { + "kind": "TypeNominal", + "name": "CVBuffer", + "printedName": "CoreVideo.CVBuffer", + "usr": "c:@T@CVBufferRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CVOpenGLESTextureCache", + "printedName": "CoreVideo.CVOpenGLESTextureCache", + "usr": "c:@T@CVOpenGLESTextureCacheRef" + }, + { + "kind": "TypeNominal", + "name": "CVBuffer", + "printedName": "CoreVideo.CVBuffer", + "usr": "c:@T@CVBufferRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreFoundation.CFDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "CFDictionary", + "printedName": "CoreFoundation.CFDictionary", + "usr": "c:@T@CFDictionaryRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createImage::::::::::", + "mangledName": "$s12CanvasNative5UtilsC11createImageySo11CVBufferRefaSgSo022CVOpenGLESTextureCacheG0a_AFSo012CFDictionaryG0aSgs6UInt32Vs5Int32VA2p2NSitFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupRender", + "printedName": "setupRender()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)setupRender", + "mangledName": "$s12CanvasNative5UtilsC11setupRenderAA9TNSRenderCyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawFrame", + "printedName": "drawFrame(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVPlayer", + "printedName": "AVFoundation.AVPlayer", + "usr": "c:objc(cs)AVPlayer" + }, + { + "kind": "TypeNominal", + "name": "AVPlayerItemVideoOutput", + "printedName": "AVFoundation.AVPlayerItemVideoOutput", + "usr": "c:objc(cs)AVPlayerItemVideoOutput" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)drawFrame:::::::", + "mangledName": "$s12CanvasNative5UtilsC9drawFrameyySo8AVPlayerC_So0F15ItemVideoOutputCSo6CGSizeVAA9TNSRenderCs5Int32VANSbtFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeToFile", + "printedName": "writeToFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)writeToFile::error:", + "mangledName": "$s12CanvasNative5UtilsC11writeToFileyySo6NSDataC_SStKFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Utils", + "printedName": "CanvasNative.Utils", + "usr": "c:@M@CanvasNative@objc(cs)Utils" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)Utils(im)init", + "mangledName": "$s12CanvasNative5UtilsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)Utils", + "mangledName": "$s12CanvasNative5UtilsC", + "moduleName": "CanvasNative", + "objc_name": "Utils", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "TNSWebGLShaderPrecisionFormat", + "children": [ + { + "kind": "Var", + "name": "rangeMin", + "printedName": "rangeMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)rangeMin", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMins5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)rangeMin", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMins5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rangeMax", + "printedName": "rangeMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)rangeMax", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMaxs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)rangeMax", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMaxs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "precision", + "printedName": "precision", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)precision", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC9precisions5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)precision", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC9precisions5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rangeMin:rangeMax:precision:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)initWithRangeMin:rangeMax:precision:", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMin0G3Max9precisionACs5Int32V_A2Htcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)init", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLShaderPrecisionFormat", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_half_float_linear", + "printedName": "TNS_OES_texture_half_float_linear", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_half_float_linear", + "printedName": "CanvasNative.TNS_OES_texture_half_float_linear", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear(im)init", + "mangledName": "$s12CanvasNative33TNS_OES_texture_half_float_linearCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear", + "mangledName": "$s12CanvasNative33TNS_OES_texture_half_float_linearC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_half_float_linear", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_float_linear", + "printedName": "TNS_OES_texture_float_linear", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_float_linear", + "printedName": "CanvasNative.TNS_OES_texture_float_linear", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear(im)init", + "mangledName": "$s12CanvasNative28TNS_OES_texture_float_linearCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear", + "mangledName": "$s12CanvasNative28TNS_OES_texture_float_linearC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_float_linear", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_color_buffer_half_float", + "printedName": "TNS_EXT_color_buffer_half_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_color_buffer_half_float", + "printedName": "CanvasNative.TNS_EXT_color_buffer_half_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)init", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "RGBA16F_EXT", + "printedName": "RGBA16F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)RGBA16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC08RGBA16F_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)RGBA16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC08RGBA16F_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F_EXT", + "printedName": "RGB16F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)RGB16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC07RGB16F_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)RGB16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC07RGB16F_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC038FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC038FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED_EXT", + "printedName": "UNSIGNED_NORMALIZED_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC020UNSIGNED_NORMALIZED_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC020UNSIGNED_NORMALIZED_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_color_buffer_half_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasRenderingContext2D", + "printedName": "TNSCanvasRenderingContext2D", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext2D", + "printedName": "CanvasNative.TNSCanvasRenderingContext2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)init:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DCyAcA0C0Ccfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "font", + "printedName": "font", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)font", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)font", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFont:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "filter", + "printedName": "filter", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)filter", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)filter", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFilter:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "globalAlpha", + "printedName": "globalAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)globalAlpha", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)globalAlpha", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setGlobalAlpha:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "globalCompositeOperation", + "printedName": "globalCompositeOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)globalCompositeOperation", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)globalCompositeOperation", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setGlobalCompositeOperation:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSmoothingEnabled", + "printedName": "imageSmoothingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)imageSmoothingEnabled", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)imageSmoothingEnabled", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setImageSmoothingEnabled:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSmoothingQuality", + "printedName": "imageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)imageSmoothingQuality", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)imageSmoothingQuality", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setImageSmoothingQuality:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineCap", + "printedName": "lineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineCap", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineCap", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineCap:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineDashOffset", + "printedName": "lineDashOffset", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineDashOffset", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineDashOffset", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineDashOffset:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineWidth", + "printedName": "lineWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineWidth", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineWidth", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineWidth:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineJoin", + "printedName": "lineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineJoin", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineJoin", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineJoin:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "miterLimit", + "printedName": "miterLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)miterLimit", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)miterLimit", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setMiterLimit:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowBlur", + "printedName": "shadowBlur", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowBlur", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowBlur", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowBlur:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowColor", + "printedName": "shadowColor", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowColor", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowColor", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowColor:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowOffsetX", + "printedName": "shadowOffsetX", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowOffsetX", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowOffsetX", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowOffsetX:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowOffsetY", + "printedName": "shadowOffsetY", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowOffsetY", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowOffsetY", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowOffsetY:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textAlign", + "printedName": "textAlign", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)textAlign", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)textAlign", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTextAlign:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textBaseline", + "printedName": "textBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)textBaseline", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)textBaseline", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTextBaseline:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setFillStyleWithString", + "printedName": "setFillStyleWithString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFillStyleWithString:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC22setFillStyleWithStringyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fillStyle", + "printedName": "fillStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)fillStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFillStyle:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setStrokeStyleWithString", + "printedName": "setStrokeStyleWithString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setStrokeStyleWithString:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24setStrokeStyleWithStringyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "strokeStyle", + "printedName": "strokeStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)strokeStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setStrokeStyle:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fillRect", + "printedName": "fillRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeRect", + "printedName": "strokeRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fillText", + "printedName": "fillText(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillText:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillTextyySS_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fillText", + "printedName": "fillText(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillText::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillTextyySS_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeText", + "printedName": "strokeText(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeText:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeTextyySS_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeText", + "printedName": "strokeText(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeText::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeTextyySS_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rect", + "printedName": "rect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)rect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4rectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:topLeft:topRight:bottomRight:bottomLeft:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRectWithX:y:width:height:topLeft:topRight:bottomRight:bottomLeft:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRect1x1y5width6height7topLeft0J5Right06bottomL00mK0ySf_S7ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:radii:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRectWithX:y:width:height:radii:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRect1x1y5width6height5radiiySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRect:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRectyySf_S3fSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fill", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fillyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillWithValue:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fill5valueyyp_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fill::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fillyyAA9TNSPath2DC_AA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stroke", + "printedName": "stroke()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)stroke", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6strokeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stroke", + "printedName": "stroke(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPath2D?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)stroke:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6strokeyyAA9TNSPath2DCSgF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "beginPath", + "printedName": "beginPath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)beginPath", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9beginPathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveTo", + "printedName": "moveTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)moveTo::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6moveToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineTo", + "printedName": "lineTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineTo::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6lineToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closePath", + "printedName": "closePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)closePath", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9closePathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arc:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC3arcyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arc::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC3arcyySf_S4fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arcTo", + "printedName": "arcTo(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arcTo:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC5arcToyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bezierCurveTo", + "printedName": "bezierCurveTo(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)bezierCurveTo::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13bezierCurveToyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)ellipse:::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7ellipseyySf_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)ellipse::::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7ellipseyySf_S6fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyypF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyAA9TNSPath2DC_AA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearRect", + "printedName": "clearRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clearRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9clearRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLineDash", + "printedName": "setLineDash(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineDash:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11setLineDashyySaySfGF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCanvas", + "printedName": "getCanvas()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getCanvas", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC03getA0AA0C0CyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createLinearGradient", + "printedName": "createLinearGradient(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLinearGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSLinearGradient", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSLinearGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createLinearGradient::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC20createLinearGradientyAA13TNSColorStyleC09TNSLinearH0CSf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRadialGradient", + "printedName": "createRadialGradient(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRadialGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSRadialGradient", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSRadialGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createRadialGradient::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC20createRadialGradientyAA13TNSColorStyleC09TNSRadialH0CSf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createConicGradient", + "printedName": "createConicGradient(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSConicGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSConicGradient", + "usr": "s:12CanvasNative13TNSColorStyleC16TNSConicGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createConicGradient:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC19createConicGradientyAA13TNSColorStyleC08TNSConicH0CSf_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createPattern", + "printedName": "createPattern(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createPattern::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13createPatternyypSgyp_AA20TNSPatternRepetitionOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setTransform", + "printedName": "setTransform(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTransform::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12setTransformyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scale", + "printedName": "scale(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)scale::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC5scaleyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rotate", + "printedName": "rotate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)rotate:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6rotateyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "translate", + "printedName": "translate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)translate::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9translateyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quadraticCurveTo", + "printedName": "quadraticCurveTo(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)quadraticCurveTo::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC16quadraticCurveToyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S8ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImageData", + "printedName": "createImageData(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createImageData::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15createImageDatayAA08TNSImageH0Cs5Int32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImageData", + "printedName": "createImageData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createImageData:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15createImageDatayAA08TNSImageH0CAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageData", + "printedName": "getImageData(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getImageData::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12getImageDatayAA08TNSImageH0CSf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putImageData", + "printedName": "putImageData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)putImageData:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12putImageDatayyAA08TNSImageH0C_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putImageData", + "printedName": "putImageData(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)putImageData:::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12putImageDatayyAA08TNSImageH0C_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLineDash", + "printedName": "getLineDash()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getLineDash", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11getLineDashSaySfGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)save", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4saveyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restore", + "printedName": "restore()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)restore", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7restoreyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "measureText", + "printedName": "measureText(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextMetrics", + "printedName": "CanvasNative.TNSTextMetrics", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)measureText:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11measureTextyAA14TNSTextMetricsCSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetTransform", + "printedName": "resetTransform()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)resetTransform", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14resetTransformyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transform", + "printedName": "transform(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)transform::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9transformyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbSf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbSf_SfAA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbAA9TNSPath2DC_S2fAA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInStroke", + "printedName": "isPointInStroke(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInStroke::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15isPointInStrokeySbSf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInStroke", + "printedName": "isPointInStroke(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInStroke:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15isPointInStrokeySbAA9TNSPath2DC_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext2D", + "printedName": "CanvasNative.TNSCanvasRenderingContext2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)init", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvasRenderingContext2D", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "superclassNames": [ + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_lose_context", + "printedName": "TNS_WEBGL_lose_context", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_lose_context", + "printedName": "CanvasNative.TNS_WEBGL_lose_context", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)initWithCanvas:", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC6canvasAcA9TNSCanvasC_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loseContext", + "printedName": "loseContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)loseContext", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC0E7ContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restoreContext", + "printedName": "restoreContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)restoreContext", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC14restoreContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_lose_context", + "printedName": "CanvasNative.TNS_WEBGL_lose_context", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)init", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_lose_context", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_etc", + "printedName": "TNS_WEBGL_compressed_texture_etc", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_etc", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_etc", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)init", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_R11_EAC", + "printedName": "COMPRESSED_R11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC18COMPRESSED_R11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC18COMPRESSED_R11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SIGNED_R11_EAC", + "printedName": "COMPRESSED_SIGNED_R11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SIGNED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_SIGNED_R11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SIGNED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_SIGNED_R11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RG11_EAC", + "printedName": "COMPRESSED_RG11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC19COMPRESSED_RG11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC19COMPRESSED_RG11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SIGNED_RG11_EAC", + "printedName": "COMPRESSED_SIGNED_RG11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SIGNED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC26COMPRESSED_SIGNED_RG11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SIGNED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC26COMPRESSED_SIGNED_RG11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB8_ETC2", + "printedName": "COMPRESSED_RGB8_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC20COMPRESSED_RGB8_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC20COMPRESSED_RGB8_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA8_ETC2_EAC", + "printedName": "COMPRESSED_RGBA8_ETC2_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGBA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_RGBA8_ETC2_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGBA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_RGBA8_ETC2_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_ETC2", + "printedName": "COMPRESSED_SRGB8_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC21COMPRESSED_SRGB8_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC21COMPRESSED_SRGB8_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "printedName": "COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC32COMPRESSED_SRGB8_ALPHA8_ETC2_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC32COMPRESSED_SRGB8_ALPHA8_ETC2_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "printedName": "COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC40COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC40COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "printedName": "COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC41COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC41COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_etc", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_shader_texture_lod", + "printedName": "TNS_EXT_shader_texture_lod", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_shader_texture_lod", + "printedName": "CanvasNative.TNS_EXT_shader_texture_lod", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod(im)init", + "mangledName": "$s12CanvasNative26TNS_EXT_shader_texture_lodCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod", + "mangledName": "$s12CanvasNative26TNS_EXT_shader_texture_lodC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_shader_texture_lod", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageAssetFormat", + "printedName": "TNSImageAssetFormat", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueACSi_tcfc", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueACSi_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueSivp", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueSivg", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "JPG", + "printedName": "JPG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatJPG", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3JPGyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "PNG", + "printedName": "PNG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatPNG", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3PNGyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "ICO", + "printedName": "ICO", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatICO", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3ICOyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "BMP", + "printedName": "BMP", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatBMP", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3BMPyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "TIFF", + "printedName": "TIFF", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatTIFF", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO4TIFFyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageAssetFormat", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextBaseLine", + "printedName": "TNSTextBaseLine", + "children": [ + { + "kind": "Var", + "name": "Top", + "printedName": "Top", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineTop", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO3TopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Hanging", + "printedName": "Hanging", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineHanging", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO7HangingyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Middle", + "printedName": "Middle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineMiddle", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6MiddleyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Alphabetic", + "printedName": "Alphabetic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineAlphabetic", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO10AlphabeticyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "Ideographic", + "printedName": "Ideographic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineIdeographic", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO11IdeographicyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "Bottom", + "printedName": "Bottom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineBottom", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6BottomyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextBaseLine?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextBaseLine?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative15TNSTextBaseLineO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextBaseLine", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "CanvasGLKView", + "printedName": "CanvasGLKView", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)init", + "mangledName": "$s12CanvasNative0A7GLKViewCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)initWithFrame:", + "mangledName": "$s12CanvasNative0A7GLKViewC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsDisplay", + "printedName": "setNeedsDisplay()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)setNeedsDisplay", + "mangledName": "$s12CanvasNative0A7GLKViewC15setNeedsDisplayyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "setNeedsDisplay", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNeedsDisplay", + "printedName": "setNeedsDisplay(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)setNeedsDisplayInRect:", + "mangledName": "$s12CanvasNative0A7GLKViewC15setNeedsDisplayyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "setNeedsDisplayInRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:context:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "EAGLContext", + "printedName": "OpenGLES.EAGLContext", + "usr": "c:objc(cs)EAGLContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)initWithFrame:context:", + "mangledName": "$s12CanvasNative0A7GLKViewC5frame7contextACSo6CGRectV_So11EAGLContextCtcfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:context:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView", + "mangledName": "$s12CanvasNative0A7GLKViewC", + "moduleName": "CanvasNative", + "objc_name": "CanvasGLKView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)GLKView", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "GLKit.GLKView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CanvasCPUView", + "printedName": "CanvasCPUView", + "children": [ + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative0A7CPUViewC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasCPUView", + "printedName": "CanvasNative.CanvasCPUView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)init", + "mangledName": "$s12CanvasNative0A7CPUViewCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasCPUView", + "printedName": "CanvasNative.CanvasCPUView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)initWithFrame:", + "mangledName": "$s12CanvasNative0A7CPUViewC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)drawRect:", + "mangledName": "$s12CanvasNative0A7CPUViewC4drawyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView", + "mangledName": "$s12CanvasNative0A7CPUViewC", + "moduleName": "CanvasNative", + "objc_name": "CanvasCPUView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RenderListener", + "printedName": "RenderListener", + "children": [ + { + "kind": "Function", + "name": "didDraw", + "printedName": "didDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative14RenderListenerP7didDrawyyF", + "mangledName": "$s12CanvasNative14RenderListenerP7didDrawyyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.RenderListener>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12CanvasNative14RenderListenerP", + "mangledName": "$s12CanvasNative14RenderListenerP", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextType", + "printedName": "ContextType", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO4noneyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO4noneyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Var", + "name": "webGL", + "printedName": "webGL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO5webGLyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO5webGLyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Var", + "name": "twoD", + "printedName": "twoD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO4twoDyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO4twoDyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.ContextType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11ContextTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueACSgSi_tcfc", + "moduleName": "CanvasNative", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11ContextTypeO8rawValueSivp", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueSivp", + "moduleName": "CanvasNative", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11ContextTypeO8rawValueSivg", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueSivg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12CanvasNative11ContextTypeO", + "mangledName": "$s12CanvasNative11ContextTypeO", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GLRenderer", + "printedName": "GLRenderer", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvp", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvg", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvs", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvM", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateDirection", + "printedName": "updateDirection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC15updateDirectionyySSF", + "mangledName": "$s12CanvasNative10GLRendererC15updateDirectionyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "invalidateState", + "printedName": "invalidateState", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivp", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivg", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivs", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivs", + "moduleName": "CanvasNative", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivM", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvp", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvg", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvs", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64VvM", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64VvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC4viewSo6UIViewCvp", + "mangledName": "$s12CanvasNative10GLRendererC4viewSo6UIViewCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC4viewSo6UIViewCvg", + "mangledName": "$s12CanvasNative10GLRendererC4viewSo6UIViewCvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "didMoveOffMain", + "printedName": "didMoveOffMain", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvp", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvg", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvs", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvM", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferWidth", + "printedName": "drawingBufferWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC18drawingBufferWidthSivp", + "mangledName": "$s12CanvasNative10GLRendererC18drawingBufferWidthSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC18drawingBufferWidthSivg", + "mangledName": "$s12CanvasNative10GLRendererC18drawingBufferWidthSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferHeight", + "printedName": "drawingBufferHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC19drawingBufferHeightSivp", + "mangledName": "$s12CanvasNative10GLRendererC19drawingBufferHeightSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC19drawingBufferHeightSivg", + "mangledName": "$s12CanvasNative10GLRendererC19drawingBufferHeightSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC5widthSfvp", + "mangledName": "$s12CanvasNative10GLRendererC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC5widthSfvg", + "mangledName": "$s12CanvasNative10GLRendererC5widthSfvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC6heightSfvp", + "mangledName": "$s12CanvasNative10GLRendererC6heightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC6heightSfvg", + "mangledName": "$s12CanvasNative10GLRendererC6heightSfvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setupContext", + "printedName": "setupContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC12setupContextyyF", + "mangledName": "$s12CanvasNative10GLRendererC12setupContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(useCpu:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GLRenderer", + "printedName": "CanvasNative.GLRenderer", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10GLRendererC6useCpuACSb_tcfc", + "mangledName": "$s12CanvasNative10GLRendererC6useCpuACSb_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setRenderListener", + "printedName": "setRenderListener(listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.RenderListener?", + "children": [ + { + "kind": "TypeNominal", + "name": "RenderListener", + "printedName": "CanvasNative.RenderListener", + "usr": "s:12CanvasNative14RenderListenerP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC17setRenderListener8listeneryAA0eF0_pSg_tF", + "mangledName": "$s12CanvasNative10GLRendererC17setRenderListener8listeneryAA0eF0_pSg_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isOpaque", + "printedName": "isOpaque", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvp", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvg", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvs", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvs", + "moduleName": "CanvasNative", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvM", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "ensureIsContextIsCurrent", + "printedName": "ensureIsContextIsCurrent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC015ensureIsContextE7CurrentSbyF", + "mangledName": "$s12CanvasNative10GLRendererC015ensureIsContextE7CurrentSbyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resize", + "printedName": "resize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6resizeyyF", + "mangledName": "$s12CanvasNative10GLRendererC6resizeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setup", + "printedName": "setup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5setupyyF", + "mangledName": "$s12CanvasNative10GLRendererC5setupyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "contextType", + "printedName": "contextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovp", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovg", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovs", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0OvM", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "render", + "printedName": "render()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6renderyyF", + "mangledName": "$s12CanvasNative10GLRendererC6renderyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5flushyyF", + "mangledName": "$s12CanvasNative10GLRendererC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ensureIsReady", + "printedName": "ensureIsReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC13ensureIsReadyyyF", + "mangledName": "$s12CanvasNative10GLRendererC13ensureIsReadyyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5pauseyyF", + "mangledName": "$s12CanvasNative10GLRendererC5pauseyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6resumeyyF", + "mangledName": "$s12CanvasNative10GLRendererC6resumeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "glkView", + "printedName": "glkView(_:drawIn:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GLKView", + "printedName": "GLKit.GLKView", + "usr": "c:objc(cs)GLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer(im)glkView:drawInRect:", + "mangledName": "$s12CanvasNative10GLRendererC7glkView_6drawInySo7GLKViewC_So6CGRectVtF", + "moduleName": "CanvasNative", + "objc_name": "glkView:drawInRect:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GLRenderer", + "printedName": "CanvasNative.GLRenderer", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer(im)init", + "mangledName": "$s12CanvasNative10GLRendererCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer", + "mangledName": "$s12CanvasNative10GLRendererC", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSIndexedParameter", + "printedName": "TNSIndexedParameter", + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSIndexedParameter", + "mangledName": "$s12CanvasNative19TNSIndexedParameterC", + "moduleName": "CanvasNative", + "objc_name": "TNSIndexedParameter", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_color_buffer_float", + "printedName": "TNS_EXT_color_buffer_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_color_buffer_float", + "printedName": "CanvasNative.TNS_EXT_color_buffer_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)init", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "R16F", + "printedName": "R16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16F", + "printedName": "RG16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RG16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RG16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F", + "printedName": "RGB16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RGB16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC6RGB16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RGB16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC6RGB16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32F", + "printedName": "R32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32F", + "printedName": "RG32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RG32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RG32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32F", + "printedName": "RGBA32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RGBA32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC7RGBA32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RGBA32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC7RGBA32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R11F_G11F_B10F", + "printedName": "R11F_G11F_B10F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC14R11F_G11F_B10Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC14R11F_G11F_B10Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_color_buffer_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCompositeOperationType", + "printedName": "TNSCompositeOperationType", + "children": [ + { + "kind": "Var", + "name": "SourceOver", + "printedName": "SourceOver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceOver", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SourceOveryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "SourceIn", + "printedName": "SourceIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceIn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8SourceInyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "SourceOut", + "printedName": "SourceOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceOut", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9SourceOutyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "SourceAtop", + "printedName": "SourceAtop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceAtop", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SourceAtopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "DestinationOver", + "printedName": "DestinationOver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationOver", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO15DestinationOveryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "DestinationIn", + "printedName": "DestinationIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationIn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO13DestinationInyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "DestinationOut", + "printedName": "DestinationOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationOut", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO14DestinationOutyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "DestinationAtop", + "printedName": "DestinationAtop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationAtop", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO15DestinationAtopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "Lighter", + "printedName": "Lighter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLighter", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7LighteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "Copy", + "printedName": "Copy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeCopy", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO4CopyyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "Xor", + "printedName": "Xor", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeXor", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO3XoryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "Multiply", + "printedName": "Multiply", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeMultiply", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8MultiplyyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "Screen", + "printedName": "Screen", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeScreen", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6ScreenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "Overlay", + "printedName": "Overlay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeOverlay", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7OverlayyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "Darken", + "printedName": "Darken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDarken", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6DarkenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "Lighten", + "printedName": "Lighten", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLighten", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7LightenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "ColorDodge", + "printedName": "ColorDodge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColorDodge", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10ColorDodgeyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "ColorBurn", + "printedName": "ColorBurn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColorBurn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9ColorBurnyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "HardLight", + "printedName": "HardLight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeHardLight", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9HardLightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "SoftLight", + "printedName": "SoftLight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSoftLight", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9SoftLightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "Difference", + "printedName": "Difference", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDifference", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10DifferenceyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 20 + }, + { + "kind": "Var", + "name": "Exclusion", + "printedName": "Exclusion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeExclusion", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9ExclusionyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 21 + }, + { + "kind": "Var", + "name": "Hue", + "printedName": "Hue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeHue", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO3HueyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 22 + }, + { + "kind": "Var", + "name": "Saturation", + "printedName": "Saturation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSaturation", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SaturationyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 23 + }, + { + "kind": "Var", + "name": "Color", + "printedName": "Color", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColor", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO5ColoryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 24 + }, + { + "kind": "Var", + "name": "Luminosity", + "printedName": "Luminosity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLuminosity", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10LuminosityyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 25 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCompositeOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCompositeOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO", + "moduleName": "CanvasNative", + "objc_name": "TNSCompositeOperationType", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSImageAsset", + "printedName": "TNSImageAsset", + "children": [ + { + "kind": "Var", + "name": "_queue", + "printedName": "_queue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cpy)_queue", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvpZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cm)_queue", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvgZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cm)set_queue:", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvsZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvMZ", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvMZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)init", + "mangledName": "$s12CanvasNative13TNSImageAssetCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loadImageFromPath", + "printedName": "loadImageFromPath(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromPathWithPath:", + "mangledName": "$s12CanvasNative13TNSImageAssetC17loadImageFromPath4pathSbSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromUrl", + "printedName": "loadImageFromUrl(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromUrlWithUrl:", + "mangledName": "$s12CanvasNative13TNSImageAssetC16loadImageFromUrl3urlSbSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromUrlAsync", + "printedName": "loadImageFromUrlAsync(url:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromUrlAsyncWithUrl:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC21loadImageFromUrlAsync3url8callbackySS_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromPathAsync", + "printedName": "loadImageFromPathAsync(path:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromPathAsyncWithPath:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC22loadImageFromPathAsync4path8callbackySS_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBuffer", + "printedName": "loadImageFromBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBuffer:", + "mangledName": "$s12CanvasNative13TNSImageAssetC19loadImageFromBufferySbSo6NSDataCF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBufferAsync", + "printedName": "loadImageFromBufferAsync(_:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBufferAsync:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC24loadImageFromBufferAsync_8callbackySo6NSDataC_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBytes", + "printedName": "loadImageFromBytes(array:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBytesWithArray:", + "mangledName": "$s12CanvasNative13TNSImageAssetC18loadImageFromBytes5arraySbSays5UInt8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBytesAsync", + "printedName": "loadImageFromBytesAsync(array:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBytesAsyncWithArray:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC23loadImageFromBytesAsync5array8callbackySays5UInt8VG_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromImage", + "printedName": "loadImageFromImage(image:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromImageWithImage:", + "mangledName": "$s12CanvasNative13TNSImageAssetC013loadImageFromF05imageSbSo7UIImageC_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromImageAsync", + "printedName": "loadImageFromImageAsync(image:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromImageAsyncWithImage:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC013loadImageFromF5Async5image8callbackySo7UIImageC_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRawBytes", + "printedName": "getRawBytes()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)getRawBytes", + "mangledName": "$s12CanvasNative13TNSImageAssetC11getRawBytesSpys5UInt8VGSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)width", + "mangledName": "$s12CanvasNative13TNSImageAssetC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)width", + "mangledName": "$s12CanvasNative13TNSImageAssetC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)height", + "mangledName": "$s12CanvasNative13TNSImageAssetC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)height", + "mangledName": "$s12CanvasNative13TNSImageAssetC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "flipX", + "printedName": "flipX()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)flipX", + "mangledName": "$s12CanvasNative13TNSImageAssetC5flipXyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flipY", + "printedName": "flipY()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)flipY", + "mangledName": "$s12CanvasNative13TNSImageAssetC5flipYyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scale", + "printedName": "scale(x:y:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)scaleWithX:y:", + "mangledName": "$s12CanvasNative13TNSImageAssetC5scale1x1yys6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(path:format:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)saveWithPath:format:", + "mangledName": "$s12CanvasNative13TNSImageAssetC4save4path6formatSbSS_AA0cD6FormatOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveAsync", + "printedName": "saveAsync(path:format:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)saveAsyncWithPath:format:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC9saveAsync4path6format8callbackySS_AA0cD6FormatOySbctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)error", + "mangledName": "$s12CanvasNative13TNSImageAssetC5errorSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)error", + "mangledName": "$s12CanvasNative13TNSImageAssetC5errorSSSgvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset", + "mangledName": "$s12CanvasNative13TNSImageAssetC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageAsset", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "Var", + "name": "Default", + "printedName": "Default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapColorSpaceConversion.Type) -> CanvasNative.TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion@TNSImageBitmapColorSpaceConversionDefault", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO7DefaultyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "None", + "printedName": "None", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapColorSpaceConversion.Type) -> CanvasNative.TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion@TNSImageBitmapColorSpaceConversionNone", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO4NoneyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapColorSpaceConversion", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapResizeQuality", + "printedName": "TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "Var", + "name": "Low", + "printedName": "Low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityLow", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO3LowyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Medium", + "printedName": "Medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityMedium", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO6MediumyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "High", + "printedName": "High", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityHigh", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO4HighyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Pixelated", + "printedName": "Pixelated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityPixelated", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO9PixelatedyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapResizeQuality", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasRenderingContext", + "printedName": "TNSCanvasRenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext(im)init", + "mangledName": "$s12CanvasNative25TNSCanvasRenderingContextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "mangledName": "$s12CanvasNative25TNSCanvasRenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvasRenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_draw_buffers", + "printedName": "TNS_WEBGL_draw_buffers", + "children": [ + { + "kind": "Var", + "name": "COLOR_ATTACHMENT0_WEBGL", + "printedName": "COLOR_ATTACHMENT0_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT0_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT0_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT1_WEBGL", + "printedName": "COLOR_ATTACHMENT1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT2_WEBGL", + "printedName": "COLOR_ATTACHMENT2_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT2_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT2_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT3_WEBGL", + "printedName": "COLOR_ATTACHMENT3_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT3_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT3_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT4_WEBGL", + "printedName": "COLOR_ATTACHMENT4_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT4_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT4_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT5_WEBGL", + "printedName": "COLOR_ATTACHMENT5_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT5_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT5_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT6_WEBGL", + "printedName": "COLOR_ATTACHMENT6_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT6_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT6_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT7_WEBGL", + "printedName": "COLOR_ATTACHMENT7_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT7_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT7_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT8_WEBGL", + "printedName": "COLOR_ATTACHMENT8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT9_WEBGL", + "printedName": "COLOR_ATTACHMENT9_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT9_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT9_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT10_WEBGL", + "printedName": "COLOR_ATTACHMENT10_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT10_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT10_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT11_WEBGL", + "printedName": "COLOR_ATTACHMENT11_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT11_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT11_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT12_WEBGL", + "printedName": "COLOR_ATTACHMENT12_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT12_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT12_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT13_WEBGL", + "printedName": "COLOR_ATTACHMENT13_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT13_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT13_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT14_WEBGL", + "printedName": "COLOR_ATTACHMENT14_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT14_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT14_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT15_WEBGL", + "printedName": "COLOR_ATTACHMENT15_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT15_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT15_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER0_WEBGL", + "printedName": "DRAW_BUFFER0_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER0_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER0_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER1_WEBGL", + "printedName": "DRAW_BUFFER1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER2_WEBGL", + "printedName": "DRAW_BUFFER2_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER2_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER2_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER3_WEBGL", + "printedName": "DRAW_BUFFER3_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER3_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER3_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER4_WEBGL", + "printedName": "DRAW_BUFFER4_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER4_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER4_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER5_WEBGL", + "printedName": "DRAW_BUFFER5_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER5_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER5_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER6_WEBGL", + "printedName": "DRAW_BUFFER6_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER6_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER6_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER7_WEBGL", + "printedName": "DRAW_BUFFER7_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER7_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER7_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER8_WEBGL", + "printedName": "DRAW_BUFFER8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER9_WEBGL", + "printedName": "DRAW_BUFFER9_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER9_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER9_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER10_WEBGL", + "printedName": "DRAW_BUFFER10_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER10_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER10_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER11_WEBGL", + "printedName": "DRAW_BUFFER11_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER11_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER11_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER12_WEBGL", + "printedName": "DRAW_BUFFER12_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER12_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER12_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER13_WEBGL", + "printedName": "DRAW_BUFFER13_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER13_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER13_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER14_WEBGL", + "printedName": "DRAW_BUFFER14_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER14_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER14_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER15_WEBGL", + "printedName": "DRAW_BUFFER15_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER15_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER15_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COLOR_ATTACHMENTS_WEBGL", + "printedName": "MAX_COLOR_ATTACHMENTS_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)MAX_COLOR_ATTACHMENTS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC022MAX_COLOR_ATTACHMENTS_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)MAX_COLOR_ATTACHMENTS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC022MAX_COLOR_ATTACHMENTS_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_DRAW_BUFFERS_WEBGL", + "printedName": "MAX_DRAW_BUFFERS_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)MAX_DRAW_BUFFERS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC017MAX_DRAW_BUFFERS_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)MAX_DRAW_BUFFERS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC017MAX_DRAW_BUFFERS_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "drawBuffersWEBGL", + "printedName": "drawBuffersWEBGL(buffers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)drawBuffersWEBGLWithBuffers:", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC0e7BuffersD00F0ySays5Int32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_draw_buffers", + "printedName": "CanvasNative.TNS_WEBGL_draw_buffers", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)init", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_draw_buffers", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_depth_texture", + "printedName": "TNS_WEBGL_depth_texture", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_depth_texture", + "printedName": "CanvasNative.TNS_WEBGL_depth_texture", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(im)init", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_24_8_WEBGL", + "printedName": "UNSIGNED_INT_24_8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(py)UNSIGNED_INT_24_8_WEBGL", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC018UNSIGNED_INT_24_8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(im)UNSIGNED_INT_24_8_WEBGL", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC018UNSIGNED_INT_24_8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_depth_texture", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "CanvasColorStyleType", + "printedName": "CanvasColorStyleType", + "children": [ + { + "kind": "Var", + "name": "Color", + "printedName": "Color", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypeColor", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO0C0yA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Gradient", + "printedName": "Gradient", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypeGradient", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8GradientyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Pattern", + "printedName": "Pattern", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypePattern", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO7PatternyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueSSvp", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueSSvg", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueSSvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.CanvasColorStyleType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO", + "moduleName": "CanvasNative", + "objc_name": "CanvasColorStyleType", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "children": [ + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle(im)getStyleType", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP03getE4TypeAA0adeG0OyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.ICanvasColorStyle>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPatternRepetition", + "printedName": "TNSPatternRepetition", + "children": [ + { + "kind": "Var", + "name": "Repeat", + "printedName": "Repeat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeat", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO6RepeatyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "RepeatX", + "printedName": "RepeatX", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeatX", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO7RepeatXyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "RepeatY", + "printedName": "RepeatY", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeatY", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO7RepeatYyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "NoRepeat", + "printedName": "NoRepeat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionNoRepeat", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8NoRepeatyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPatternRepetition?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPatternRepetition?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValueACSgSS_tcfc", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValueACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSColorStyle", + "printedName": "TNSColorStyle", + "children": [ + { + "kind": "TypeDecl", + "name": "TNSColor", + "printedName": "TNSColor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColor", + "printedName": "CanvasNative.TNSColorStyle.TNSColor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0CyAESScfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0CyAESScfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "color", + "printedName": "color", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C5colorSSvp", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C5colorSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C5colorSSvg", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C5colorSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C03getD4TypeAA0a5ColordF0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C03getD4TypeAA0a5ColordF0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColor", + "printedName": "CanvasNative.TNSColorStyle.TNSColor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0CAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0CAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C", + "moduleName": "CanvasNative", + "objc_name": "TNSColor", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSGradient", + "printedName": "TNSGradient", + "children": [ + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC03getD4TypeAA0a5ColordG0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC03getD4TypeAA0a5ColordG0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addColorStop", + "printedName": "addColorStop(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC12addColorStopyySf_SStF", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC12addColorStopyySf_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSGradient", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientCAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientCAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLinearGradient", + "printedName": "TNSLinearGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSLinearGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC17TNSLinearGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSLinearGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSRadialGradient", + "printedName": "TNSRadialGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSRadialGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC17TNSRadialGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSRadialGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSConicGradient", + "printedName": "TNSConicGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC16TNSConicGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC16TNSConicGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSConicGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPattern", + "printedName": "TNSPattern", + "children": [ + { + "kind": "Function", + "name": "setTransform", + "printedName": "setTransform(matrix:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC12setTransform6matrixyAA12TNSDOMMatrixC_tF", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC12setTransform6matrixyAA12TNSDOMMatrixC_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC03getD4TypeAA0a5ColordG0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC03getD4TypeAA0a5ColordG0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPattern", + "printedName": "CanvasNative.TNSColorStyle.TNSPattern", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternCAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternCAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC", + "moduleName": "CanvasNative", + "objc_name": "TNSPattern", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColorStyle", + "printedName": "CanvasNative.TNSColorStyle", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle(im)init", + "mangledName": "$s12CanvasNative13TNSColorStyleCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle", + "mangledName": "$s12CanvasNative13TNSColorStyleC", + "moduleName": "CanvasNative", + "objc_name": "TNSColorStyle", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextMetrics", + "printedName": "TNSTextMetrics", + "children": [ + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)width", + "mangledName": "$s12CanvasNative14TNSTextMetricsC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)width", + "mangledName": "$s12CanvasNative14TNSTextMetricsC5widthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxLeft", + "printedName": "actualBoundingBoxLeft", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxLeft", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21actualBoundingBoxLeftSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxLeft", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21actualBoundingBoxLeftSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxRight", + "printedName": "actualBoundingBoxRight", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxRight", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22actualBoundingBoxRightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxRight", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22actualBoundingBoxRightSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxAscent", + "printedName": "actualBoundingBoxAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC23actualBoundingBoxAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC23actualBoundingBoxAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxDescent", + "printedName": "actualBoundingBoxDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC24actualBoundingBoxDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC24actualBoundingBoxDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fontBoundingBoxAscent", + "printedName": "fontBoundingBoxAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)fontBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21fontBoundingBoxAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)fontBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21fontBoundingBoxAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fontBoundingBoxDescent", + "printedName": "fontBoundingBoxDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)fontBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22fontBoundingBoxDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)fontBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22fontBoundingBoxDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emHeightAscent", + "printedName": "emHeightAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)emHeightAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC14emHeightAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)emHeightAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC14emHeightAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emHeightDescent", + "printedName": "emHeightDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)emHeightDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15emHeightDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)emHeightDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15emHeightDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hangingBaseline", + "printedName": "hangingBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)hangingBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15hangingBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)hangingBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15hangingBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alphabeticBaseline", + "printedName": "alphabeticBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)alphabeticBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC18alphabeticBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)alphabeticBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC18alphabeticBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ideographicBaseline", + "printedName": "ideographicBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)ideographicBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC19ideographicBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)ideographicBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC19ideographicBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextMetrics", + "printedName": "CanvasNative.TNSTextMetrics", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)init", + "mangledName": "$s12CanvasNative14TNSTextMetricsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics", + "mangledName": "$s12CanvasNative14TNSTextMetricsC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextMetrics", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "Function", + "name": "resize", + "printedName": "resize(_:fillWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Iterator.Element" + } + ], + "declKind": "Func", + "usr": "s:Sm12CanvasNativeE6resize_8fillWithySi_7ElementQztF", + "mangledName": "$sSm12CanvasNativeE6resize_8fillWithySi_7ElementQztF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeReplaceableCollection>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:Sm", + "mangledName": "$sSm", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Collection, τ_0_0.SubSequence : Swift.RangeReplaceableCollection>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "usr": "s:ST", + "mangledName": "$sST" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 215, + "length": 4, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 229, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 245, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSAnimationFrame.swift", + "kind": "Dictionary", + "offset": 304, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSAnimationFrame.swift", + "kind": "FloatLiteral", + "offset": 403, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSFillRule.swift", + "kind": "IntegerLiteral", + "offset": 205, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageData.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 12, + "value": "\"CanvasNative.TNSImageData\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextDirection.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNS_ANGLE_instanced_arrays.swift", + "kind": "StringLiteral", + "offset": 299, + "length": 26, + "value": "\"CanvasNative.TNS_ANGLE_instanced_arrays\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 308, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 419, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1191, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1305, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "StringLiteral", + "offset": 1345, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1392, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1437, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 1621, + "length": 9, + "value": "[0, 0, 0, 0]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1657, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 1723, + "length": 24, + "value": "[true, true, true, true]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1779, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1870, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1910, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1948, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2038, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2181, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2231, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 4155, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7112, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7731, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 8376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 9867, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 10603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "StringLiteral", + "offset": 219, + "length": 9, + "value": "\"CanvasNative.TNSCanvas\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 328, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 354, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 403, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 492, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 599, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextEncoder.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapPremultiplyAlpha.swift", + "kind": "IntegerLiteral", + "offset": 262, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapPremultiplyAlpha.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineJoin.swift", + "kind": "IntegerLiteral", + "offset": 200, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineJoin.swift", + "kind": "IntegerLiteral", + "offset": 215, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGL2RenderingContext.swift", + "kind": "Array", + "offset": 20793, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGL2RenderingContext.swift", + "kind": "Array", + "offset": 20845, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineCap.swift", + "kind": "IntegerLiteral", + "offset": 196, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineCap.swift", + "kind": "IntegerLiteral", + "offset": 211, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSPath2D.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextDecoder.swift", + "kind": "IntegerLiteral", + "offset": 223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLActiveInfo.swift", + "kind": "StringLiteral", + "offset": 166, + "length": 18, + "value": "\"CanvasNative.TNSWebGLActiveInfo\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 366, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 427, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "StringLiteral", + "offset": 585, + "length": 274, + "value": "\"precision highp float;\nattribute vec4 aPosition;\nuniform mat4 uTextureMatrix;\nvarying vec2 TexCoord;\nvoid main(){\nvec2 clipSpace = (1.0 - 2.0 * aPosition.xy);\nTexCoord = aPosition.xy;\ngl_Position = vec4(clipSpace, 0.0, 1.0);\n}\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "StringLiteral", + "offset": 906, + "length": 170, + "value": "\"precision highp float;\nvarying vec2 TexCoord;\nuniform sampler2D uSampler;\nvoid main(){\ngl_FragColor = texture2D(uSampler, TexCoord);\n}\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "IntegerLiteral", + "offset": 278, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 332, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 360, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 453, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 543, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 617, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 674, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "StringLiteral", + "offset": 721, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 825, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 939, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 983, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 1033, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2242, + "length": 6, + "value": "0x1401" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2278, + "length": 6, + "value": "0x1406" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 6, + "value": "0x140B" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2370, + "length": 6, + "value": "0x8363" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2423, + "length": 6, + "value": "0x8033" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2476, + "length": 6, + "value": "0x8034" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2516, + "length": 6, + "value": "0x1909" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2552, + "length": 6, + "value": "0x1906" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2598, + "length": 6, + "value": "0x190A" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2632, + "length": 6, + "value": "0x1907" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2667, + "length": 6, + "value": "0x1908" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 15164, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "StringLiteral", + "offset": 204, + "length": 24, + "value": "\"CanvasNative.TNSWebGLRenderingContext\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmap.swift", + "kind": "StringLiteral", + "offset": 233, + "length": 22, + "value": "\"Failed to load image\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmap.swift", + "kind": "StringLiteral", + "offset": 174, + "length": 14, + "value": "\"CanvasNative.TNSImageBitmap\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageSmoothingQuality.swift", + "kind": "IntegerLiteral", + "offset": 240, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageSmoothingQuality.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLShaderPrecisionFormat.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 29, + "value": "\"CanvasNative.TNSWebGLShaderPrecisionFormat\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCanvasRenderingContext2D.swift", + "kind": "BooleanLiteral", + "offset": 2373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCanvasRenderingContext2D.swift", + "kind": "StringLiteral", + "offset": 285, + "length": 27, + "value": "\"CanvasNative.TNSCanvasRenderingContext2D\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNS_WEBGL_lose_context.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 22, + "value": "\"CanvasNative.TNS_WEBGL_lose_context\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 810, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 823, + "length": 3, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 836, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 849, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 10, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 11, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 6, + "value": "5" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 180, + "length": 13, + "value": "\"CanvasNative.CanvasGLKView\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 3787, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 4060, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 4545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 4664, + "length": 5, + "value": "\"ltr\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 7109, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 2970, + "length": 10, + "value": "\"CanvasNative.GLRenderer\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSIndexedParameter.swift", + "kind": "BooleanLiteral", + "offset": 226, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 287, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 9, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 324, + "length": 10, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 344, + "length": 15, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 369, + "length": 13, + "value": "5" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 392, + "length": 14, + "value": "6" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 416, + "length": 15, + "value": "7" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 441, + "length": 7, + "value": "8" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 3, + "value": "10" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 485, + "length": 8, + "value": "11" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "12" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 519, + "length": 7, + "value": "13" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "14" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 552, + "length": 7, + "value": "15" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 569, + "length": 10, + "value": "16" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 589, + "length": 9, + "value": "17" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 9, + "value": "18" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 627, + "length": 9, + "value": "19" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 10, + "value": "20" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 666, + "length": 9, + "value": "21" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 685, + "length": 3, + "value": "22" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 10, + "value": "23" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 718, + "length": 5, + "value": "24" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 10, + "value": "25" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAsset.swift", + "kind": "IntegerLiteral", + "offset": 217, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapColorSpaceConversion.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 4, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 249, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 273, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 291, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1047, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1081, + "length": 8, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 2154, + "length": 8, + "value": "\"CanvasNative.TNSColor\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 2616, + "length": 11, + "value": "\"CanvasNative.TNSGradient\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 3775, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 10, + "value": "\"CanvasNative.TNSPattern\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextMetrics.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextMetrics.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 14, + "value": "\"CanvasNative.TNSTextMetrics\"" + } + ] +} \ No newline at end of file diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftinterface b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface similarity index 97% rename from packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftinterface rename to packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index 20d482b3c..39b2bb1af 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftinterface +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) // swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CanvasNative +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation @_exported import CanvasNative import CoreVideo @@ -11,6 +12,7 @@ import OpenGLES import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSDOMMatrix) public class TNSDOMMatrix : ObjectiveC.NSObject { @objc override dynamic public init() @objc public var a: Swift.Float { @@ -235,6 +237,10 @@ import _Concurrency @objc get @objc set } + @objc @_Concurrency.MainActor(unsafe) public var scaling: Swift.Bool { + @objc get + @objc set + } @objc @_Concurrency.MainActor(unsafe) public static func createSVGMatrix() -> CanvasNative.TNSDOMMatrix @objc @_Concurrency.MainActor(unsafe) public var handleInvalidationManually: Swift.Bool { @objc get @@ -248,6 +254,8 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ format: Swift.Float, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func snapshot() -> [Swift.UInt8] + @objc @_Concurrency.MainActor(unsafe) public func getImage(_ flip: Swift.Bool) -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func snapshotEncoded() -> [Swift.UInt8] @objc @_Concurrency.MainActor(unsafe) public var isGL: Swift.Bool { @objc get } @@ -265,11 +273,12 @@ import _Concurrency } @objc @_Concurrency.MainActor(unsafe) public func doDraw() @objc @_Concurrency.MainActor(unsafe) public func flush() - @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, useCpu: Swift.Bool) + @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, useCpu: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) public func setListener(_ listener: CanvasNative.TNSCanvasListener?) @objc @_Concurrency.MainActor(unsafe) public var fps: Swift.Float { @objc get } + @objc @_Concurrency.MainActor(unsafe) public static func layoutView(_ view: UIKit.UIView, _ width: CoreFoundation.CGFloat, _ height: CoreFoundation.CGFloat) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @objc deinit @objc @_Concurrency.MainActor(unsafe) public func resume() @@ -279,7 +288,15 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func handleMoveOffMain() @objc @_Concurrency.MainActor(unsafe) public func handleMoveToMain() @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? - @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Foundation.NSDictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, attributes: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Swift.Dictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, contextAttributes: CanvasNative.TNSContextAttributes) -> CanvasNative.TNSCanvasRenderingContext? +} +@_inheritsConvenienceInitializers @objc(TNSContextAttributes) @objcMembers public class TNSContextAttributes : ObjectiveC.NSObject, Swift.Codable { + @objc override dynamic public init() + @objc deinit + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } @_inheritsConvenienceInitializers @objcMembers @objc(TNSTextEncoder) public class TNSTextEncoder : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1363,6 +1380,9 @@ extension Swift.RangeReplaceableCollection { @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float) @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float, _ anticlockwise: Swift.Bool) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ topLeft: Swift.Float, _ topRight: Swift.Float, _ bottomRight: Swift.Float, _ bottomLeft: Swift.Float) + @objc public func roundRectWithRadii(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: [Swift.Float]) } @_inheritsConvenienceInitializers @objcMembers @objc(TNS_OES_texture_half_float) public class TNS_OES_texture_half_float : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1432,8 +1452,10 @@ extension Swift.RangeReplaceableCollection { @objc set } @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @objc @_Concurrency.MainActor(unsafe) public func toImage() -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func toData() -> Foundation.NSData? @objc deinit } @objcMembers @objc(TNSWebGLRenderingContext) public class TNSWebGLRenderingContext : CanvasNative.TNSCanvasRenderingContext { @@ -2586,7 +2608,8 @@ extension Swift.RangeReplaceableCollection { @objc public static func createTextureCache(_ context: CanvasNative.TNSWebGLRenderingContext) -> CoreVideo.CVOpenGLESTextureCache? @objc public static func createImage(_ texturecache: CoreVideo.CVOpenGLESTextureCache, _ buffer: CoreVideo.CVImageBuffer, _ textureAttributes: CoreFoundation.CFDictionary?, _ target: OpenGLES.GLenum, _ internalFormat: OpenGLES.GLint, _ width: OpenGLES.GLsizei, _ height: OpenGLES.GLsizei, _ format: OpenGLES.GLenum, _ type: OpenGLES.GLenum, _ planeIndex: Swift.Int) -> CoreVideo.CVOpenGLESTexture? @objc public static func setupRender() -> CanvasNative.TNSRender - @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreGraphics.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreFoundation.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func writeToFile(_ data: Foundation.NSData, _ path: Swift.String) throws @objc override dynamic public init() @objc deinit } @@ -2697,10 +2720,12 @@ extension Swift.RangeReplaceableCollection { @objc get @objc set } + @objc public func setFillStyleWithString(_ color: Swift.String) @objc public var fillStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set } + @objc public func setStrokeStyleWithString(_ color: Swift.String) @objc public var strokeStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set @@ -2712,6 +2737,9 @@ extension Swift.RangeReplaceableCollection { @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float) @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, topLeft: Swift.Float, topRight: Swift.Float, bottomRight: Swift.Float, bottomLeft: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: [Swift.Float]) @objc public func fill() @objc public func fill(value: Any) @objc public func fill(_ path: CanvasNative.TNSPath2D, _ rule: CanvasNative.TNSFillRule) @@ -2735,6 +2763,7 @@ extension Swift.RangeReplaceableCollection { @objc public func getCanvas() -> CanvasNative.TNSCanvas @objc public func createLinearGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSLinearGradient @objc public func createRadialGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ r0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float, _ r1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSRadialGradient + @objc public func createConicGradient(_ startAngle: Swift.Float, _ x: Swift.Float, _ y: Swift.Float) -> CanvasNative.TNSColorStyle.TNSConicGradient @objc public func createPattern(_ value: Any, _ repetition: CanvasNative.TNSPatternRepetition) -> Any? @objc public func setTransform(_ a: Swift.Float, _ b: Swift.Float, _ c: Swift.Float, _ d: Swift.Float, _ e: Swift.Float, _ f: Swift.Float) @objc public func scale(_ x: Swift.Float, _ y: Swift.Float) @@ -2833,17 +2862,17 @@ extension Swift.RangeReplaceableCollection { public init?(string: Swift.String) } @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasGLKView) @_Concurrency.MainActor(unsafe) public class CanvasGLKView : GLKit.GLKView { - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreFoundation.CGRect) @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasCPUView) @_Concurrency.MainActor(unsafe) public class CanvasCPUView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) public var ignorePixelScaling: Swift.Bool - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc deinit } public protocol RenderListener { @@ -2860,9 +2889,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { } } @objc public class GLRenderer : ObjectiveC.NSObject, GLKit.GLKViewDelegate { - public var attributes: Foundation.NSDictionary + public var attributes: CanvasNative.TNSContextAttributes public func updateDirection(_ direction: Swift.String) - public var isDirty: Swift.Bool { + public var invalidateState: Swift.Int { get set } @@ -2901,7 +2930,7 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { public func ensureIsReady() public func pause() public func resume() - @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreGraphics.CGRect) + @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreFoundation.CGRect) } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSIndexedParameter) public class TNSIndexedParameter : ObjectiveC.NSObject { @objc deinit @@ -2972,6 +3001,8 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @objc public func loadImageFromUrl(url: Swift.String) -> Swift.Bool @objc public func loadImageFromUrlAsync(url: Swift.String, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromPathAsync(path: Swift.String, callback: @escaping (Swift.String?) -> ()) + @objc public func loadImageFromBuffer(_ buffer: Foundation.NSData) -> Swift.Bool + @objc public func loadImageFromBufferAsync(_ buffer: Foundation.NSData, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromBytes(array: [Swift.UInt8]) -> Swift.Bool @objc public func loadImageFromBytesAsync(array: [Swift.UInt8], callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromImage(image: UIKit.UIImage) -> Swift.Bool @@ -3178,6 +3209,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSRadialGradient) public class TNSRadialGradient : CanvasNative.TNSColorStyle.TNSGradient { @objc deinit } + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSConicGradient) public class TNSConicGradient : CanvasNative.TNSColorStyle.TNSGradient { + @objc deinit + } @_hasMissingDesignatedInitializers @objcMembers @objc(TNSPattern) public class TNSPattern : ObjectiveC.NSObject, CanvasNative.ICanvasColorStyle { @objc public func setTransform(matrix: CanvasNative.TNSDOMMatrix) @objc deinit diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftdoc index acc6c9c82..c537f0505 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 20d482b3c..39b2bb1af 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) // swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CanvasNative +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation @_exported import CanvasNative import CoreVideo @@ -11,6 +12,7 @@ import OpenGLES import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSDOMMatrix) public class TNSDOMMatrix : ObjectiveC.NSObject { @objc override dynamic public init() @objc public var a: Swift.Float { @@ -235,6 +237,10 @@ import _Concurrency @objc get @objc set } + @objc @_Concurrency.MainActor(unsafe) public var scaling: Swift.Bool { + @objc get + @objc set + } @objc @_Concurrency.MainActor(unsafe) public static func createSVGMatrix() -> CanvasNative.TNSDOMMatrix @objc @_Concurrency.MainActor(unsafe) public var handleInvalidationManually: Swift.Bool { @objc get @@ -248,6 +254,8 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ format: Swift.Float, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func snapshot() -> [Swift.UInt8] + @objc @_Concurrency.MainActor(unsafe) public func getImage(_ flip: Swift.Bool) -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func snapshotEncoded() -> [Swift.UInt8] @objc @_Concurrency.MainActor(unsafe) public var isGL: Swift.Bool { @objc get } @@ -265,11 +273,12 @@ import _Concurrency } @objc @_Concurrency.MainActor(unsafe) public func doDraw() @objc @_Concurrency.MainActor(unsafe) public func flush() - @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, useCpu: Swift.Bool) + @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, useCpu: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) public func setListener(_ listener: CanvasNative.TNSCanvasListener?) @objc @_Concurrency.MainActor(unsafe) public var fps: Swift.Float { @objc get } + @objc @_Concurrency.MainActor(unsafe) public static func layoutView(_ view: UIKit.UIView, _ width: CoreFoundation.CGFloat, _ height: CoreFoundation.CGFloat) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @objc deinit @objc @_Concurrency.MainActor(unsafe) public func resume() @@ -279,7 +288,15 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func handleMoveOffMain() @objc @_Concurrency.MainActor(unsafe) public func handleMoveToMain() @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? - @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Foundation.NSDictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, attributes: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Swift.Dictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, contextAttributes: CanvasNative.TNSContextAttributes) -> CanvasNative.TNSCanvasRenderingContext? +} +@_inheritsConvenienceInitializers @objc(TNSContextAttributes) @objcMembers public class TNSContextAttributes : ObjectiveC.NSObject, Swift.Codable { + @objc override dynamic public init() + @objc deinit + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } @_inheritsConvenienceInitializers @objcMembers @objc(TNSTextEncoder) public class TNSTextEncoder : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1363,6 +1380,9 @@ extension Swift.RangeReplaceableCollection { @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float) @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float, _ anticlockwise: Swift.Bool) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ topLeft: Swift.Float, _ topRight: Swift.Float, _ bottomRight: Swift.Float, _ bottomLeft: Swift.Float) + @objc public func roundRectWithRadii(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: [Swift.Float]) } @_inheritsConvenienceInitializers @objcMembers @objc(TNS_OES_texture_half_float) public class TNS_OES_texture_half_float : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1432,8 +1452,10 @@ extension Swift.RangeReplaceableCollection { @objc set } @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @objc @_Concurrency.MainActor(unsafe) public func toImage() -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func toData() -> Foundation.NSData? @objc deinit } @objcMembers @objc(TNSWebGLRenderingContext) public class TNSWebGLRenderingContext : CanvasNative.TNSCanvasRenderingContext { @@ -2586,7 +2608,8 @@ extension Swift.RangeReplaceableCollection { @objc public static func createTextureCache(_ context: CanvasNative.TNSWebGLRenderingContext) -> CoreVideo.CVOpenGLESTextureCache? @objc public static func createImage(_ texturecache: CoreVideo.CVOpenGLESTextureCache, _ buffer: CoreVideo.CVImageBuffer, _ textureAttributes: CoreFoundation.CFDictionary?, _ target: OpenGLES.GLenum, _ internalFormat: OpenGLES.GLint, _ width: OpenGLES.GLsizei, _ height: OpenGLES.GLsizei, _ format: OpenGLES.GLenum, _ type: OpenGLES.GLenum, _ planeIndex: Swift.Int) -> CoreVideo.CVOpenGLESTexture? @objc public static func setupRender() -> CanvasNative.TNSRender - @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreGraphics.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreFoundation.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func writeToFile(_ data: Foundation.NSData, _ path: Swift.String) throws @objc override dynamic public init() @objc deinit } @@ -2697,10 +2720,12 @@ extension Swift.RangeReplaceableCollection { @objc get @objc set } + @objc public func setFillStyleWithString(_ color: Swift.String) @objc public var fillStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set } + @objc public func setStrokeStyleWithString(_ color: Swift.String) @objc public var strokeStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set @@ -2712,6 +2737,9 @@ extension Swift.RangeReplaceableCollection { @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float) @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, topLeft: Swift.Float, topRight: Swift.Float, bottomRight: Swift.Float, bottomLeft: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: [Swift.Float]) @objc public func fill() @objc public func fill(value: Any) @objc public func fill(_ path: CanvasNative.TNSPath2D, _ rule: CanvasNative.TNSFillRule) @@ -2735,6 +2763,7 @@ extension Swift.RangeReplaceableCollection { @objc public func getCanvas() -> CanvasNative.TNSCanvas @objc public func createLinearGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSLinearGradient @objc public func createRadialGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ r0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float, _ r1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSRadialGradient + @objc public func createConicGradient(_ startAngle: Swift.Float, _ x: Swift.Float, _ y: Swift.Float) -> CanvasNative.TNSColorStyle.TNSConicGradient @objc public func createPattern(_ value: Any, _ repetition: CanvasNative.TNSPatternRepetition) -> Any? @objc public func setTransform(_ a: Swift.Float, _ b: Swift.Float, _ c: Swift.Float, _ d: Swift.Float, _ e: Swift.Float, _ f: Swift.Float) @objc public func scale(_ x: Swift.Float, _ y: Swift.Float) @@ -2833,17 +2862,17 @@ extension Swift.RangeReplaceableCollection { public init?(string: Swift.String) } @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasGLKView) @_Concurrency.MainActor(unsafe) public class CanvasGLKView : GLKit.GLKView { - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreFoundation.CGRect) @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasCPUView) @_Concurrency.MainActor(unsafe) public class CanvasCPUView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) public var ignorePixelScaling: Swift.Bool - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc deinit } public protocol RenderListener { @@ -2860,9 +2889,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { } } @objc public class GLRenderer : ObjectiveC.NSObject, GLKit.GLKViewDelegate { - public var attributes: Foundation.NSDictionary + public var attributes: CanvasNative.TNSContextAttributes public func updateDirection(_ direction: Swift.String) - public var isDirty: Swift.Bool { + public var invalidateState: Swift.Int { get set } @@ -2901,7 +2930,7 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { public func ensureIsReady() public func pause() public func resume() - @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreGraphics.CGRect) + @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreFoundation.CGRect) } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSIndexedParameter) public class TNSIndexedParameter : ObjectiveC.NSObject { @objc deinit @@ -2972,6 +3001,8 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @objc public func loadImageFromUrl(url: Swift.String) -> Swift.Bool @objc public func loadImageFromUrlAsync(url: Swift.String, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromPathAsync(path: Swift.String, callback: @escaping (Swift.String?) -> ()) + @objc public func loadImageFromBuffer(_ buffer: Foundation.NSData) -> Swift.Bool + @objc public func loadImageFromBufferAsync(_ buffer: Foundation.NSData, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromBytes(array: [Swift.UInt8]) -> Swift.Bool @objc public func loadImageFromBytesAsync(array: [Swift.UInt8], callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromImage(image: UIKit.UIImage) -> Swift.Bool @@ -3178,6 +3209,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSRadialGradient) public class TNSRadialGradient : CanvasNative.TNSColorStyle.TNSGradient { @objc deinit } + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSConicGradient) public class TNSConicGradient : CanvasNative.TNSColorStyle.TNSGradient { + @objc deinit + } @_hasMissingDesignatedInitializers @objcMembers @objc(TNSPattern) public class TNSPattern : ObjectiveC.NSObject, CanvasNative.ICanvasColorStyle { @objc public func setTransform(matrix: CanvasNative.TNSDOMMatrix) @objc deinit diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftdoc b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftdoc deleted file mode 100644 index acc6c9c82..000000000 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/arm64.swiftdoc and /dev/null differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 000000000..2ee714b84 --- /dev/null +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,75693 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSDOMMatrix", + "printedName": "TNSDOMMatrix", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)init", + "mangledName": "$s12CanvasNative12TNSDOMMatrixCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "a", + "printedName": "a", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)a", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)a", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setA:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1aSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1aSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "b", + "printedName": "b", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)b", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)b", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setB:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1bSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1bSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "c", + "printedName": "c", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)c", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)c", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setC:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1cSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1cSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "d", + "printedName": "d", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)d", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)d", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setD:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1dSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1dSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "e", + "printedName": "e", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)e", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)e", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setE:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1eSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1eSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "f", + "printedName": "f", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)f", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)f", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setF:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC1fSfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC1fSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m11", + "printedName": "m11", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m11", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m11", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM11:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m11SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m11SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m12", + "printedName": "m12", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m12", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m12", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM12:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m12SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m12SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m13", + "printedName": "m13", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m13", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m13", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM13:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m13SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m13SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m14", + "printedName": "m14", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m14", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m14", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM14:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m14SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m14SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m21", + "printedName": "m21", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m21", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m21", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM21:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m21SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m21SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m22", + "printedName": "m22", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m22", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m22", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM22:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m22SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m22SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m23", + "printedName": "m23", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m23", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m23", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM23:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m23SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m23SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m24", + "printedName": "m24", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m24", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m24", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM24:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m24SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m24SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m31", + "printedName": "m31", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m31", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m31", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM31:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m31SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m31SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m32", + "printedName": "m32", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m32", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m32", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM32:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m32SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m32SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m33", + "printedName": "m33", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m33", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m33", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM33:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m33SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m33SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m34", + "printedName": "m34", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m34", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m34", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM34:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m34SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m34SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m41", + "printedName": "m41", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m41", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m41", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM41:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m41SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m41SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m42", + "printedName": "m42", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m42", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m42", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM42:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m42SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m42SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m43", + "printedName": "m43", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m43", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m43", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM43:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m43SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m43SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "m44", + "printedName": "m44", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(py)m44", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)m44", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix(im)setM44:", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44Sfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative12TNSDOMMatrixC3m44SfvM", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC3m44SfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix", + "mangledName": "$s12CanvasNative12TNSDOMMatrixC", + "moduleName": "CanvasNative", + "objc_name": "TNSDOMMatrix", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextAlignment", + "printedName": "TNSTextAlignment", + "children": [ + { + "kind": "Var", + "name": "Start", + "printedName": "Start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentStart", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO5StartyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Left", + "printedName": "Left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentLeft", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO4LeftyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Center", + "printedName": "Center", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentCenter", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO6CenteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Right", + "printedName": "Right", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentRight", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO5RightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "End", + "printedName": "End", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextAlignment.Type) -> CanvasNative.TNSTextAlignment", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextAlignment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment@TNSTextAlignmentEnd", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO3EndyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextAlignment?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextAlignmentO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextAlignment?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextAlignmentO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment", + "mangledName": "$s12CanvasNative16TNSTextAlignmentO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextAlignment", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasListener", + "printedName": "TNSCanvasListener", + "children": [ + { + "kind": "Function", + "name": "contextReady", + "printedName": "contextReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener(im)contextReady", + "mangledName": "$s12CanvasNative17TNSCanvasListenerP12contextReadyyyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.TNSCanvasListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener", + "mangledName": "$s12CanvasNative17TNSCanvasListenerP", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "TNSCanvasListener", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_standard_derivatives", + "printedName": "TNS_OES_standard_derivatives", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_standard_derivatives", + "printedName": "CanvasNative.TNS_OES_standard_derivatives", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives(im)init", + "mangledName": "$s12CanvasNative28TNS_OES_standard_derivativesCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_standard_derivatives", + "mangledName": "$s12CanvasNative28TNS_OES_standard_derivativesC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_standard_derivatives", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_vertex_array_object", + "printedName": "TNS_OES_vertex_array_object", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_vertex_array_object", + "printedName": "CanvasNative.TNS_OES_vertex_array_object", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)init", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "VERTEX_ARRAY_BINDING_OES", + "printedName": "VERTEX_ARRAY_BINDING_OES", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(py)VERTEX_ARRAY_BINDING_OES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC021VERTEX_ARRAY_BINDING_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)VERTEX_ARRAY_BINDING_OES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC021VERTEX_ARRAY_BINDING_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createVertexArrayOES", + "printedName": "createVertexArrayOES()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)createVertexArrayOES", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC017createVertexArrayD0s6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteVertexArrayOES", + "printedName": "deleteVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)deleteVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC017deleteVertexArrayD00F6Objectys6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isVertexArrayOES", + "printedName": "isVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)isVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC013isVertexArrayD00F6ObjectSbs6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindVertexArrayOES", + "printedName": "bindVertexArrayOES(arrayObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object(im)bindVertexArrayOESWithArrayObject:", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC015bindVertexArrayD00F6Objectys6UInt32V_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_vertex_array_object", + "mangledName": "$s12CanvasNative27TNS_OES_vertex_array_objectC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_vertex_array_object", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_float", + "printedName": "TNS_OES_texture_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_float", + "printedName": "CanvasNative.TNS_OES_texture_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float(im)init", + "mangledName": "$s12CanvasNative21TNS_OES_texture_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float", + "mangledName": "$s12CanvasNative21TNS_OES_texture_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSAnimationFrame", + "printedName": "TNSAnimationFrame", + "children": [ + { + "kind": "Function", + "name": "requestAnimationFrame", + "printedName": "requestAnimationFrame(toLoop:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(cm)requestAnimationFrameToLoop:", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC016requestAnimationD06toLoopyySfc_tFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelAnimationFrame", + "printedName": "cancelAnimationFrame(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(cm)cancelAnimationFrameWithId:", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC015cancelAnimationD02idySS_tFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSAnimationFrame", + "printedName": "CanvasNative.TNSAnimationFrame", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame(im)init", + "mangledName": "$s12CanvasNative17TNSAnimationFrameCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSAnimationFrame", + "mangledName": "$s12CanvasNative17TNSAnimationFrameC", + "moduleName": "CanvasNative", + "objc_name": "TNSAnimationFrame", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSFillRule", + "printedName": "TNSFillRule", + "children": [ + { + "kind": "Var", + "name": "NonZero", + "printedName": "NonZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSFillRule.Type) -> CanvasNative.TNSFillRule", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSFillRule.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSFillRule@TNSFillRuleNonZero", + "mangledName": "$s12CanvasNative11TNSFillRuleO7NonZeroyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "EvenOdd", + "printedName": "EvenOdd", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSFillRule.Type) -> CanvasNative.TNSFillRule", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSFillRule.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSFillRule@TNSFillRuleEvenOdd", + "mangledName": "$s12CanvasNative11TNSFillRuleO7EvenOddyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSFillRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSFillRuleO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative11TNSFillRuleO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSFillRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSFillRuleO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative11TNSFillRuleO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSFillRule", + "mangledName": "$s12CanvasNative11TNSFillRuleO", + "moduleName": "CanvasNative", + "objc_name": "TNSFillRule", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_sRGB", + "printedName": "TNS_EXT_sRGB", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_sRGB", + "printedName": "CanvasNative.TNS_EXT_sRGB", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)init", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "SRGB_EXT", + "printedName": "SRGB_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC05SRGB_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC05SRGB_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB_ALPHA_EXT", + "printedName": "SRGB_ALPHA_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB_ALPHA_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC011SRGB_ALPHA_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB_ALPHA_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC011SRGB_ALPHA_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8_ALPHA8_EXT", + "printedName": "SRGB8_ALPHA8_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)SRGB8_ALPHA8_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC013SRGB8_ALPHA8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)SRGB8_ALPHA8_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC013SRGB8_ALPHA8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(py)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC038FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB(im)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC038FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_sRGB", + "mangledName": "$s12CanvasNative12TNS_EXT_sRGBC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_sRGB", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageData", + "printedName": "TNSImageData", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)data", + "mangledName": "$s12CanvasNative12TNSImageDataC4dataSo6NSDataCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)data", + "mangledName": "$s12CanvasNative12TNSImageDataC4dataSo6NSDataCvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)width", + "mangledName": "$s12CanvasNative12TNSImageDataC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)width", + "mangledName": "$s12CanvasNative12TNSImageDataC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(py)height", + "mangledName": "$s12CanvasNative12TNSImageDataC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)height", + "mangledName": "$s12CanvasNative12TNSImageDataC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData(im)init", + "mangledName": "$s12CanvasNative12TNSImageDataCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData", + "mangledName": "$s12CanvasNative12TNSImageDataC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageData", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextDirection", + "printedName": "TNSTextDirection", + "children": [ + { + "kind": "Var", + "name": "Ltr", + "printedName": "Ltr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextDirection.Type) -> CanvasNative.TNSTextDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextDirection@TNSTextDirectionLtr", + "mangledName": "$s12CanvasNative16TNSTextDirectionO3LtryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Rtl", + "printedName": "Rtl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextDirection.Type) -> CanvasNative.TNSTextDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextDirection@TNSTextDirectionRtl", + "mangledName": "$s12CanvasNative16TNSTextDirectionO3RtlyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextDirectionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative16TNSTextDirectionO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDirection", + "printedName": "CanvasNative.TNSTextDirection", + "usr": "c:@M@CanvasNative@E@TNSTextDirection" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative16TNSTextDirectionO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative16TNSTextDirectionO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextDirection", + "mangledName": "$s12CanvasNative16TNSTextDirectionO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextDirection", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_color_buffer_float", + "printedName": "TNS_WEBGL_color_buffer_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_color_buffer_float", + "printedName": "CanvasNative.TNS_WEBGL_color_buffer_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)init", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "RGBA32F_EXT", + "printedName": "RGBA32F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)RGBA32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC11RGBA32F_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)RGBA32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC11RGBA32F_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32F_EXT", + "printedName": "RGB32F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)RGB32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC10RGB32F_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)RGB32F_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC10RGB32F_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC41FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC41FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED_EXT", + "printedName": "UNSIGNED_NORMALIZED_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(py)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC23UNSIGNED_NORMALIZED_EXTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float(im)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC23UNSIGNED_NORMALIZED_EXTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_color_buffer_float", + "mangledName": "$s12CanvasNative28TNS_WEBGL_color_buffer_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_color_buffer_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "TNS_ANGLE_instanced_arrays", + "children": [ + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "printedName": "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(py)VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC028VERTEX_ATTRIB_ARRAY_DIVISOR_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC028VERTEX_ATTRIB_ARRAY_DIVISOR_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(context:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "CanvasNative.TNS_ANGLE_instanced_arrays", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays" + }, + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)initWithContext:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC7contextAcA24TNSWebGLRenderingContextC_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "drawArraysInstancedANGLE", + "printedName": "drawArraysInstancedANGLE(mode:first:count:primcount:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)drawArraysInstancedANGLEWithMode:first:count:primcount:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC019drawArraysInstancedD04mode5first5count9primcountys5Int32V_A3JtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElementsInstancedANGLE", + "printedName": "drawElementsInstancedANGLE(mode:count:type:offset:primcount:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)drawElementsInstancedANGLEWithMode:count:type:offset:primcount:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC021drawElementsInstancedD04mode5count4type6offset9primcountys5Int32V_A4KtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribDivisorANGLE", + "printedName": "vertexAttribDivisorANGLE(index:divisor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)vertexAttribDivisorANGLEWithIndex:divisor:", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC019vertexAttribDivisorD05index7divisorys5Int32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_ANGLE_instanced_arrays", + "printedName": "CanvasNative.TNS_ANGLE_instanced_arrays", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays(im)init", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_ANGLE_instanced_arrays", + "mangledName": "$s12CanvasNative26TNS_ANGLE_instanced_arraysC", + "moduleName": "CanvasNative", + "objc_name": "TNS_ANGLE_instanced_arrays", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_blend_minmax", + "printedName": "TNS_EXT_blend_minmax", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_blend_minmax", + "printedName": "CanvasNative.TNS_EXT_blend_minmax", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)init", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "MIN_EXT", + "printedName": "MIN_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(py)MIN_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MIN_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)MIN_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MIN_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_EXT", + "printedName": "MAX_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(py)MAX_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MAX_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax(im)MAX_EXT", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC04MAX_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_blend_minmax", + "mangledName": "$s12CanvasNative20TNS_EXT_blend_minmaxC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_blend_minmax", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "MetalKit", + "printedName": "MetalKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSCanvas", + "printedName": "TNSCanvas", + "children": [ + { + "kind": "Function", + "name": "getViews", + "printedName": "getViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)getViews", + "mangledName": "$s12CanvasNative9TNSCanvasC8getViewsSo10NSMapTableCySo8NSStringCACGyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getViewPtr", + "printedName": "getViewPtr()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getViewPtr", + "mangledName": "$s12CanvasNative9TNSCanvasC10getViewPtrSvSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "scaling", + "printedName": "scaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)scaling", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)scaling", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setScaling:", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC7scalingSbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC7scalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "createSVGMatrix", + "printedName": "createSVGMatrix()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)createSVGMatrix", + "mangledName": "$s12CanvasNative9TNSCanvasC15createSVGMatrixAA12TNSDOMMatrixCyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "handleInvalidationManually", + "printedName": "handleInvalidationManually", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)handleInvalidationManually", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleInvalidationManually", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setHandleInvalidationManually:", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvM", + "mangledName": "$s12CanvasNative9TNSCanvasC26handleInvalidationManuallySbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "didDraw", + "printedName": "didDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)didDraw", + "mangledName": "$s12CanvasNative9TNSCanvasC7didDrawyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLSSyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL:", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLyS2SF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURL", + "printedName": "toDataURL(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURL::", + "mangledName": "$s12CanvasNative9TNSCanvasC9toDataURLyS2S_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync:", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyyySScF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync::", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyySS_ySSctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toDataURLAsync", + "printedName": "toDataURLAsync(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)toDataURLAsync:::", + "mangledName": "$s12CanvasNative9TNSCanvasC14toDataURLAsyncyySS_SfySSctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "snapshot", + "printedName": "snapshot()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)snapshot", + "mangledName": "$s12CanvasNative9TNSCanvasC8snapshotSays5UInt8VGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImage", + "printedName": "getImage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getImage:", + "mangledName": "$s12CanvasNative9TNSCanvasC8getImageySo7UIImageCSgSbF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "snapshotEncoded", + "printedName": "snapshotEncoded()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)snapshotEncoded", + "mangledName": "$s12CanvasNative9TNSCanvasC15snapshotEncodedSays5UInt8VGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isGL", + "printedName": "isGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)isGL", + "mangledName": "$s12CanvasNative9TNSCanvasC4isGLSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)isGL", + "mangledName": "$s12CanvasNative9TNSCanvasC4isGLSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getId", + "printedName": "getId()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getId", + "mangledName": "$s12CanvasNative9TNSCanvasC5getIds5Int32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)width", + "mangledName": "$s12CanvasNative9TNSCanvasC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)width", + "mangledName": "$s12CanvasNative9TNSCanvasC5widthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)height", + "mangledName": "$s12CanvasNative9TNSCanvasC6heightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)height", + "mangledName": "$s12CanvasNative9TNSCanvasC6heightSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "updateDirection", + "printedName": "updateDirection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)updateDirection:", + "mangledName": "$s12CanvasNative9TNSCanvasC15updateDirectionyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)context", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)context", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setContext:", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64Vvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative9TNSCanvasC7contexts5Int64VvM", + "mangledName": "$s12CanvasNative9TNSCanvasC7contexts5Int64VvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "doDraw", + "printedName": "doDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)doDraw", + "mangledName": "$s12CanvasNative9TNSCanvasC6doDrawyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)flush", + "mangledName": "$s12CanvasNative9TNSCanvasC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:useCpu:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)initWithFrame:useCpu:", + "mangledName": "$s12CanvasNative9TNSCanvasC5frame6useCpuACSo6CGRectV_Sbtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setListener", + "printedName": "setListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasListener?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasListener", + "printedName": "CanvasNative.TNSCanvasListener", + "usr": "c:@M@CanvasNative@objc(pl)TNSCanvasListener" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)setListener:", + "mangledName": "$s12CanvasNative9TNSCanvasC11setListeneryyAA0cE0_pSgF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fps", + "printedName": "fps", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(py)fps", + "mangledName": "$s12CanvasNative9TNSCanvasC3fpsSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)fps", + "mangledName": "$s12CanvasNative9TNSCanvasC3fpsSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "layoutView", + "printedName": "layoutView(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(cm)layoutView:::", + "mangledName": "$s12CanvasNative9TNSCanvasC10layoutViewyySo6UIViewC_12CoreGraphics7CGFloatVAItFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)layoutSubviews", + "mangledName": "$s12CanvasNative9TNSCanvasC14layoutSubviewsyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)resume", + "mangledName": "$s12CanvasNative9TNSCanvasC6resumeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)pause", + "mangledName": "$s12CanvasNative9TNSCanvasC5pauseyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveToMain", + "printedName": "moveToMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)moveToMain", + "mangledName": "$s12CanvasNative9TNSCanvasC10moveToMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveOffMain", + "printedName": "moveOffMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)moveOffMain", + "mangledName": "$s12CanvasNative9TNSCanvasC11moveOffMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleMoveOffMain", + "printedName": "handleMoveOffMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleMoveOffMain", + "mangledName": "$s12CanvasNative9TNSCanvasC17handleMoveOffMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleMoveToMain", + "printedName": "handleMoveToMain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)handleMoveToMain", + "mangledName": "$s12CanvasNative9TNSCanvasC16handleMoveToMainyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContext:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContextyAA0c9RenderingE0CSgSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(type:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContextWithType:attributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext4type10attributesAA0c9RenderingE0CSgSS_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(_:contextAttributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContext:contextAttributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext_17contextAttributesAA0c9RenderingE0CSgSS_SDySSypGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContext", + "printedName": "getContext(type:contextAttributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCanvasRenderingContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)getContextWithType:contextAttributes:", + "mangledName": "$s12CanvasNative9TNSCanvasC10getContext4type17contextAttributesAA0c9RenderingE0CSgSS_AA010TNSContextH0CtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas(im)initWithFrame:", + "mangledName": "$s12CanvasNative9TNSCanvasC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas", + "mangledName": "$s12CanvasNative9TNSCanvasC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvas", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RenderListener", + "printedName": "RenderListener", + "usr": "s:12CanvasNative14RenderListenerP", + "mangledName": "$s12CanvasNative14RenderListenerP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSContextAttributes", + "printedName": "TNSContextAttributes", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes(im)init", + "mangledName": "$s12CanvasNative20TNSContextAttributesCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSContextAttributesC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s12CanvasNative20TNSContextAttributesC4fromACs7Decoder_p_tKcfc", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative20TNSContextAttributesC6encode2toys7Encoder_p_tKF", + "mangledName": "$s12CanvasNative20TNSContextAttributesC6encode2toys7Encoder_p_tKF", + "moduleName": "CanvasNative", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes", + "mangledName": "$s12CanvasNative20TNSContextAttributesC", + "moduleName": "CanvasNative", + "objc_name": "TNSContextAttributes", + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextEncoder", + "printedName": "TNSTextEncoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextEncoder", + "printedName": "CanvasNative.TNSTextEncoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)init", + "mangledName": "$s12CanvasNative14TNSTextEncoderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encoding:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextEncoder", + "printedName": "CanvasNative.TNSTextEncoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)initWithEncoding:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(py)encoding", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encoding", + "mangledName": "$s12CanvasNative14TNSTextEncoderC8encodingSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(text:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encodeWithText:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC6encode4textSo6NSDataCSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(pointer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:SP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder(im)encodeWithPointer:", + "mangledName": "$s12CanvasNative14TNSTextEncoderC6encode7pointerSo6NSDataCSPys4Int8VGSg_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextEncoder", + "mangledName": "$s12CanvasNative14TNSTextEncoderC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextEncoder", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "Var", + "name": "Default", + "printedName": "Default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaDefault", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO7DefaultyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Premultiply", + "printedName": "Premultiply", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaPremultiply", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO0E0yA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "None", + "printedName": "None", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapPremultiplyAlpha.Type) -> CanvasNative.TNSImageBitmapPremultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha@TNSImageBitmapPremultiplyAlphaNone", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO4NoneyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative30TNSImageBitmapPremultiplyAlphaO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha", + "mangledName": "$s12CanvasNative30TNSImageBitmapPremultiplyAlphaO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapPremultiplyAlpha", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_etc1", + "printedName": "TNS_WEBGL_compressed_texture_etc1", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_etc1", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_etc1", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(im)init", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1CACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_ETC1_WEBGL", + "printedName": "COMPRESSED_RGB_ETC1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(py)COMPRESSED_RGB_ETC1_WEBGL", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C020COMPRESSED_RGB_ETC1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1(im)COMPRESSED_RGB_ETC1_WEBGL", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C020COMPRESSED_RGB_ETC1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc1", + "mangledName": "$s12CanvasNative33TNS_WEBGL_compressed_texture_etc1C", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_etc1", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_texture_filter_anisotropic", + "printedName": "TNS_EXT_texture_filter_anisotropic", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_texture_filter_anisotropic", + "printedName": "CanvasNative.TNS_EXT_texture_filter_anisotropic", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)init", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "printedName": "MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(py)MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC012MAX_TEXTURE_h12_ANISOTROPY_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC012MAX_TEXTURE_h12_ANISOTROPY_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_ANISOTROPY_EXT", + "printedName": "TEXTURE_MAX_ANISOTROPY_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(py)TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC023TEXTURE_MAX_ANISOTROPY_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic(im)TEXTURE_MAX_ANISOTROPY_EXT", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC023TEXTURE_MAX_ANISOTROPY_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_texture_filter_anisotropic", + "mangledName": "$s12CanvasNative34TNS_EXT_texture_filter_anisotropicC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_texture_filter_anisotropic", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLineJoin", + "printedName": "TNSLineJoin", + "children": [ + { + "kind": "Var", + "name": "Round", + "printedName": "Round", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinRound", + "mangledName": "$s12CanvasNative11TNSLineJoinO5RoundyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Bevel", + "printedName": "Bevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinBevel", + "mangledName": "$s12CanvasNative11TNSLineJoinO5BevelyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Miter", + "printedName": "Miter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineJoin.Type) -> CanvasNative.TNSLineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineJoin.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineJoin@TNSLineJoinMiter", + "mangledName": "$s12CanvasNative11TNSLineJoinO5MiteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineJoin?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSLineJoinO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative11TNSLineJoinO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineJoin?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11TNSLineJoinO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative11TNSLineJoinO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSLineJoin", + "mangledName": "$s12CanvasNative11TNSLineJoinO", + "moduleName": "CanvasNative", + "objc_name": "TNSLineJoin", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapOptions", + "printedName": "TNSImageBitmapOptions", + "children": [ + { + "kind": "Var", + "name": "flipY", + "printedName": "flipY", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)flipY", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)flipY", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setFlipY:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC5flipYSbvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC5flipYSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "premultiplyAlpha", + "printedName": "premultiplyAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)premultiplyAlpha", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)premultiplyAlpha", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapPremultiplyAlpha", + "printedName": "CanvasNative.TNSImageBitmapPremultiplyAlpha", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapPremultiplyAlpha" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setPremultiplyAlpha:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC16premultiplyAlphaAA0cd11PremultiplyG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorSpaceConversion", + "printedName": "colorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)colorSpaceConversion", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)colorSpaceConversion", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setColorSpaceConversion:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC20colorSpaceConversionAA0cd5ColorgH0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeQuality", + "printedName": "resizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeQuality", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeQuality", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeQuality:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0OvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC13resizeQualityAA0cd6ResizeG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeWidth", + "printedName": "resizeWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeWidth", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeWidth", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeWidth:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC11resizeWidthSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "resizeHeight", + "printedName": "resizeHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(py)resizeHeight", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)resizeHeight", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)setResizeHeight:", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvM", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC12resizeHeightSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions(im)init", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions", + "mangledName": "$s12CanvasNative21TNSImageBitmapOptionsC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapOptions", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "TNSFramebufferAttachmentParameter", + "children": [ + { + "kind": "Var", + "name": "isTexture", + "printedName": "isTexture", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)isTexture", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTextureSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)isTexture", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTextureSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isRenderbuffer", + "printedName": "isRenderbuffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)isRenderbuffer", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC14isRenderbufferSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)isRenderbuffer", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC14isRenderbufferSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(py)value", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC5values5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)value", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC5values5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)init", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isTexture:isRenderbuffer:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter(im)initWithIsTexture:isRenderbuffer:value:", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC9isTexture0F12Renderbuffer5valueACSb_Sbs5Int32Vtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter", + "mangledName": "$s12CanvasNative33TNSFramebufferAttachmentParameterC", + "moduleName": "CanvasNative", + "objc_name": "TNSFramebufferAttachmentParameter", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_element_index_uint", + "printedName": "TNS_OES_element_index_uint", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_element_index_uint", + "printedName": "CanvasNative.TNS_OES_element_index_uint", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(im)init", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "UNSIGNED_INT", + "printedName": "UNSIGNED_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(py)UNSIGNED_INT", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC12UNSIGNED_INTs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint(im)UNSIGNED_INT", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC12UNSIGNED_INTs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_element_index_uint", + "mangledName": "$s12CanvasNative26TNS_OES_element_index_uintC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_element_index_uint", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSWebGL2RenderingContext", + "printedName": "TNSWebGL2RenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGL2RenderingContext", + "printedName": "CanvasNative.TNSWebGL2RenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)init:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextCyAcA9TNSCanvasCcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGL2RenderingContext", + "printedName": "CanvasNative.TNSWebGL2RenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)init::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextCyAcA9TNSCanvasC_SDySSypGtcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init::", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "beginQuery", + "printedName": "beginQuery(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)beginQuery::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10beginQueryyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "beginTransformFeedback", + "printedName": "beginTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)beginTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22beginTransformFeedbackyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBufferBase", + "printedName": "bindBufferBase(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindBufferBase:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14bindBufferBaseyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBufferRange", + "printedName": "bindBufferRange(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindBufferRange:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15bindBufferRangeyys6UInt32V_A2FS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindSampler", + "printedName": "bindSampler(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindSampler::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11bindSampleryys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindTransformFeedback", + "printedName": "bindTransformFeedback(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindTransformFeedback::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21bindTransformFeedbackyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindVertexArray", + "printedName": "bindVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)bindVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15bindVertexArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blitFramebuffer", + "printedName": "blitFramebuffer(_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)blitFramebuffer::::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15blitFramebufferyys5Int32V_A7Fs6UInt32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfv", + "printedName": "clearBufferfv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfvyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfv", + "printedName": "clearBufferfv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferiv", + "printedName": "clearBufferiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferivyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferiv", + "printedName": "clearBufferiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferiv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferuiv", + "printedName": "clearBufferuiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferuiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clearBufferuivyys6UInt32V_s5Int32VSVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferuiv", + "printedName": "clearBufferuiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferuiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clearBufferuiv___6offsetys6UInt32V_s5Int32VSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearBufferfi", + "printedName": "clearBufferfi(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clearBufferfi::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13clearBufferfiyys6UInt32V_s5Int32VSfAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientWaitSync", + "printedName": "clientWaitSync(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)clientWaitSync:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14clientWaitSyncys5Int32Vs13OpaquePointerV_s6UInt32Vs6UInt64VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3Dyys6UInt32V_s5Int32VA6hf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i8:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i8:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________2i8__ys6UInt32V_s5Int32VA6iGSays4Int8VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u8:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u8:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________2u8__ys6UInt32V_s5Int32VA6iGSays5UInt8VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i16:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i16:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3i16__ys6UInt32V_s5Int32VA6iGSays5Int16VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u16:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u16:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3u16__ys6UInt32V_s5Int32VA6iGSays6UInt16VGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:i32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::i32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3i32__ys6UInt32V_s5Int32VA6iGSayAIGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:u32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::u32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3u32__ys6UInt32V_s5Int32VA6iGSayAGGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:f32:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::f32:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3f32__ys6UInt32V_s5Int32VA6iGSaySfGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage3D", + "printedName": "compressedTexSubImage3D(_:_:_:_:_:_:_:_:_:f64:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)compressedTexSubImage3D:::::::::f64:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23compressedTexSubImage3D_________3f64__ys6UInt32V_s5Int32VA6iGSaySdGA2ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBufferSubData", + "printedName": "copyBufferSubData(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)copyBufferSubData:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17copyBufferSubDatayys6UInt32V_AFS3itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexSubImage3D", + "printedName": "copyTexSubImage3D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)copyTexSubImage3D:::::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17copyTexSubImage3Dyys6UInt32V_s5Int32VA7HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createQuery", + "printedName": "createQuery()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createQuery", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11createQuerys6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSampler", + "printedName": "createSampler()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createSampler", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13createSamplers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createVertexArray", + "printedName": "createVertexArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createVertexArray", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17createVertexArrays6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTransformFeedback", + "printedName": "createTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)createTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23createTransformFeedbacks6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteQuery", + "printedName": "deleteQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11deleteQueryyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteSampler", + "printedName": "deleteSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteSampler:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13deleteSampleryys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteSync", + "printedName": "deleteSync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteSync:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10deleteSyncyys13OpaquePointerVF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteTransformFeedback", + "printedName": "deleteTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23deleteTransformFeedbackyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteVertexArray", + "printedName": "deleteVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)deleteVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17deleteVertexArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawArraysInstanced", + "printedName": "drawArraysInstanced(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawArraysInstanced::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19drawArraysInstancedyys6UInt32V_s5Int32VA2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElementsInstanced", + "printedName": "drawElementsInstanced(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawElementsInstanced:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21drawElementsInstancedyys6UInt32V_s5Int32VAFSiAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawRangeElements", + "printedName": "drawRangeElements(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawRangeElements::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17drawRangeElementsyys6UInt32V_A2Fs5Int32VAFSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawBuffers", + "printedName": "drawBuffers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)drawBuffers:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11drawBuffersyySays6UInt32VGF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endQuery", + "printedName": "endQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)endQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8endQueryyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endTransformFeedback", + "printedName": "endTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)endTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20endTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fenceSync", + "printedName": "fenceSync(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)fenceSync::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9fenceSyncyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferTextureLayer", + "printedName": "framebufferTextureLayer(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)framebufferTextureLayer:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23framebufferTextureLayeryys6UInt32V_A2Fs5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniformBlockName", + "printedName": "getActiveUniformBlockName(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniformBlockName::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25getActiveUniformBlockNameySSs6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniformBlockParameter", + "printedName": "getActiveUniformBlockParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniformBlockParameter:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30getActiveUniformBlockParameteryyps6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniforms", + "printedName": "getActiveUniforms(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getActiveUniforms:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getActiveUniformsyyps6UInt32V_SayAFGAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferSubData", + "printedName": "getBufferSubData(_:_:_:size:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getBufferSubData:::size:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getBufferSubData___4size__ys6UInt32V_SiSvSis5Int32VAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferSubData", + "printedName": "getBufferSubData(_:_:_:size:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getBufferSubData:::size:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getBufferSubData___4size__6offsetys6UInt32V_SiSvSis5Int32VAJSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFragDataLocation", + "printedName": "getFragDataLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getFragDataLocation::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getFragDataLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIndexedParameter", + "printedName": "getIndexedParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getIndexedParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getIndexedParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInternalformatParameter", + "printedName": "getInternalformatParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getInternalformatParameter:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26getInternalformatParameteryyps6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameter", + "printedName": "getParameter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getParameter:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12getParameteryypSgs6UInt32VF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "getParameter:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQuery", + "printedName": "getQuery(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getQuery::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8getQueryyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameter", + "printedName": "getQueryParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getQueryParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getQueryParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSamplerParameter", + "printedName": "getSamplerParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getSamplerParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19getSamplerParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSyncParameter", + "printedName": "getSyncParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getSyncParameter::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16getSyncParameteryyps13OpaquePointerV_s6UInt32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTransformFeedbackVarying", + "printedName": "getTransformFeedbackVarying(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getTransformFeedbackVarying::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27getTransformFeedbackVaryingyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformBlockIndex", + "printedName": "getUniformBlockIndex(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getUniformBlockIndex::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20getUniformBlockIndexys6UInt32VAF_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformIndices", + "printedName": "getUniformIndices(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)getUniformIndices::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17getUniformIndicesySays6UInt32VGAF_SaySSGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidateFramebuffer", + "printedName": "invalidateFramebuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)invalidateFramebuffer::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21invalidateFramebufferyys6UInt32V_SayAFGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidateSubFramebuffer", + "printedName": "invalidateSubFramebuffer(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)invalidateSubFramebuffer::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24invalidateSubFramebufferyys6UInt32V_SayAFGs5Int32VA3ItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isQuery", + "printedName": "isQuery(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isQuery:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7isQueryySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSampler", + "printedName": "isSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isSampler:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9isSamplerySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSync", + "printedName": "isSync(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OpaquePointer", + "printedName": "Swift.OpaquePointer", + "usr": "s:s13OpaquePointerV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isSync:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6isSyncySbs13OpaquePointerVF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isTransformFeedback", + "printedName": "isTransformFeedback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isTransformFeedback:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19isTransformFeedbackySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isVertexArray", + "printedName": "isVertexArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)isVertexArray:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13isVertexArrayySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pauseTransformFeedback", + "printedName": "pauseTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)pauseTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22pauseTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readBuffer", + "printedName": "readBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)readBuffer:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10readBufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "renderbufferStorageMultisample", + "printedName": "renderbufferStorageMultisample(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)renderbufferStorageMultisample:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30renderbufferStorageMultisampleyys6UInt32V_s5Int32VAf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resumeTransformFeedback", + "printedName": "resumeTransformFeedback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)resumeTransformFeedback", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23resumeTransformFeedbackyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "samplerParameteri", + "printedName": "samplerParameteri(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)samplerParameteri:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17samplerParameteriyys6UInt32V_AFs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "samplerParameterf", + "printedName": "samplerParameterf(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)samplerParameterf:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17samplerParameterfyys6UInt32V_AFSftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::data:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________4datays6UInt32V_s5Int32VA5i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6offsetys6UInt32V_s5Int32VA5i2GSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::pixels:size:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6pixels4sizeys6UInt32V_s5Int32VA5j2HSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:pixels:size:pixelOffset:srcOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::pixels:size:pixelOffset:srcOffset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6pixels4size11pixelOffset03srcL0ys6UInt32V_s5Int32VA5l2JSVS2iALtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2i8ys6UInt32V_s5Int32VA5i2GSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2u8ys6UInt32V_s5Int32VA5i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i16ys6UInt32V_s5Int32VA5i2GSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u16ys6UInt32V_s5Int32VA5i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i32ys6UInt32V_s5Int32VA5i2GSayAIGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u32ys6UInt32V_s5Int32VA5i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f32ys6UInt32V_s5Int32VA5i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f64:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f64ys6UInt32V_s5Int32VA5i2GSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2i8_ys6UInt32V_s5Int32VA5i2GSays4Int8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________2u8_ys6UInt32V_s5Int32VA5i2GSays5UInt8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i16_ys6UInt32V_s5Int32VA5i2GSays5Int16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u16_ys6UInt32V_s5Int32VA5i2GSays6UInt16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::i32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3i32_ys6UInt32V_s5Int32VA5i2GSayAIGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::u32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3u32_ys6UInt32V_s5Int32VA5i2GSayAGGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f32_ys6UInt32V_s5Int32VA5i2GSaySfGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::f64::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________3f64_ys6UInt32V_s5Int32VA5i2GSaySdGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:source:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::source:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6sourceys6UInt32V_s5Int32VA5i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::asset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________5assetys6UInt32V_s5Int32VA5i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::bitmap:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6bitmapys6UInt32V_s5Int32VA5i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage3D", + "printedName": "texImage3D(_:_:_:_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texImage3D:::::::::canvas:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10texImage3D_________6canvasys6UInt32V_s5Int32VA5i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texStorage2D", + "printedName": "texStorage2D(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texStorage2D:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12texStorage2Dyys6UInt32V_s5Int32VAf2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texStorage3D", + "printedName": "texStorage3D(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texStorage3D::::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12texStorage3Dyys6UInt32V_s5Int32VAf3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::data:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________4datays6UInt32V_s5Int32VA6i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6offsetys6UInt32V_s5Int32VA6i2gItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2i8ys6UInt32V_s5Int32VA6i2GSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u8:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2u8ys6UInt32V_s5Int32VA6i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i16ys6UInt32V_s5Int32VA6i2GSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u16:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u16ys6UInt32V_s5Int32VA6i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i32ys6UInt32V_s5Int32VA6i2GSayAIGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u32ys6UInt32V_s5Int32VA6i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f32:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f32ys6UInt32V_s5Int32VA6i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f64:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f64ys6UInt32V_s5Int32VA6i2GSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2i8_ys6UInt32V_s5Int32VA6i2GSays4Int8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u8::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________2u8_ys6UInt32V_s5Int32VA6i2GSays5UInt8VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i16_ys6UInt32V_s5Int32VA6i2GSays5Int16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u16::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u16_ys6UInt32V_s5Int32VA6i2GSays6UInt16VGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::i32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3i32_ys6UInt32V_s5Int32VA6i2GSayAIGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::u32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3u32_ys6UInt32V_s5Int32VA6i2GSayAGGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f32::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f32_ys6UInt32V_s5Int32VA6i2GSaySfGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::f64::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________3f64_ys6UInt32V_s5Int32VA6i2GSaySdGAItF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:srcData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::srcData:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________7srcDatays6UInt32V_s5Int32VA6i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::canvas:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6canvasys6UInt32V_s5Int32VA6i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::asset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________5assetys6UInt32V_s5Int32VA6i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage3D", + "printedName": "texSubImage3D(_:_:_:_:_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)texSubImage3D::::::::::bitmap:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13texSubImage3D__________6bitmapys6UInt32V_s5Int32VA6i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformFeedbackVaryings", + "printedName": "transformFeedbackVaryings(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)transformFeedbackVaryings:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25transformFeedbackVaryingsyys6UInt32V_SaySSGAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1ui", + "printedName": "uniform1ui(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1ui::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform1uiyys5Int32V_s6UInt32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2ui", + "printedName": "uniform2ui(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2ui:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform2uiyys5Int32V_s6UInt32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3ui", + "printedName": "uniform3ui(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3ui::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform3uiyys5Int32V_s6UInt32VA2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4ui", + "printedName": "uniform4ui(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4ui:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10uniform4uiyys5Int32V_s6UInt32VA3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1uiv", + "printedName": "uniform1uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform1uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1uiv", + "printedName": "uniform1uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform1uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform1uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2uiv", + "printedName": "uniform2uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform2uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2uiv", + "printedName": "uniform2uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform2uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform2uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3uiv", + "printedName": "uniform3uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform3uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3uiv", + "printedName": "uniform3uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform3uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform3uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4uiv", + "printedName": "uniform4uiv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4uiv:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform4uivyys5Int32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4uiv", + "printedName": "uniform4uiv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniform4uiv:::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11uniform4uiv___6offsetys5Int32V_SVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformBlockBinding", + "printedName": "uniformBlockBinding(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformBlockBinding:::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19uniformBlockBindingyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x2fv", + "printedName": "uniformMatrix3x2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x2fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x2fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x2fv", + "printedName": "uniformMatrix3x2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x2fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x2fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x2fv", + "printedName": "uniformMatrix4x2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x2fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x2fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x2fv", + "printedName": "uniformMatrix4x2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x2fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x2fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x3fv", + "printedName": "uniformMatrix2x3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x3fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x3fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x3fv", + "printedName": "uniformMatrix2x3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x3fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x3fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x3fv", + "printedName": "uniformMatrix4x3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x3fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x3fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4x3fv", + "printedName": "uniformMatrix4x3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix4x3fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix4x3fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x4fv", + "printedName": "uniformMatrix2x4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x4fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x4fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2x4fv", + "printedName": "uniformMatrix2x4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix2x4fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix2x4fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x4fv", + "printedName": "uniformMatrix3x4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x4fv::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x4fvyys6UInt32V_SbSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3x4fv", + "printedName": "uniformMatrix3x4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)uniformMatrix3x4fv::::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18uniformMatrix3x4fv____6offsetys6UInt32V_SbSVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribDivisor", + "printedName": "vertexAttribDivisor(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribDivisor::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19vertexAttribDivisoryys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4i", + "printedName": "vertexAttribI4i(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4i:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15vertexAttribI4iyys6UInt32V_s5Int32VA3HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4ui", + "printedName": "vertexAttribI4ui(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4ui:::::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4uiyys6UInt32V_A4FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4iv", + "printedName": "vertexAttribI4iv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4iv::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4ivyys6UInt32V_SVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4iv", + "printedName": "vertexAttribI4iv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4iv::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16vertexAttribI4iv__6offsetys6UInt32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4uiv", + "printedName": "vertexAttribI4uiv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4uiv::", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17vertexAttribI4uivyys6UInt32V_SVtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribI4uiv", + "printedName": "vertexAttribI4uiv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)vertexAttribI4uiv::offset:", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17vertexAttribI4uiv__6offsetys6UInt32V_SVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "READ_BUFFER", + "printedName": "READ_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11READ_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11READ_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_ROW_LENGTH", + "printedName": "UNPACK_ROW_LENGTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNPACK_ROW_LENGTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNPACK_ROW_LENGTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_ROWS", + "printedName": "UNPACK_SKIP_ROWS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16UNPACK_SKIP_ROWSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16UNPACK_SKIP_ROWSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_PIXELS", + "printedName": "UNPACK_SKIP_PIXELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_PIXELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_PIXELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_ROW_LENGTH", + "printedName": "PACK_ROW_LENGTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15PACK_ROW_LENGTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_ROW_LENGTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15PACK_ROW_LENGTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_SKIP_ROWS", + "printedName": "PACK_SKIP_ROWS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14PACK_SKIP_ROWSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_SKIP_ROWS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14PACK_SKIP_ROWSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_SKIP_PIXELS", + "printedName": "PACK_SKIP_PIXELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16PACK_SKIP_PIXELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PACK_SKIP_PIXELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16PACK_SKIP_PIXELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_3D", + "printedName": "TEXTURE_BINDING_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BINDING_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BINDING_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BINDING_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BINDING_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_SKIP_IMAGES", + "printedName": "UNPACK_SKIP_IMAGES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_SKIP_IMAGES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_IMAGESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_SKIP_IMAGES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18UNPACK_SKIP_IMAGESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_IMAGE_HEIGHT", + "printedName": "UNPACK_IMAGE_HEIGHT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNPACK_IMAGE_HEIGHT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNPACK_IMAGE_HEIGHTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNPACK_IMAGE_HEIGHT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNPACK_IMAGE_HEIGHTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_3D_TEXTURE_SIZE", + "printedName": "MAX_3D_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_3D_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19MAX_3D_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_3D_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19MAX_3D_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENTS_VERTICES", + "printedName": "MAX_ELEMENTS_VERTICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENTS_VERTICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_ELEMENTS_VERTICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENTS_VERTICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_ELEMENTS_VERTICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENTS_INDICES", + "printedName": "MAX_ELEMENTS_INDICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENTS_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_ELEMENTS_INDICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENTS_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_ELEMENTS_INDICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_LOD_BIAS", + "printedName": "MAX_TEXTURE_LOD_BIAS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TEXTURE_LOD_BIAS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_TEXTURE_LOD_BIASs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TEXTURE_LOD_BIAS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20MAX_TEXTURE_LOD_BIASs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_COMPONENTS", + "printedName": "MAX_FRAGMENT_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31MAX_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31MAX_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_COMPONENTS", + "printedName": "MAX_VERTEX_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ARRAY_TEXTURE_LAYERS", + "printedName": "MAX_ARRAY_TEXTURE_LAYERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ARRAY_TEXTURE_LAYERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_ARRAY_TEXTURE_LAYERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ARRAY_TEXTURE_LAYERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_ARRAY_TEXTURE_LAYERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIN_PROGRAM_TEXEL_OFFSET", + "printedName": "MIN_PROGRAM_TEXEL_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MIN_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MIN_PROGRAM_TEXEL_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MIN_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MIN_PROGRAM_TEXEL_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_PROGRAM_TEXEL_OFFSET", + "printedName": "MAX_PROGRAM_TEXEL_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_PROGRAM_TEXEL_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_PROGRAM_TEXEL_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24MAX_PROGRAM_TEXEL_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VARYING_COMPONENTS", + "printedName": "MAX_VARYING_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VARYING_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_VARYING_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VARYING_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_VARYING_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAGMENT_SHADER_DERIVATIVE_HINT", + "printedName": "FRAGMENT_SHADER_DERIVATIVE_HINT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAGMENT_SHADER_DERIVATIVE_HINT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAGMENT_SHADER_DERIVATIVE_HINTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAGMENT_SHADER_DERIVATIVE_HINT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAGMENT_SHADER_DERIVATIVE_HINTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RASTERIZER_DISCARD", + "printedName": "RASTERIZER_DISCARD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RASTERIZER_DISCARD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18RASTERIZER_DISCARDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RASTERIZER_DISCARD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18RASTERIZER_DISCARDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ARRAY_BINDING", + "printedName": "VERTEX_ARRAY_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ARRAY_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20VERTEX_ARRAY_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ARRAY_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20VERTEX_ARRAY_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_OUTPUT_COMPONENTS", + "printedName": "MAX_VERTEX_OUTPUT_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_OUTPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28MAX_VERTEX_OUTPUT_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_OUTPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28MAX_VERTEX_OUTPUT_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_INPUT_COMPONENTS", + "printedName": "MAX_FRAGMENT_INPUT_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_INPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_FRAGMENT_INPUT_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_INPUT_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_FRAGMENT_INPUT_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_SERVER_WAIT_TIMEOUT", + "printedName": "MAX_SERVER_WAIT_TIMEOUT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_SERVER_WAIT_TIMEOUT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23MAX_SERVER_WAIT_TIMEOUTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_SERVER_WAIT_TIMEOUT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23MAX_SERVER_WAIT_TIMEOUTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_ELEMENT_INDEX", + "printedName": "MAX_ELEMENT_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_ELEMENT_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17MAX_ELEMENT_INDEXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_ELEMENT_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17MAX_ELEMENT_INDEXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED", + "printedName": "RED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3REDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3REDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8", + "printedName": "RGB8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RGB8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RGB8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8", + "printedName": "RGBA8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGBA8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGBA8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB10_A2", + "printedName": "RGB10_A2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB10_A2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGB10_A2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB10_A2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGB10_A2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_3D", + "printedName": "TEXTURE_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10TEXTURE_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10TEXTURE_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_R", + "printedName": "TEXTURE_WRAP_R", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_WRAP_R", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14TEXTURE_WRAP_Rs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_WRAP_R", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14TEXTURE_WRAP_Rs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MIN_LOD", + "printedName": "TEXTURE_MIN_LOD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MIN_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MIN_LODs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MIN_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MIN_LODs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_LOD", + "printedName": "TEXTURE_MAX_LOD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MAX_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MAX_LODs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MAX_LOD", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TEXTURE_MAX_LODs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BASE_LEVEL", + "printedName": "TEXTURE_BASE_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BASE_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BASE_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BASE_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TEXTURE_BASE_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAX_LEVEL", + "printedName": "TEXTURE_MAX_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_MAX_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17TEXTURE_MAX_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_MAX_LEVEL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17TEXTURE_MAX_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_COMPARE_MODE", + "printedName": "TEXTURE_COMPARE_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_COMPARE_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_COMPARE_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_COMPARE_FUNC", + "printedName": "TEXTURE_COMPARE_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_COMPARE_FUNC", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_COMPARE_FUNC", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20TEXTURE_COMPARE_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB", + "printedName": "SRGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4SRGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4SRGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8", + "printedName": "SRGB8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5SRGB8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5SRGB8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRGB8_ALPHA8", + "printedName": "SRGB8_ALPHA8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SRGB8_ALPHA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12SRGB8_ALPHA8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SRGB8_ALPHA8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12SRGB8_ALPHA8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPARE_REF_TO_TEXTURE", + "printedName": "COMPARE_REF_TO_TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COMPARE_REF_TO_TEXTURE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22COMPARE_REF_TO_TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COMPARE_REF_TO_TEXTURE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22COMPARE_REF_TO_TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32F", + "printedName": "RGBA32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32F", + "printedName": "RGB32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16F", + "printedName": "RGBA16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F", + "printedName": "RGB16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_2D_ARRAY", + "printedName": "TEXTURE_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16TEXTURE_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16TEXTURE_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_2D_ARRAY", + "printedName": "TEXTURE_BINDING_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_BINDING_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_BINDING_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_BINDING_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_BINDING_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R11F_G11F_B10F", + "printedName": "R11F_G11F_B10F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14R11F_G11F_B10Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14R11F_G11F_B10Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB9_E5", + "printedName": "RGB9_E5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB9_E5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB9_E5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB9_E5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB9_E5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32UI", + "printedName": "RGBA32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32UI", + "printedName": "RGB32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16UI", + "printedName": "RGBA16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8RGBA16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16UI", + "printedName": "RGB16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGB16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8UI", + "printedName": "RGBA8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8UI", + "printedName": "RGB8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32I", + "printedName": "RGBA32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB32I", + "printedName": "RGB32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA16I", + "printedName": "RGBA16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7RGBA16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16I", + "printedName": "RGB16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGB16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8I", + "printedName": "RGBA8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGBA8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RGBA8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8I", + "printedName": "RGB8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGB8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RGB8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED_INTEGER", + "printedName": "RED_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RED_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RED_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RED_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RED_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB_INTEGER", + "printedName": "RGB_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGB_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGB_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA_INTEGER", + "printedName": "RGBA_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12RGBA_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12RGBA_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8", + "printedName": "R8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2R8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2R8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8", + "printedName": "RG8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3RG8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3RG8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16F", + "printedName": "R16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32F", + "printedName": "R32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16F", + "printedName": "RG16F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32F", + "printedName": "RG32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8I", + "printedName": "R8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3R8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3R8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8UI", + "printedName": "R8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16I", + "printedName": "R16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R16UI", + "printedName": "R16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32I", + "printedName": "R32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4R32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32UI", + "printedName": "R32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5R32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8I", + "printedName": "RG8I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RG8Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC4RG8Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8UI", + "printedName": "RG8UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG8UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG8UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16I", + "printedName": "RG16I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG16Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16UI", + "printedName": "RG16UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG16UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG16UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG16UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32I", + "printedName": "RG32I", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Is6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32I", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5RG32Is6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32UI", + "printedName": "RG32UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG32UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG32UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC6RG32UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R8_SNORM", + "printedName": "R8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)R8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8R8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)R8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8R8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG8_SNORM", + "printedName": "RG8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9RG8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC9RG8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB8_SNORM", + "printedName": "RGB8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA8_SNORM", + "printedName": "RGBA8_SNORM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGBA8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGBA8_SNORMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGBA8_SNORM", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11RGBA8_SNORMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB10_A2UI", + "printedName": "RGB10_A2UI", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RGB10_A2UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB10_A2UIs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RGB10_A2UI", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RGB10_A2UIs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_IMMUTABLE_FORMAT", + "printedName": "TEXTURE_IMMUTABLE_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_IMMUTABLE_FORMAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_IMMUTABLE_FORMAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_IMMUTABLE_LEVELS", + "printedName": "TEXTURE_IMMUTABLE_LEVELS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TEXTURE_IMMUTABLE_LEVELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_LEVELSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TEXTURE_IMMUTABLE_LEVELS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24TEXTURE_IMMUTABLE_LEVELSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_2_10_10_10_REV", + "printedName": "UNSIGNED_INT_2_10_10_10_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27UNSIGNED_INT_2_10_10_10_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27UNSIGNED_INT_2_10_10_10_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_10F_11F_11F_REV", + "printedName": "UNSIGNED_INT_10F_11F_11F_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_10F_11F_11F_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28UNSIGNED_INT_10F_11F_11F_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_10F_11F_11F_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC28UNSIGNED_INT_10F_11F_11F_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_5_9_9_9_REV", + "printedName": "UNSIGNED_INT_5_9_9_9_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_5_9_9_9_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24UNSIGNED_INT_5_9_9_9_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_5_9_9_9_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24UNSIGNED_INT_5_9_9_9_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_32_UNSIGNED_INT_24_8_REV", + "printedName": "FLOAT_32_UNSIGNED_INT_24_8_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_32_UNSIGNED_INT_24_8_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30FLOAT_32_UNSIGNED_INT_24_8_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_32_UNSIGNED_INT_24_8_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30FLOAT_32_UNSIGNED_INT_24_8_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_24_8", + "printedName": "UNSIGNED_INT_24_8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_24_8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_24_8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_24_8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_24_8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HALF_FLOAT", + "printedName": "HALF_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)HALF_FLOAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10HALF_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)HALF_FLOAT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10HALF_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG", + "printedName": "RG", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2RGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC2RGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG_INTEGER", + "printedName": "RG_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RG_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RG_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RG_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10RG_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_2_10_10_10_REV", + "printedName": "INT_2_10_10_10_REV", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18INT_2_10_10_10_REVs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_2_10_10_10_REV", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18INT_2_10_10_10_REVs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "QUERY_RESULT_AVAILABLE", + "printedName": "QUERY_RESULT_AVAILABLE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)QUERY_RESULT_AVAILABLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22QUERY_RESULT_AVAILABLEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)QUERY_RESULT_AVAILABLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22QUERY_RESULT_AVAILABLEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "QUERY_RESULT", + "printedName": "QUERY_RESULT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)QUERY_RESULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12QUERY_RESULTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)QUERY_RESULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12QUERY_RESULTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_QUERY", + "printedName": "CURRENT_QUERY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)CURRENT_QUERY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13CURRENT_QUERYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)CURRENT_QUERY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13CURRENT_QUERYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ANY_SAMPLES_PASSED", + "printedName": "ANY_SAMPLES_PASSED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ANY_SAMPLES_PASSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18ANY_SAMPLES_PASSEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ANY_SAMPLES_PASSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18ANY_SAMPLES_PASSEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ANY_SAMPLES_PASSED_CONSERVATIVE", + "printedName": "ANY_SAMPLES_PASSED_CONSERVATIVE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ANY_SAMPLES_PASSED_CONSERVATIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31ANY_SAMPLES_PASSED_CONSERVATIVEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ANY_SAMPLES_PASSED_CONSERVATIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31ANY_SAMPLES_PASSED_CONSERVATIVEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_DRAW_BUFFERS", + "printedName": "MAX_DRAW_BUFFERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_DRAW_BUFFERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16MAX_DRAW_BUFFERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_DRAW_BUFFERS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16MAX_DRAW_BUFFERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER0", + "printedName": "DRAW_BUFFER0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER0", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER0", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER1", + "printedName": "DRAW_BUFFER1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER2", + "printedName": "DRAW_BUFFER2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER3", + "printedName": "DRAW_BUFFER3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER4", + "printedName": "DRAW_BUFFER4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER5", + "printedName": "DRAW_BUFFER5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER6", + "printedName": "DRAW_BUFFER6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER7", + "printedName": "DRAW_BUFFER7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER8", + "printedName": "DRAW_BUFFER8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER9", + "printedName": "DRAW_BUFFER9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DRAW_BUFFER9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER10", + "printedName": "DRAW_BUFFER10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER11", + "printedName": "DRAW_BUFFER11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER12", + "printedName": "DRAW_BUFFER12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER13", + "printedName": "DRAW_BUFFER13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER14", + "printedName": "DRAW_BUFFER14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER15", + "printedName": "DRAW_BUFFER15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_BUFFER15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_BUFFER15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DRAW_BUFFER15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COLOR_ATTACHMENTS", + "printedName": "MAX_COLOR_ATTACHMENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COLOR_ATTACHMENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_COLOR_ATTACHMENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COLOR_ATTACHMENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21MAX_COLOR_ATTACHMENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT1", + "printedName": "COLOR_ATTACHMENT1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT1", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT2", + "printedName": "COLOR_ATTACHMENT2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT3", + "printedName": "COLOR_ATTACHMENT3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT4", + "printedName": "COLOR_ATTACHMENT4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT5", + "printedName": "COLOR_ATTACHMENT5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT5", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT6", + "printedName": "COLOR_ATTACHMENT6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT6", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT7", + "printedName": "COLOR_ATTACHMENT7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT7", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT8", + "printedName": "COLOR_ATTACHMENT8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT9", + "printedName": "COLOR_ATTACHMENT9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT9", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COLOR_ATTACHMENT9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT10", + "printedName": "COLOR_ATTACHMENT10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT10", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT11", + "printedName": "COLOR_ATTACHMENT11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT11", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT12", + "printedName": "COLOR_ATTACHMENT12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT12", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT13", + "printedName": "COLOR_ATTACHMENT13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT13", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT14", + "printedName": "COLOR_ATTACHMENT14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT14", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT15", + "printedName": "COLOR_ATTACHMENT15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR_ATTACHMENT15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR_ATTACHMENT15", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18COLOR_ATTACHMENT15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_3D", + "printedName": "SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_SHADOW", + "printedName": "SAMPLER_2D_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SAMPLER_2D_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SAMPLER_2D_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_ARRAY", + "printedName": "SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D_ARRAY_SHADOW", + "printedName": "SAMPLER_2D_ARRAY_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_2D_ARRAY_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SAMPLER_2D_ARRAY_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_2D_ARRAY_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SAMPLER_2D_ARRAY_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_CUBE_SHADOW", + "printedName": "SAMPLER_CUBE_SHADOW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_CUBE_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19SAMPLER_CUBE_SHADOWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_CUBE_SHADOW", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19SAMPLER_CUBE_SHADOWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_2D", + "printedName": "INT_SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_3D", + "printedName": "INT_SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14INT_SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_CUBE", + "printedName": "INT_SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16INT_SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16INT_SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_SAMPLER_2D_ARRAY", + "printedName": "INT_SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20INT_SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20INT_SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_2D", + "printedName": "UNSIGNED_INT_SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_2D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_3D", + "printedName": "UNSIGNED_INT_SAMPLER_3D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_3Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_3D", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNSIGNED_INT_SAMPLER_3Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_CUBE", + "printedName": "UNSIGNED_INT_SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25UNSIGNED_INT_SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_CUBE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25UNSIGNED_INT_SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_SAMPLER_2D_ARRAY", + "printedName": "UNSIGNED_INT_SAMPLER_2D_ARRAY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNSIGNED_INT_SAMPLER_2D_ARRAYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_SAMPLER_2D_ARRAY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNSIGNED_INT_SAMPLER_2D_ARRAYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_SAMPLES", + "printedName": "MAX_SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11MAX_SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11MAX_SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_BINDING", + "printedName": "SAMPLER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SAMPLER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15SAMPLER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SAMPLER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15SAMPLER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_PACK_BUFFER", + "printedName": "PIXEL_PACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_PACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17PIXEL_PACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_PACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17PIXEL_PACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_UNPACK_BUFFER", + "printedName": "PIXEL_UNPACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_UNPACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19PIXEL_UNPACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_UNPACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19PIXEL_UNPACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_PACK_BUFFER_BINDING", + "printedName": "PIXEL_PACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_PACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25PIXEL_PACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_PACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25PIXEL_PACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PIXEL_UNPACK_BUFFER_BINDING", + "printedName": "PIXEL_UNPACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)PIXEL_UNPACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27PIXEL_UNPACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)PIXEL_UNPACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27PIXEL_UNPACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_READ_BUFFER", + "printedName": "COPY_READ_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16COPY_READ_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_READ_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16COPY_READ_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_WRITE_BUFFER", + "printedName": "COPY_WRITE_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_WRITE_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COPY_WRITE_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_WRITE_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17COPY_WRITE_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_READ_BUFFER_BINDING", + "printedName": "COPY_READ_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_READ_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24COPY_READ_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_READ_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24COPY_READ_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COPY_WRITE_BUFFER_BINDING", + "printedName": "COPY_WRITE_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COPY_WRITE_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25COPY_WRITE_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COPY_WRITE_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25COPY_WRITE_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2x3", + "printedName": "FLOAT_MAT2x3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT2x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT2x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2x4", + "printedName": "FLOAT_MAT2x4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT2x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT2x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT2x4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3x2", + "printedName": "FLOAT_MAT3x2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT3x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT3x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3x4", + "printedName": "FLOAT_MAT3x4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT3x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT3x4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT3x4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4x2", + "printedName": "FLOAT_MAT4x2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT4x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT4x2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4x3", + "printedName": "FLOAT_MAT4x3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FLOAT_MAT4x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FLOAT_MAT4x3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12FLOAT_MAT4x3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC2", + "printedName": "UNSIGNED_INT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC2", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC3", + "printedName": "UNSIGNED_INT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC3", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_VEC4", + "printedName": "UNSIGNED_INT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_INT_VEC4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_INT_VEC4", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17UNSIGNED_INT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED", + "printedName": "UNSIGNED_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNSIGNED_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNSIGNED_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SIGNED_NORMALIZED", + "printedName": "SIGNED_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SIGNED_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SIGNED_NORMALIZED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17SIGNED_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_INTEGER", + "printedName": "VERTEX_ATTRIB_ARRAY_INTEGER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ATTRIB_ARRAY_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_INTEGERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ATTRIB_ARRAY_INTEGER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_INTEGERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_DIVISOR", + "printedName": "VERTEX_ATTRIB_ARRAY_DIVISOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)VERTEX_ATTRIB_ARRAY_DIVISOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_DIVISORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)VERTEX_ATTRIB_ARRAY_DIVISOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27VERTEX_ATTRIB_ARRAY_DIVISORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_MODE", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_MODE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "printedName": "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC42MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC42MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_VARYINGS", + "printedName": "TRANSFORM_FEEDBACK_VARYINGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_VARYINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27TRANSFORM_FEEDBACK_VARYINGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_VARYINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27TRANSFORM_FEEDBACK_VARYINGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_START", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_START", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31TRANSFORM_FEEDBACK_BUFFER_STARTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31TRANSFORM_FEEDBACK_BUFFER_STARTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_SIZE", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC30TRANSFORM_FEEDBACK_BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "printedName": "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37TRANSFORM_FEEDBACK_PRIMITIVES_WRITTENs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37TRANSFORM_FEEDBACK_PRIMITIVES_WRITTENs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "printedName": "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC45MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC45MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "printedName": "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC39MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC39MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INTERLEAVED_ATTRIBS", + "printedName": "INTERLEAVED_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INTERLEAVED_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19INTERLEAVED_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INTERLEAVED_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19INTERLEAVED_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SEPARATE_ATTRIBS", + "printedName": "SEPARATE_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SEPARATE_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SEPARATE_ATTRIBS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16SEPARATE_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER", + "printedName": "TRANSFORM_FEEDBACK_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BUFFER_BINDING", + "printedName": "TRANSFORM_FEEDBACK_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33TRANSFORM_FEEDBACK_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33TRANSFORM_FEEDBACK_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK", + "printedName": "TRANSFORM_FEEDBACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TRANSFORM_FEEDBACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18TRANSFORM_FEEDBACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_PAUSED", + "printedName": "TRANSFORM_FEEDBACK_PAUSED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_PAUSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_PAUSEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_PAUSED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_PAUSEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_ACTIVE", + "printedName": "TRANSFORM_FEEDBACK_ACTIVE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_ACTIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_ACTIVEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_ACTIVE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25TRANSFORM_FEEDBACK_ACTIVEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRANSFORM_FEEDBACK_BINDING", + "printedName": "TRANSFORM_FEEDBACK_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TRANSFORM_FEEDBACK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26TRANSFORM_FEEDBACK_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TRANSFORM_FEEDBACK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26TRANSFORM_FEEDBACK_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "printedName": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COLOR_ENCODINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COLOR_ENCODINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC37FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAMEBUFFER_ATTACHMENT_RED_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_RED_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31FRAMEBUFFER_ATTACHMENT_RED_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_GREEN_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_GREEN_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC32FRAMEBUFFER_ATTACHMENT_BLUE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC32FRAMEBUFFER_ATTACHMENT_BLUE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_ALPHA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_ALPHA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_DEPTH_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC33FRAMEBUFFER_ATTACHMENT_DEPTH_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "printedName": "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC35FRAMEBUFFER_ATTACHMENT_STENCIL_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC35FRAMEBUFFER_ATTACHMENT_STENCIL_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_DEFAULT", + "printedName": "FRAMEBUFFER_DEFAULT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_DEFAULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19FRAMEBUFFER_DEFAULTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_DEFAULT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19FRAMEBUFFER_DEFAULTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL_ATTACHMENT", + "printedName": "DEPTH_STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL_ATTACHMENT", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL_ATTACHMENT", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL", + "printedName": "DEPTH_STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DEPTH_STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13DEPTH_STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "DEPTH_STENCIL", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH24_STENCIL8", + "printedName": "DEPTH24_STENCIL8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH24_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DEPTH24_STENCIL8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH24_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DEPTH24_STENCIL8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_FRAMEBUFFER_BINDING", + "printedName": "DRAW_FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DRAW_FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24DRAW_FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "READ_FRAMEBUFFER", + "printedName": "READ_FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16READ_FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16READ_FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_FRAMEBUFFER", + "printedName": "DRAW_FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DRAW_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DRAW_FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DRAW_FRAMEBUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16DRAW_FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "READ_FRAMEBUFFER_BINDING", + "printedName": "READ_FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)READ_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24READ_FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)READ_FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC24READ_FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_SAMPLES", + "printedName": "RENDERBUFFER_SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)RENDERBUFFER_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20RENDERBUFFER_SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)RENDERBUFFER_SAMPLES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20RENDERBUFFER_SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "printedName": "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC34FRAMEBUFFER_INCOMPLETE_MULTISAMPLEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC34FRAMEBUFFER_INCOMPLETE_MULTISAMPLEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER", + "printedName": "UNIFORM_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_BINDING", + "printedName": "UNIFORM_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22UNIFORM_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22UNIFORM_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_START", + "printedName": "UNIFORM_BUFFER_START", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_BUFFER_STARTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_START", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_BUFFER_STARTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_SIZE", + "printedName": "UNIFORM_BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_BLOCKS", + "printedName": "MAX_VERTEX_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_VERTEX_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25MAX_VERTEX_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_VERTEX_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC25MAX_VERTEX_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_BLOCKS", + "printedName": "MAX_FRAGMENT_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_FRAGMENT_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_FRAGMENT_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_FRAGMENT_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_FRAGMENT_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_UNIFORM_BLOCKS", + "printedName": "MAX_COMBINED_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_COMBINED_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_COMBINED_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_UNIFORM_BUFFER_BINDINGS", + "printedName": "MAX_UNIFORM_BUFFER_BINDINGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_UNIFORM_BUFFER_BINDINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_UNIFORM_BUFFER_BINDINGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_UNIFORM_BUFFER_BINDINGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC27MAX_UNIFORM_BUFFER_BINDINGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_UNIFORM_BLOCK_SIZE", + "printedName": "MAX_UNIFORM_BLOCK_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_UNIFORM_BLOCK_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_UNIFORM_BLOCK_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_UNIFORM_BLOCK_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC22MAX_UNIFORM_BLOCK_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "printedName": "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC38MAX_COMBINED_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC38MAX_COMBINED_VERTEX_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "printedName": "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC40MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC40MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "printedName": "UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31UNIFORM_BUFFER_OFFSET_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC31UNIFORM_BUFFER_OFFSET_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_UNIFORM_BLOCKS", + "printedName": "ACTIVE_UNIFORM_BLOCKS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ACTIVE_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21ACTIVE_UNIFORM_BLOCKSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ACTIVE_UNIFORM_BLOCKS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21ACTIVE_UNIFORM_BLOCKSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_TYPE", + "printedName": "UNIFORM_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_SIZE", + "printedName": "UNIFORM_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12UNIFORM_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_INDEX", + "printedName": "UNIFORM_BLOCK_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BLOCK_INDEXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19UNIFORM_BLOCK_INDEXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_OFFSET", + "printedName": "UNIFORM_OFFSET", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_OFFSETs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_OFFSET", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14UNIFORM_OFFSETs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_ARRAY_STRIDE", + "printedName": "UNIFORM_ARRAY_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_ARRAY_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_ARRAY_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_MATRIX_STRIDE", + "printedName": "UNIFORM_MATRIX_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_MATRIX_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_MATRIX_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_MATRIX_STRIDE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_MATRIX_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_IS_ROW_MAJOR", + "printedName": "UNIFORM_IS_ROW_MAJOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_IS_ROW_MAJOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_IS_ROW_MAJORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_IS_ROW_MAJOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC20UNIFORM_IS_ROW_MAJORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_BINDING", + "printedName": "UNIFORM_BLOCK_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_BLOCK_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_BINDING", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC21UNIFORM_BLOCK_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_DATA_SIZE", + "printedName": "UNIFORM_BLOCK_DATA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_DATA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNIFORM_BLOCK_DATA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_DATA_SIZE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23UNIFORM_BLOCK_DATA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "printedName": "UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNIFORM_BLOCK_ACTIVE_UNIFORMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29UNIFORM_BLOCK_ACTIVE_UNIFORMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "printedName": "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC021UNIFORM_BLOCK_ACTIVE_G8_INDICESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC021UNIFORM_BLOCK_ACTIVE_G8_INDICESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "printedName": "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC41UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC41UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "printedName": "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC43UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC43UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "OBJECT_TYPE", + "printedName": "OBJECT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)OBJECT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11OBJECT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)OBJECT_TYPE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11OBJECT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_CONDITION", + "printedName": "SYNC_CONDITION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_CONDITION", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14SYNC_CONDITIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_CONDITION", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC14SYNC_CONDITIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_STATUS", + "printedName": "SYNC_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_STATUS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11SYNC_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_STATUS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11SYNC_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FLAGS", + "printedName": "SYNC_FLAGS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FLAGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FLAGSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FLAGS", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FLAGSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FENCE", + "printedName": "SYNC_FENCE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FENCE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FENCEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FENCE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10SYNC_FENCEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_GPU_COMMANDS_COMPLETE", + "printedName": "SYNC_GPU_COMMANDS_COMPLETE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_GPU_COMMANDS_COMPLETE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26SYNC_GPU_COMMANDS_COMPLETEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_GPU_COMMANDS_COMPLETE", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC26SYNC_GPU_COMMANDS_COMPLETEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNALED", + "printedName": "UNSIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)UNSIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10UNSIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)UNSIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC10UNSIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SIGNALED", + "printedName": "SIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8SIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC8SIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALREADY_SIGNALED", + "printedName": "ALREADY_SIGNALED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)ALREADY_SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16ALREADY_SIGNALEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)ALREADY_SIGNALED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC16ALREADY_SIGNALEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TIMEOUT_EXPIRED", + "printedName": "TIMEOUT_EXPIRED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TIMEOUT_EXPIRED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_EXPIREDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TIMEOUT_EXPIRED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_EXPIREDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONDITION_SATISFIED", + "printedName": "CONDITION_SATISFIED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)CONDITION_SATISFIED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19CONDITION_SATISFIEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)CONDITION_SATISFIED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC19CONDITION_SATISFIEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "WAIT_FAILED", + "printedName": "WAIT_FAILED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)WAIT_FAILED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11WAIT_FAILEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)WAIT_FAILED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11WAIT_FAILEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SYNC_FLUSH_COMMANDS_BIT", + "printedName": "SYNC_FLUSH_COMMANDS_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)SYNC_FLUSH_COMMANDS_BIT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SYNC_FLUSH_COMMANDS_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)SYNC_FLUSH_COMMANDS_BIT", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC23SYNC_FLUSH_COMMANDS_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR", + "printedName": "COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)COLOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)COLOR", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH", + "printedName": "DEPTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5DEPTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC5DEPTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL", + "printedName": "STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STENCIL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC7STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIN", + "printedName": "MIN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MIN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MINs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MIN", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MINs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX", + "printedName": "MAX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MAXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC3MAXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT24", + "printedName": "DEPTH_COMPONENT24", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_COMPONENT24", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH_COMPONENT24s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_COMPONENT24", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH_COMPONENT24s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_READ", + "printedName": "STREAM_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STREAM_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STREAM_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_COPY", + "printedName": "STREAM_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STREAM_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STREAM_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STREAM_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_READ", + "printedName": "STATIC_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STATIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STATIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_COPY", + "printedName": "STATIC_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)STATIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)STATIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC11STATIC_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_READ", + "printedName": "DYNAMIC_READ", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DYNAMIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_READs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DYNAMIC_READ", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_READs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_COPY", + "printedName": "DYNAMIC_COPY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DYNAMIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_COPYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DYNAMIC_COPY", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC12DYNAMIC_COPYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT32F", + "printedName": "DEPTH_COMPONENT32F", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH_COMPONENT32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18DEPTH_COMPONENT32Fs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH_COMPONENT32F", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC18DEPTH_COMPONENT32Fs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH32F_STENCIL8", + "printedName": "DEPTH32F_STENCIL8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)DEPTH32F_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH32F_STENCIL8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)DEPTH32F_STENCIL8", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC17DEPTH32F_STENCIL8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_INDEX", + "printedName": "INVALID_INDEX", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)INVALID_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13INVALID_INDEXSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)INVALID_INDEX", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC13INVALID_INDEXSivg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TIMEOUT_IGNORED", + "printedName": "TIMEOUT_IGNORED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)TIMEOUT_IGNORED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_IGNOREDs6UInt64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)TIMEOUT_IGNORED", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC15TIMEOUT_IGNOREDs6UInt64Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "printedName": "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(py)MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_CLIENT_WAIT_TIMEOUT_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext(im)MAX_CLIENT_WAIT_TIMEOUT_WEBGL", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC29MAX_CLIENT_WAIT_TIMEOUT_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGL2RenderingContext", + "mangledName": "$s12CanvasNative25TNSWebGL2RenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGL2RenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSWebGLRenderingContext", + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_pvrtc", + "printedName": "TNS_WEBGL_compressed_texture_pvrtc", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_pvrtc", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_pvrtc", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)init", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "printedName": "COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_4BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGB_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_4BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "printedName": "COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_4BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_4BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "printedName": "COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_2BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGB_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC31COMPRESSED_RGB_PVRTC_2BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "printedName": "COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(py)COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_2BPPV1_IMGs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc(im)COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC32COMPRESSED_RGBA_PVRTC_2BPPV1_IMGs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_pvrtc", + "mangledName": "$s12CanvasNative34TNS_WEBGL_compressed_texture_pvrtcC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_pvrtc", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLineCap", + "printedName": "TNSLineCap", + "children": [ + { + "kind": "Var", + "name": "Butt", + "printedName": "Butt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapButt", + "mangledName": "$s12CanvasNative10TNSLineCapO4ButtyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Round", + "printedName": "Round", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapRound", + "mangledName": "$s12CanvasNative10TNSLineCapO5RoundyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Square", + "printedName": "Square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSLineCap.Type) -> CanvasNative.TNSLineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSLineCap.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSLineCap@TNSLineCapSquare", + "mangledName": "$s12CanvasNative10TNSLineCapO6SquareyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10TNSLineCapO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10TNSLineCapO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineCap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10TNSLineCapO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative10TNSLineCapO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSLineCap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10TNSLineCapO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative10TNSLineCapO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSLineCap", + "mangledName": "$s12CanvasNative10TNSLineCapO", + "moduleName": "CanvasNative", + "objc_name": "TNSLineCap", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPath2D", + "printedName": "TNSPath2D", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)init", + "mangledName": "$s12CanvasNative9TNSPath2DCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)initWithPath:", + "mangledName": "$s12CanvasNative9TNSPath2DC4pathA2C_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)initWithData:", + "mangledName": "$s12CanvasNative9TNSPath2DC4dataACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addPath", + "printedName": "addPath(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)addPath:", + "mangledName": "$s12CanvasNative9TNSPath2DC7addPathyyACF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addPath", + "printedName": "addPath(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSDOMMatrix?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)addPath::", + "mangledName": "$s12CanvasNative9TNSPath2DC7addPathyyAC_AA12TNSDOMMatrixCSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closePath", + "printedName": "closePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)closePath", + "mangledName": "$s12CanvasNative9TNSPath2DC9closePathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveTo", + "printedName": "moveTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)moveTo::", + "mangledName": "$s12CanvasNative9TNSPath2DC6moveToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineTo", + "printedName": "lineTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)lineTo::", + "mangledName": "$s12CanvasNative9TNSPath2DC6lineToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bezierCurveTo", + "printedName": "bezierCurveTo(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)bezierCurveTo::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC13bezierCurveToyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quadraticCurveTo", + "printedName": "quadraticCurveTo(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)quadraticCurveTo::::", + "mangledName": "$s12CanvasNative9TNSPath2DC16quadraticCurveToyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arc:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC3arcyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arc::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC3arcyySf_S4fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arcTo", + "printedName": "arcTo(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)arcTo:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC5arcToyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)ellipse:::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC7ellipseyySf_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)ellipse::::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC7ellipseyySf_S6fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rect", + "printedName": "rect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)rect::::", + "mangledName": "$s12CanvasNative9TNSPath2DC4rectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRect::::::::", + "mangledName": "$s12CanvasNative9TNSPath2DC9roundRectyySf_S7ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRectWithRadii", + "printedName": "roundRectWithRadii(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRectWithRadii:::::", + "mangledName": "$s12CanvasNative9TNSPath2DC18roundRectWithRadiiyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:radii:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D(im)roundRectWithX:y:width:height:radii:", + "mangledName": "$s12CanvasNative9TNSPath2DC9roundRect1x1y5width6height5radiiySf_S3fSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D", + "mangledName": "$s12CanvasNative9TNSPath2DC", + "moduleName": "CanvasNative", + "objc_name": "TNSPath2D", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_half_float", + "printedName": "TNS_OES_texture_half_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_half_float", + "printedName": "CanvasNative.TNS_OES_texture_half_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(im)init", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "HALF_FLOAT_OES", + "printedName": "HALF_FLOAT_OES", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(py)HALF_FLOAT_OES", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC011HALF_FLOAT_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float(im)HALF_FLOAT_OES", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC011HALF_FLOAT_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float", + "mangledName": "$s12CanvasNative26TNS_OES_texture_half_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_half_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextDecoder", + "printedName": "TNSTextDecoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDecoder", + "printedName": "CanvasNative.TNSTextDecoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)init", + "mangledName": "$s12CanvasNative14TNSTextDecoderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encoding:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextDecoder", + "printedName": "CanvasNative.TNSTextDecoder", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)initWithEncoding:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingACSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(py)encoding", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)encoding", + "mangledName": "$s12CanvasNative14TNSTextDecoderC8encodingSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6bufferSS10Foundation4DataV_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6buffer6offsetSS10Foundation4DataV_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(buffer:offset:length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBuffer:offset:length:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode6buffer6offset6lengthSS10Foundation4DataV_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU8::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2u8_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u8:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU8::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2u8_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32::", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32_SSSv_SitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32::offset:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32_6offsetSSSv_S2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithBytes:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode5bytesSSSays5UInt8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI8:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode2i8SSSays4Int8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU16:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u16SSSays6UInt16VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI16:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i16SSSays5Int16VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithI32:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3i32SSSays5Int32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder(im)decodeWithU32:", + "mangledName": "$s12CanvasNative14TNSTextDecoderC6decode3u32SSSays6UInt32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextDecoder", + "mangledName": "$s12CanvasNative14TNSTextDecoderC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextDecoder", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLActiveInfo", + "printedName": "TNSWebGLActiveInfo", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)name", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4nameSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)name", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4nameSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)size", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4sizes5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)size", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4sizes5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(py)type", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4types6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)type", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4types6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:size:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)initWithName:size:type:", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC4name4size4typeACSS_s5Int32Vs6UInt32Vtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo(im)init", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo", + "mangledName": "$s12CanvasNative18TNSWebGLActiveInfoC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLActiveInfo", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "CoreVideo", + "printedName": "CoreVideo", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSRender", + "printedName": "TNSRender", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender(im)init", + "mangledName": "$s12CanvasNative9TNSRenderCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createSurface", + "printedName": "createSurface()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender(im)createSurface", + "mangledName": "$s12CanvasNative9TNSRenderC13createSurfaceyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender", + "mangledName": "$s12CanvasNative9TNSRenderC", + "moduleName": "CanvasNative", + "objc_name": "TNSRender", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSSVG", + "printedName": "TNSSVG", + "children": [ + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative6TNSSVGC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "src", + "printedName": "src", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)src", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)src", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setSrc:", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC3srcSSSgvM", + "mangledName": "$s12CanvasNative6TNSSVGC3srcSSSgvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "srcPath", + "printedName": "srcPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(py)srcPath", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)srcPath", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)setSrcPath:", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative6TNSSVGC7srcPathSSSgvM", + "mangledName": "$s12CanvasNative6TNSSVGC7srcPathSSSgvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)layoutSubviews", + "mangledName": "$s12CanvasNative6TNSSVGC14layoutSubviewsyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSSVG", + "printedName": "CanvasNative.TNSSVG", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)initWithFrame:", + "mangledName": "$s12CanvasNative6TNSSVGC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)drawRect:", + "mangledName": "$s12CanvasNative6TNSSVGC4drawyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toImage", + "printedName": "toImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)toImage", + "mangledName": "$s12CanvasNative6TNSSVGC7toImageSo7UIImageCSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toData", + "printedName": "toData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSData?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG(im)toData", + "mangledName": "$s12CanvasNative6TNSSVGC6toDataSo6NSDataCSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSSVG", + "mangledName": "$s12CanvasNative6TNSSVGC", + "moduleName": "CanvasNative", + "objc_name": "TNSSVG", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLRenderingContext", + "printedName": "TNSWebGLRenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCyAcA9TNSCanvasCcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCyAcA9TNSCanvasC_SDySSypGtcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getCanvas", + "printedName": "getCanvas()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getCanvas", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC03getA0AA9TNSCanvasCyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "drawingBufferWidth", + "printedName": "drawingBufferWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)drawingBufferWidth", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18drawingBufferWidths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawingBufferWidth", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18drawingBufferWidths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferHeight", + "printedName": "drawingBufferHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)drawingBufferHeight", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19drawingBufferHeights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawingBufferHeight", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19drawingBufferHeights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "activeTexture", + "printedName": "activeTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)activeTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13activeTextureyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attachShader", + "printedName": "attachShader(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)attachShader::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12attachShaderyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindAttribLocation", + "printedName": "bindAttribLocation(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindAttribLocation:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18bindAttribLocationyys6UInt32V_AFSStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindBuffer", + "printedName": "bindBuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindBuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bindBufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindFramebuffer", + "printedName": "bindFramebuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindFramebuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15bindFramebufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindRenderbuffer", + "printedName": "bindRenderbuffer(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindRenderbuffer::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16bindRenderbufferyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindTexture", + "printedName": "bindTexture(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bindTexture::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11bindTextureyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendColor", + "printedName": "blendColor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendColor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10blendColoryySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendEquation", + "printedName": "blendEquation(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendEquation:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13blendEquationyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendEquationSeparate", + "printedName": "blendEquationSeparate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendEquationSeparate::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21blendEquationSeparateyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendFunc", + "printedName": "blendFunc(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendFunc::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9blendFuncyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blendFuncSeparate", + "printedName": "blendFuncSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)blendFuncSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17blendFuncSeparateyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:size:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:size::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_4size_ys6UInt32V_SiAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG0_ys6UInt32V_So6NSNullCAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i8::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_2i8_ys6UInt32V_Says4Int8VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:size:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData:size::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG04size_ys6UInt32V_SvSiAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:srcData:size:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:srcData:size::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_03srcG04size_6offsetys6UInt32V_SvSiAISitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u8:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u8::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_2u8_ys6UInt32V_Says5UInt8VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i16::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3i16_ys6UInt32V_Says5Int16VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u16:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u16::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3u16_ys6UInt32V_Says6UInt16VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:i32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:i32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3i32_ys6UInt32V_Says5Int32VGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:u32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:u32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3u32_ys6UInt32V_SayAGGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:f32:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:f32::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3f32_ys6UInt32V_SaySfGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferData", + "printedName": "bufferData(_:f64:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferData:f64::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10bufferData_3f64_ys6UInt32V_SaySdGAGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubDatayys6UInt32V_SiSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int8]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__2i8ys6UInt32V_SiSays4Int8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:srcData:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::srcData:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__03srcH04sizeys6UInt32V_SiSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:srcData:size:os:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::srcData:size:os:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__03srcH04size2osys6UInt32V_SiSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__2u8ys6UInt32V_SiSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3i16ys6UInt32V_SiSays5Int16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3u16ys6UInt32V_SiSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:i32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::i32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3i32ys6UInt32V_SiSays5Int32VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::u32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3u32ys6UInt32V_SiSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3f32ys6UInt32V_SiSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bufferSubData", + "printedName": "bufferSubData(_:_:f64:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)bufferSubData::f64:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13bufferSubData__3f64ys6UInt32V_SiSaySdGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFramebufferStatus", + "printedName": "checkFramebufferStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)checkFramebufferStatus:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22checkFramebufferStatusys6UInt32VAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clear:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5clearyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearColor", + "printedName": "clearColor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearColor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10clearColoryySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearDepth", + "printedName": "clearDepth(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearDepth:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10clearDepthyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearStencil", + "printedName": "clearStencil(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)clearStencil:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12clearStencilyys5Int32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "colorMask", + "printedName": "colorMask(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)colorMask::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9colorMaskyySb_S3btF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "commit", + "printedName": "commit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)commit", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6commityyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compileShader", + "printedName": "compileShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compileShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13compileShaderyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexImage2D", + "printedName": "compressedTexImage2D(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compressedTexImage2D:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20compressedTexImage2Dyys6UInt32V_s5Int32VAf3H10Foundation4DataVSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compressedTexSubImage2D", + "printedName": "compressedTexSubImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)compressedTexSubImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23compressedTexSubImage2Dyys6UInt32V_s5Int32VA4hF10Foundation4DataVSgtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexImage2D", + "printedName": "copyTexImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)copyTexImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14copyTexImage2Dyys6UInt32V_s5Int32VAf5HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyTexSubImage2D", + "printedName": "copyTexSubImage2D(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)copyTexSubImage2D::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17copyTexSubImage2Dyys6UInt32V_s5Int32VA6HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createBuffer", + "printedName": "createBuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createBuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12createBuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFramebuffer", + "printedName": "createFramebuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createFramebuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17createFramebuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createProgram", + "printedName": "createProgram()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createProgram", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13createPrograms6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRenderbuffer", + "printedName": "createRenderbuffer()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createRenderbuffer", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18createRenderbuffers6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createShader", + "printedName": "createShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12createShaderys6UInt32VAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTexture", + "printedName": "createTexture()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)createTexture", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13createTextures6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cullFace", + "printedName": "cullFace(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)cullFace:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8cullFaceyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteBuffer", + "printedName": "deleteBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteBuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12deleteBufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteFramebuffer", + "printedName": "deleteFramebuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteFramebuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17deleteFramebufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteProgram", + "printedName": "deleteProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13deleteProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteRenderbuffer", + "printedName": "deleteRenderbuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteRenderbuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18deleteRenderbufferyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteShader", + "printedName": "deleteShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12deleteShaderyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteTexture", + "printedName": "deleteTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)deleteTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13deleteTextureyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthFunc", + "printedName": "depthFunc(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthFunc:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9depthFuncyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthMask", + "printedName": "depthMask(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthMask:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9depthMaskyySbF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "depthRange", + "printedName": "depthRange(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)depthRange::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10depthRangeyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "detachShader", + "printedName": "detachShader(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)detachShader::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12detachShaderyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)disable:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7disableyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableVertexAttribArray", + "printedName": "disableVertexAttribArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)disableVertexAttribArray:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24disableVertexAttribArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawArrays", + "printedName": "drawArrays(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawArrays:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10drawArraysyys6UInt32V_s5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawElements", + "printedName": "drawElements(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)drawElements::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12drawElementsyys6UInt32V_s5Int32VAFSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)enable:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6enableyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableVertexAttribArray", + "printedName": "enableVertexAttribArray(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)enableVertexAttribArray:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23enableVertexAttribArrayyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)finish", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6finishyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)flush", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferRenderbuffer", + "printedName": "framebufferRenderbuffer(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)framebufferRenderbuffer::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23framebufferRenderbufferyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "framebufferTexture2D", + "printedName": "framebufferTexture2D(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)framebufferTexture2D:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20framebufferTexture2Dyys6UInt32V_A3Fs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frontFace", + "printedName": "frontFace(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)frontFace:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9frontFaceyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateMipmap", + "printedName": "generateMipmap(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)generateMipmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14generateMipmapyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveAttrib", + "printedName": "getActiveAttrib(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getActiveAttrib::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getActiveAttribyAA0C12GLActiveInfoCs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveUniform", + "printedName": "getActiveUniform(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLActiveInfo", + "printedName": "CanvasNative.TNSWebGLActiveInfo", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLActiveInfo" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getActiveUniform::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16getActiveUniformyAA0C12GLActiveInfoCs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttachedShaders", + "printedName": "getAttachedShaders(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getAttachedShaders:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getAttachedShadersySays6UInt32VGAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttribLocation", + "printedName": "getAttribLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getAttribLocation::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17getAttribLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBufferParameter", + "printedName": "getBufferParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getBufferParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getBufferParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContextAttributes", + "printedName": "getContextAttributes()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getContextAttributes", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC03getE10AttributesypyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getError", + "printedName": "getError()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getError", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8getErrors6UInt32VyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getExtension", + "printedName": "getExtension(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getExtension:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12getExtensionyypSgSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFramebufferAttachmentParameter", + "printedName": "getFramebufferAttachmentParameter(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSFramebufferAttachmentParameter", + "printedName": "CanvasNative.TNSFramebufferAttachmentParameter", + "usr": "c:@M@CanvasNative@objc(cs)TNSFramebufferAttachmentParameter" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getFramebufferAttachmentParameter:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33getFramebufferAttachmentParameteryAA014TNSFramebufferhI0Cs6UInt32V_A2HtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameter", + "printedName": "getParameter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getParameter:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12getParameteryypSgs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProgramInfoLog", + "printedName": "getProgramInfoLog(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getProgramInfoLog:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17getProgramInfoLogySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProgramParameter", + "printedName": "getProgramParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getProgramParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19getProgramParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRenderbufferParameter", + "printedName": "getRenderbufferParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getRenderbufferParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24getRenderbufferParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderInfoLog", + "printedName": "getShaderInfoLog(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderInfoLog:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16getShaderInfoLogySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderParameter", + "printedName": "getShaderParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getShaderParameteryyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderPrecisionFormat", + "printedName": "getShaderPrecisionFormat(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderPrecisionFormat::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24getShaderPrecisionFormatyAA0c8GLShaderhI0Cs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getShaderSource", + "printedName": "getShaderSource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getShaderSource:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getShaderSourceySSs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSupportedExtensions", + "printedName": "getSupportedExtensions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getSupportedExtensions", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22getSupportedExtensionsSaySSGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTexParameter", + "printedName": "getTexParameter(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getTexParameter::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getTexParameterys5Int32Vs6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniform", + "printedName": "getUniform(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getUniform::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10getUniformyyps6UInt32V_s5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUniformLocation", + "printedName": "getUniformLocation(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getUniformLocation::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18getUniformLocationys5Int32Vs6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVertexAttrib", + "printedName": "getVertexAttrib(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getVertexAttrib::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15getVertexAttribyyps6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVertexAttribOffset", + "printedName": "getVertexAttribOffset(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)getVertexAttribOffset::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21getVertexAttribOffsetySis6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hint", + "printedName": "hint(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)hint::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4hintyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isBuffer", + "printedName": "isBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isBuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8isBufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContextLost", + "printedName": "isContextLost()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isContextLost", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC02isE4LostSbyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isEnabled:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isEnabledySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isFramebuffer", + "printedName": "isFramebuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isFramebuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13isFramebufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isProgram", + "printedName": "isProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isProgramySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRenderbuffer", + "printedName": "isRenderbuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isRenderbuffer:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14isRenderbufferySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isShader", + "printedName": "isShader(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isShader:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8isShaderySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isTexture", + "printedName": "isTexture(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)isTexture:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9isTextureySbs6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineWidth", + "printedName": "lineWidth(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)lineWidth:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9lineWidthyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "linkProgram", + "printedName": "linkProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)linkProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11linkProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pixelStorei", + "printedName": "pixelStorei(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)pixelStorei::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11pixelStoreiyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "polygonOffset", + "printedName": "polygonOffset(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)polygonOffset::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13polygonOffsetyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readPixels", + "printedName": "readPixels(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)readPixels:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10readPixelsyys5Int32V_A3Fs6UInt32VAHSvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readPixels", + "printedName": "readPixels(_:_:_:_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)readPixels:::::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10readPixels_______6offsetys5Int32V_A3Gs6UInt32VAISvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "renderbufferStorage", + "printedName": "renderbufferStorage(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)renderbufferStorage::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19renderbufferStorageyys6UInt32V_AFs5Int32VAHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sampleCoverage", + "printedName": "sampleCoverage(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)sampleCoverage::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14sampleCoverageyySf_SbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scissor", + "printedName": "scissor(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)scissor::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7scissoryys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shaderSource", + "printedName": "shaderSource(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)shaderSource::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12shaderSourceyys6UInt32V_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilFunc", + "printedName": "stencilFunc(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilFunc:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11stencilFuncyys6UInt32V_s5Int32VAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilFuncSeparate", + "printedName": "stencilFuncSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilFuncSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19stencilFuncSeparateyys6UInt32V_AFs5Int32VAFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilMask", + "printedName": "stencilMask(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilMask:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11stencilMaskyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilMaskSeparate", + "printedName": "stencilMaskSeparate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilMaskSeparate::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19stencilMaskSeparateyys6UInt32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilOp", + "printedName": "stencilOp(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilOp:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9stencilOpyys6UInt32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stencilOpSeparate", + "printedName": "stencilOpSeparate(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)stencilOpSeparate::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17stencilOpSeparateyys6UInt32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::data:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________4datays6UInt32V_s5Int32VA4i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________2u8ys6UInt32V_s5Int32VA4i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::pixels:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________6pixels4sizeys6UInt32V_s5Int32VA4j2HSVSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:pixels:size:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawPointer", + "printedName": "Swift.UnsafeRawPointer", + "usr": "s:SV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::pixels:size:offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________6pixels4size6offsetys6UInt32V_s5Int32VA4k2ISVS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3u16ys6UInt32V_s5Int32VA4i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:u32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::u32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3u32ys6UInt32V_s5Int32VA4i2GSayAGGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D________3f32ys6UInt32V_s5Int32VA4i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2Dyys6UInt32V_s5Int32VA4h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:pixels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::pixels:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6pixelsys6UInt32V_s5Int32VAi2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::asset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____5assetys6UInt32V_s5Int32VAi2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::bitmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6bitmapys6UInt32V_s5Int32VAi2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2Dyys6UInt32V_s5Int32VAh2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texImage2D", + "printedName": "texImage2D(_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texImage2D:::::canvas:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10texImage2D_____6canvasys6UInt32V_s5Int32VAi2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texParameterf", + "printedName": "texParameterf(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texParameterf:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texParameterfyys6UInt32V_AFSftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texParameteri", + "printedName": "texParameteri(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texParameteri:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texParameteriyys6UInt32V_AFs5Int32VtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::data:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________4datays6UInt32V_s5Int32VA4i2GSo6NSDataCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:u8:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::u8:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________2u8ys6UInt32V_s5Int32VA4i2GSays5UInt8VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:pixels:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::pixels:size:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________6pixels4sizeys6UInt32V_s5Int32VA4j2HSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:pixels:size:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::pixels:size:offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________6pixels4size6offsetys6UInt32V_s5Int32VA4k2ISvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:u16:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt16]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::u16:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________3u16ys6UInt32V_s5Int32VA4i2GSays6UInt16VGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:f32:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::::f32:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D________3f32ys6UInt32V_s5Int32VA4i2GSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D:::::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2Dyys6UInt32V_s5Int32VA4h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:pixels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::pixels:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6pixelsys6UInt32V_s5Int32VA2i2GSo7UIImageCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::asset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______5assetys6UInt32V_s5Int32VA2i2gA13TNSImageAssetCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:bitmap:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::bitmap:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6bitmapys6UInt32V_s5Int32VA2i2gA14TNSImageBitmapCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D::::::canvas:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2D______6canvasys6UInt32V_s5Int32VA2i2gA9TNSCanvasCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "texSubImage2D", + "printedName": "texSubImage2D(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "NSNull", + "printedName": "Foundation.NSNull", + "usr": "c:objc(cs)NSNull" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)texSubImage2D:::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13texSubImage2Dyys6UInt32V_s5Int32VA2h2FSo6NSNullCtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1f", + "printedName": "uniform1f(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1f::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform1fyys5Int32V_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1fv", + "printedName": "uniform1fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1fv", + "printedName": "uniform1fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1i", + "printedName": "uniform1i(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1i::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform1iyys5Int32V_AFtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1iv", + "printedName": "uniform1iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform1iv", + "printedName": "uniform1iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform1iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform1iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2f", + "printedName": "uniform2f(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2f:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform2fyys5Int32V_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2fv", + "printedName": "uniform2fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2fv", + "printedName": "uniform2fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2i", + "printedName": "uniform2i(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2i:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform2iyys5Int32V_A2FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2iv", + "printedName": "uniform2iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform2iv", + "printedName": "uniform2iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform2iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform2iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3f", + "printedName": "uniform3f(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3f::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform3fyys5Int32V_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3fv", + "printedName": "uniform3fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3fv", + "printedName": "uniform3fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3i", + "printedName": "uniform3i(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3i::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform3iyys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3iv", + "printedName": "uniform3iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform3iv", + "printedName": "uniform3iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform3iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform3iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4f", + "printedName": "uniform4f(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4f:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform4fyys5Int32V_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4fv", + "printedName": "uniform4fv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4fv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4fvyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4fv", + "printedName": "uniform4fv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4fv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4fv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4i", + "printedName": "uniform4i(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4i:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9uniform4iyys5Int32V_A4FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4iv", + "printedName": "uniform4iv(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4iv:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4ivyys5Int32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniform4iv", + "printedName": "uniform4iv(_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniform4iv:::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10uniform4iv___6offsetys5Int32V_SvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2fv", + "printedName": "uniformMatrix2fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix2fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix2fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix2fv", + "printedName": "uniformMatrix2fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix2fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix2fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3fv", + "printedName": "uniformMatrix3fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix3fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix3fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix3fv", + "printedName": "uniformMatrix3fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix3fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix3fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4fv", + "printedName": "uniformMatrix4fv(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix4fv::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix4fvyys5Int32V_SbSvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uniformMatrix4fv", + "printedName": "uniformMatrix4fv(_:_:_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)uniformMatrix4fv::::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16uniformMatrix4fv____6offsetys5Int32V_SbSvS2itF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "useProgram", + "printedName": "useProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)useProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10useProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateProgram", + "printedName": "validateProgram(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)validateProgram:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15validateProgramyys6UInt32VF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1f", + "printedName": "vertexAttrib1f(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1f::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib1fyys6UInt32V_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2f", + "printedName": "vertexAttrib2f(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2f:::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib2fyys6UInt32V_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3f", + "printedName": "vertexAttrib3f(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3f::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib3fyys6UInt32V_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4f", + "printedName": "vertexAttrib4f(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4f:::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14vertexAttrib4fyys6UInt32V_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1fv", + "printedName": "vertexAttrib1fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib1fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib1fv", + "printedName": "vertexAttrib1fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib1fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib1fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2fv", + "printedName": "vertexAttrib2fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib2fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib2fv", + "printedName": "vertexAttrib2fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib2fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib2fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3fv", + "printedName": "vertexAttrib3fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib3fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib3fv", + "printedName": "vertexAttrib3fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib3fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib3fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4fv", + "printedName": "vertexAttrib4fv(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4fv::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib4fvyys6UInt32V_SvtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttrib4fv", + "printedName": "vertexAttrib4fv(_:_:offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttrib4fv::offset:", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15vertexAttrib4fv__6offsetys6UInt32V_SvSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "vertexAttribPointer", + "printedName": "vertexAttribPointer(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)vertexAttribPointer::::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19vertexAttribPointeryys6UInt32V_s5Int32VAFSbAHSitF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewport", + "printedName": "viewport(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)viewport::::", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8viewportyys5Int32V_A3FtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "DEPTH_BUFFER_BIT", + "printedName": "DEPTH_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_BUFFER_BIT", + "printedName": "COLOR_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16COLOR_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16COLOR_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BUFFER_BIT", + "printedName": "STENCIL_BUFFER_BIT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_BUFFER_BITs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BUFFER_BIT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_BUFFER_BITs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POINTS", + "printedName": "POINTS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POINTS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6POINTSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POINTS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6POINTSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINES", + "printedName": "LINES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5LINESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5LINESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_LOOP", + "printedName": "LINE_LOOP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_LOOP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LINE_LOOPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_LOOP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LINE_LOOPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_STRIP", + "printedName": "LINE_STRIP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_STRIPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_STRIPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLES", + "printedName": "TRIANGLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TRIANGLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TRIANGLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLE_STRIP", + "printedName": "TRIANGLE_STRIP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TRIANGLE_STRIPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLE_STRIP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TRIANGLE_STRIPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TRIANGLE_FAN", + "printedName": "TRIANGLE_FAN", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TRIANGLE_FAN", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12TRIANGLE_FANs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TRIANGLE_FAN", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12TRIANGLE_FANs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE", + "printedName": "ONE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3ONEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3ONEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ZERO", + "printedName": "ZERO", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ZERO", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4ZEROs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ZERO", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4ZEROs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_COLOR", + "printedName": "SRC_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_SRC_COLOR", + "printedName": "ONE_MINUS_SRC_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_SRC_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_ALPHA", + "printedName": "SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_SRC_ALPHA", + "printedName": "ONE_MINUS_SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DST_ALPHA", + "printedName": "DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_DST_ALPHA", + "printedName": "ONE_MINUS_DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DST_COLOR", + "printedName": "DST_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DST_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_DST_COLOR", + "printedName": "ONE_MINUS_DST_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_DST_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19ONE_MINUS_DST_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SRC_ALPHA_SATURATE", + "printedName": "SRC_ALPHA_SATURATE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SRC_ALPHA_SATURATE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18SRC_ALPHA_SATURATEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SRC_ALPHA_SATURATE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18SRC_ALPHA_SATURATEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONSTANT_COLOR", + "printedName": "CONSTANT_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_CONSTANT_COLOR", + "printedName": "ONE_MINUS_CONSTANT_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_CONSTANT_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONSTANT_ALPHA", + "printedName": "CONSTANT_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CONSTANT_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ONE_MINUS_CONSTANT_ALPHA", + "printedName": "ONE_MINUS_CONSTANT_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ONE_MINUS_CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ONE_MINUS_CONSTANT_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ONE_MINUS_CONSTANT_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_ADD", + "printedName": "FUNC_ADD", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_ADD", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8FUNC_ADDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_ADD", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8FUNC_ADDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_SUBTRACT", + "printedName": "FUNC_SUBTRACT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13FUNC_SUBTRACTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13FUNC_SUBTRACTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FUNC_REVERSE_SUBTRACT", + "printedName": "FUNC_REVERSE_SUBTRACT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FUNC_REVERSE_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21FUNC_REVERSE_SUBTRACTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FUNC_REVERSE_SUBTRACT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21FUNC_REVERSE_SUBTRACTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION", + "printedName": "BLEND_EQUATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14BLEND_EQUATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14BLEND_EQUATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION_RGB", + "printedName": "BLEND_EQUATION_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18BLEND_EQUATION_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18BLEND_EQUATION_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_EQUATION_ALPHA", + "printedName": "BLEND_EQUATION_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_EQUATION_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20BLEND_EQUATION_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_EQUATION_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20BLEND_EQUATION_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_DST_RGB", + "printedName": "BLEND_DST_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_DST_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_DST_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_DST_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_DST_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_SRC_RGB", + "printedName": "BLEND_SRC_RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_SRC_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_SRC_RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_SRC_RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13BLEND_SRC_RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_DST_ALPHA", + "printedName": "BLEND_DST_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_DST_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_DST_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_DST_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_SRC_ALPHA", + "printedName": "BLEND_SRC_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_SRC_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_SRC_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15BLEND_SRC_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND_COLOR", + "printedName": "BLEND_COLOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BLEND_COLORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND_COLOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BLEND_COLORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ARRAY_BUFFER_BINDING", + "printedName": "ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ELEMENT_ARRAY_BUFFER_BINDING", + "printedName": "ELEMENT_ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ELEMENT_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28ELEMENT_ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ELEMENT_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28ELEMENT_ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINE_WIDTH", + "printedName": "LINE_WIDTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINE_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_WIDTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINE_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10LINE_WIDTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALIASED_POINT_SIZE_RANGE", + "printedName": "ALIASED_POINT_SIZE_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALIASED_POINT_SIZE_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_POINT_SIZE_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALIASED_POINT_SIZE_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_POINT_SIZE_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALIASED_LINE_WIDTH_RANGE", + "printedName": "ALIASED_LINE_WIDTH_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALIASED_LINE_WIDTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_LINE_WIDTH_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALIASED_LINE_WIDTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24ALIASED_LINE_WIDTH_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CULL_FACE_MODE", + "printedName": "CULL_FACE_MODE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CULL_FACE_MODE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CULL_FACE_MODEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CULL_FACE_MODE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14CULL_FACE_MODEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT_FACE", + "printedName": "FRONT_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FRONT_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FRONT_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_RANGE", + "printedName": "DEPTH_RANGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11DEPTH_RANGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_RANGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11DEPTH_RANGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_WRITEMASK", + "printedName": "DEPTH_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_CLEAR_VALUE", + "printedName": "DEPTH_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_FUNC", + "printedName": "DEPTH_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_CLEAR_VALUE", + "printedName": "STENCIL_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19STENCIL_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19STENCIL_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_FUNC", + "printedName": "STENCIL_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_FAIL", + "printedName": "STENCIL_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_PASS_DEPTH_FAIL", + "printedName": "STENCIL_PASS_DEPTH_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_PASS_DEPTH_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_PASS_DEPTH_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_PASS_DEPTH_PASS", + "printedName": "STENCIL_PASS_DEPTH_PASS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC019STENCIL_PASS_DEPTH_G0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC019STENCIL_PASS_DEPTH_G0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_REF", + "printedName": "STENCIL_REF", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STENCIL_REFs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STENCIL_REFs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_VALUE_MASK", + "printedName": "STENCIL_VALUE_MASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_VALUE_MASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_VALUE_MASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_WRITEMASK", + "printedName": "STENCIL_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_FUNC", + "printedName": "STENCIL_BACK_FUNC", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FUNCs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_FUNC", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FUNCs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_FAIL", + "printedName": "STENCIL_BACK_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17STENCIL_BACK_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_PASS_DEPTH_FAIL", + "printedName": "STENCIL_BACK_PASS_DEPTH_FAIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28STENCIL_BACK_PASS_DEPTH_FAILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_PASS_DEPTH_FAIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28STENCIL_BACK_PASS_DEPTH_FAILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_PASS_DEPTH_PASS", + "printedName": "STENCIL_BACK_PASS_DEPTH_PASS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC024STENCIL_BACK_PASS_DEPTH_H0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_PASS_DEPTH_PASS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC024STENCIL_BACK_PASS_DEPTH_H0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_REF", + "printedName": "STENCIL_BACK_REF", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16STENCIL_BACK_REFs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_REF", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16STENCIL_BACK_REFs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_VALUE_MASK", + "printedName": "STENCIL_BACK_VALUE_MASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_BACK_VALUE_MASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_VALUE_MASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23STENCIL_BACK_VALUE_MASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BACK_WRITEMASK", + "printedName": "STENCIL_BACK_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BACK_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22STENCIL_BACK_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BACK_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22STENCIL_BACK_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VIEWPORT", + "printedName": "VIEWPORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VIEWPORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8VIEWPORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VIEWPORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8VIEWPORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SCISSOR_BOX", + "printedName": "SCISSOR_BOX", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SCISSOR_BOX", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SCISSOR_BOXs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SCISSOR_BOX", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SCISSOR_BOXs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_CLEAR_VALUE", + "printedName": "COLOR_CLEAR_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_CLEAR_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_CLEAR_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_CLEAR_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_WRITEMASK", + "printedName": "COLOR_WRITEMASK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15COLOR_WRITEMASKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_WRITEMASK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15COLOR_WRITEMASKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_ALIGNMENT", + "printedName": "UNPACK_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16UNPACK_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16UNPACK_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "PACK_ALIGNMENT", + "printedName": "PACK_ALIGNMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)PACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14PACK_ALIGNMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)PACK_ALIGNMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14PACK_ALIGNMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_SIZE", + "printedName": "MAX_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16MAX_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16MAX_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VIEWPORT_DIMS", + "printedName": "MAX_VIEWPORT_DIMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VIEWPORT_DIMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17MAX_VIEWPORT_DIMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VIEWPORT_DIMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17MAX_VIEWPORT_DIMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SUBPIXEL_BITS", + "printedName": "SUBPIXEL_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SUBPIXEL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13SUBPIXEL_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SUBPIXEL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13SUBPIXEL_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RED_BITS", + "printedName": "RED_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RED_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RED_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RED_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RED_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GREEN_BITS", + "printedName": "GREEN_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GREEN_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10GREEN_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GREEN_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10GREEN_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLUE_BITS", + "printedName": "BLUE_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLUE_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BLUE_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLUE_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BLUE_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALPHA_BITS", + "printedName": "ALPHA_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALPHA_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10ALPHA_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALPHA_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10ALPHA_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_BITS", + "printedName": "DEPTH_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_BITS", + "printedName": "STENCIL_BITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_BITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_BITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_BITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_UNITS", + "printedName": "POLYGON_OFFSET_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20POLYGON_OFFSET_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20POLYGON_OFFSET_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_FACTOR", + "printedName": "POLYGON_OFFSET_FACTOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_FACTOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21POLYGON_OFFSET_FACTORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_FACTOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21POLYGON_OFFSET_FACTORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_2D", + "printedName": "TEXTURE_BINDING_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_BINDING_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_BINDING_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_BINDING_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_BINDING_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_BUFFERS", + "printedName": "SAMPLE_BUFFERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_BUFFERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14SAMPLE_BUFFERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_BUFFERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14SAMPLE_BUFFERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLES", + "printedName": "SAMPLES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7SAMPLESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7SAMPLESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE_VALUE", + "printedName": "SAMPLE_COVERAGE_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21SAMPLE_COVERAGE_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21SAMPLE_COVERAGE_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE_INVERT", + "printedName": "SAMPLE_COVERAGE_INVERT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE_INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22SAMPLE_COVERAGE_INVERTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE_INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22SAMPLE_COVERAGE_INVERTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_TEXTURE_FORMATS", + "printedName": "COMPRESSED_TEXTURE_FORMATS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COMPRESSED_TEXTURE_FORMATS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26COMPRESSED_TEXTURE_FORMATSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COMPRESSED_TEXTURE_FORMATS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26COMPRESSED_TEXTURE_FORMATSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VENDOR", + "printedName": "VENDOR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VENDOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6VENDORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VENDOR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6VENDORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERER", + "printedName": "RENDERER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RENDERERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8RENDERERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERSION", + "printedName": "VERSION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7VERSIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7VERSIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "IMPLEMENTATION_COLOR_READ_TYPE", + "printedName": "IMPLEMENTATION_COLOR_READ_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)IMPLEMENTATION_COLOR_READ_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30IMPLEMENTATION_COLOR_READ_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)IMPLEMENTATION_COLOR_READ_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30IMPLEMENTATION_COLOR_READ_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "IMPLEMENTATION_COLOR_READ_FORMAT", + "printedName": "IMPLEMENTATION_COLOR_READ_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)IMPLEMENTATION_COLOR_READ_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32IMPLEMENTATION_COLOR_READ_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)IMPLEMENTATION_COLOR_READ_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32IMPLEMENTATION_COLOR_READ_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BROWSER_DEFAULT_WEBGL", + "printedName": "BROWSER_DEFAULT_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BROWSER_DEFAULT_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21BROWSER_DEFAULT_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BROWSER_DEFAULT_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21BROWSER_DEFAULT_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STATIC_DRAW", + "printedName": "STATIC_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STATIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STATIC_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STATIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STATIC_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STREAM_DRAW", + "printedName": "STREAM_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STREAM_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STREAM_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STREAM_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11STREAM_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DYNAMIC_DRAW", + "printedName": "DYNAMIC_DRAW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DYNAMIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12DYNAMIC_DRAWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DYNAMIC_DRAW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12DYNAMIC_DRAWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ARRAY_BUFFER", + "printedName": "ARRAY_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12ARRAY_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12ARRAY_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ELEMENT_ARRAY_BUFFER", + "printedName": "ELEMENT_ARRAY_BUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ELEMENT_ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ELEMENT_ARRAY_BUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ELEMENT_ARRAY_BUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20ELEMENT_ARRAY_BUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BUFFER_SIZE", + "printedName": "BUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11BUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BUFFER_USAGE", + "printedName": "BUFFER_USAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BUFFER_USAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12BUFFER_USAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BUFFER_USAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12BUFFER_USAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_VERTEX_ATTRIB", + "printedName": "CURRENT_VERTEX_ATTRIB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CURRENT_VERTEX_ATTRIB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21CURRENT_VERTEX_ATTRIBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CURRENT_VERTEX_ATTRIB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21CURRENT_VERTEX_ATTRIBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_ENABLED", + "printedName": "VERTEX_ATTRIB_ARRAY_ENABLED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_ENABLED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_ENABLEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_ENABLED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_ENABLEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_SIZE", + "printedName": "VERTEX_ATTRIB_ARRAY_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_STRIDE", + "printedName": "VERTEX_ATTRIB_ARRAY_STRIDE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26VERTEX_ATTRIB_ARRAY_STRIDEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_STRIDE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26VERTEX_ATTRIB_ARRAY_STRIDEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_TYPE", + "printedName": "VERTEX_ATTRIB_ARRAY_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24VERTEX_ATTRIB_ARRAY_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_NORMALIZED", + "printedName": "VERTEX_ATTRIB_ARRAY_NORMALIZED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_NORMALIZED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30VERTEX_ATTRIB_ARRAY_NORMALIZEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_NORMALIZED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30VERTEX_ATTRIB_ARRAY_NORMALIZEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_POINTER", + "printedName": "VERTEX_ATTRIB_ARRAY_POINTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_POINTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_POINTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_POINTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27VERTEX_ATTRIB_ARRAY_POINTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "printedName": "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34VERTEX_ATTRIB_ARRAY_BUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34VERTEX_ATTRIB_ARRAY_BUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CULL_FACE", + "printedName": "CULL_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CULL_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9CULL_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CULL_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9CULL_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT", + "printedName": "FRONT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FRONTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FRONTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BACK", + "printedName": "BACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRONT_AND_BACK", + "printedName": "FRONT_AND_BACK", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRONT_AND_BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14FRONT_AND_BACKs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRONT_AND_BACK", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14FRONT_AND_BACKs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BLEND", + "printedName": "BLEND", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BLEND", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5BLENDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BLEND", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5BLENDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_TEST", + "printedName": "DEPTH_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10DEPTH_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DITHER", + "printedName": "DITHER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DITHER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6DITHERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DITHER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6DITHERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "POLYGON_OFFSET_FILL", + "printedName": "POLYGON_OFFSET_FILL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)POLYGON_OFFSET_FILL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19POLYGON_OFFSET_FILLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)POLYGON_OFFSET_FILL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19POLYGON_OFFSET_FILLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_ALPHA_TO_COVERAGE", + "printedName": "SAMPLE_ALPHA_TO_COVERAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_ALPHA_TO_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SAMPLE_ALPHA_TO_COVERAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_ALPHA_TO_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SAMPLE_ALPHA_TO_COVERAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLE_COVERAGE", + "printedName": "SAMPLE_COVERAGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLE_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15SAMPLE_COVERAGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLE_COVERAGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15SAMPLE_COVERAGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SCISSOR_TEST", + "printedName": "SCISSOR_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SCISSOR_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SCISSOR_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SCISSOR_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SCISSOR_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_TEST", + "printedName": "STENCIL_TEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_TESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_TEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12STENCIL_TESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NO_ERROR", + "printedName": "NO_ERROR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NO_ERROR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NO_ERRORs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NO_ERROR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NO_ERRORs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_ENUM", + "printedName": "INVALID_ENUM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_ENUM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12INVALID_ENUMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_ENUM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12INVALID_ENUMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_VALUE", + "printedName": "INVALID_VALUE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13INVALID_VALUEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_VALUE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13INVALID_VALUEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_OPERATION", + "printedName": "INVALID_OPERATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17INVALID_OPERATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17INVALID_OPERATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVALID_FRAMEBUFFER_OPERATION", + "printedName": "INVALID_FRAMEBUFFER_OPERATION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVALID_FRAMEBUFFER_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC29INVALID_FRAMEBUFFER_OPERATIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVALID_FRAMEBUFFER_OPERATION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC29INVALID_FRAMEBUFFER_OPERATIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "OUT_OF_MEMORY", + "printedName": "OUT_OF_MEMORY", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)OUT_OF_MEMORY", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13OUT_OF_MEMORYs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)OUT_OF_MEMORY", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13OUT_OF_MEMORYs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CONTEXT_LOST_WEBGL", + "printedName": "CONTEXT_LOST_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CONTEXT_LOST_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18CONTEXT_LOST_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CONTEXT_LOST_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18CONTEXT_LOST_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CW", + "printedName": "CW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC2CWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC2CWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CCW", + "printedName": "CCW", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CCW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3CCWs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CCW", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3CCWs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DONT_CARE", + "printedName": "DONT_CARE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DONT_CARE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DONT_CAREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DONT_CARE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DONT_CAREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FASTEST", + "printedName": "FASTEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FASTEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7FASTESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FASTEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7FASTESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NICEST", + "printedName": "NICEST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NICEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6NICESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NICEST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6NICESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GENERATE_MIPMAP_HINT", + "printedName": "GENERATE_MIPMAP_HINT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GENERATE_MIPMAP_HINT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20GENERATE_MIPMAP_HINTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GENERATE_MIPMAP_HINT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20GENERATE_MIPMAP_HINTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BYTE", + "printedName": "BYTE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BYTEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BYTEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_BYTE", + "printedName": "UNSIGNED_BYTE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13UNSIGNED_BYTEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_BYTE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13UNSIGNED_BYTEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT", + "printedName": "UNSIGNED_SHORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14UNSIGNED_SHORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14UNSIGNED_SHORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHORT", + "printedName": "SHORT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5SHORTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHORT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5SHORTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_INT", + "printedName": "UNSIGNED_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12UNSIGNED_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12UNSIGNED_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT", + "printedName": "INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT", + "printedName": "FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT", + "printedName": "DEPTH_COMPONENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_COMPONENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_COMPONENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_COMPONENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15DEPTH_COMPONENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALPHA", + "printedName": "ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB", + "printedName": "RGB", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3RGBs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC3RGBs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA", + "printedName": "RGBA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGBA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4RGBAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGBA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4RGBAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LUMINANCE", + "printedName": "LUMINANCE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LUMINANCE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LUMINANCEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LUMINANCE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LUMINANCEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LUMINANCE_ALPHA", + "printedName": "LUMINANCE_ALPHA", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LUMINANCE_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15LUMINANCE_ALPHAs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LUMINANCE_ALPHA", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15LUMINANCE_ALPHAs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_4_4_4_4", + "printedName": "UNSIGNED_SHORT_4_4_4_4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_4_4_4_4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_4_4_4_4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_4_4_4_4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_4_4_4_4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_5_5_5_1", + "printedName": "UNSIGNED_SHORT_5_5_5_1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_5_5_5_1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_5_5_5_1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_5_5_5_1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22UNSIGNED_SHORT_5_5_5_1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_SHORT_5_6_5", + "printedName": "UNSIGNED_SHORT_5_6_5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNSIGNED_SHORT_5_6_5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20UNSIGNED_SHORT_5_6_5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNSIGNED_SHORT_5_6_5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20UNSIGNED_SHORT_5_6_5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAGMENT_SHADER", + "printedName": "FRAGMENT_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15FRAGMENT_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAGMENT_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15FRAGMENT_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VERTEX_SHADER", + "printedName": "VERTEX_SHADER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VERTEX_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13VERTEX_SHADERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VERTEX_SHADER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13VERTEX_SHADERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPILE_STATUS", + "printedName": "COMPILE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COMPILE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14COMPILE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COMPILE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14COMPILE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DELETE_STATUS", + "printedName": "DELETE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DELETE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DELETE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DELETE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DELETE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINK_STATUS", + "printedName": "LINK_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINK_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11LINK_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINK_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11LINK_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "VALIDATE_STATUS", + "printedName": "VALIDATE_STATUS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)VALIDATE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15VALIDATE_STATUSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)VALIDATE_STATUS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15VALIDATE_STATUSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ATTACHED_SHADERS", + "printedName": "ATTACHED_SHADERS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ATTACHED_SHADERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16ATTACHED_SHADERSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ATTACHED_SHADERS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16ATTACHED_SHADERSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_ATTRIBUTES", + "printedName": "ACTIVE_ATTRIBUTES", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_ATTRIBUTES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17ACTIVE_ATTRIBUTESs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_ATTRIBUTES", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17ACTIVE_ATTRIBUTESs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_UNIFORMS", + "printedName": "ACTIVE_UNIFORMS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15ACTIVE_UNIFORMSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_UNIFORMS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15ACTIVE_UNIFORMSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_UNIFORM_VECTORS", + "printedName": "MAX_VERTEX_UNIFORM_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26MAX_VERTEX_UNIFORM_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC26MAX_VERTEX_UNIFORM_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VARYING_VECTORS", + "printedName": "MAX_VARYING_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VARYING_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19MAX_VARYING_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VARYING_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19MAX_VARYING_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32MAX_COMBINED_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC32MAX_COMBINED_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30MAX_VERTEX_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30MAX_VERTEX_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_TEXTURE_IMAGE_UNITS", + "printedName": "MAX_TEXTURE_IMAGE_UNITS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23MAX_TEXTURE_IMAGE_UNITSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_TEXTURE_IMAGE_UNITS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23MAX_TEXTURE_IMAGE_UNITSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_VERTEX_ATTRIBS", + "printedName": "MAX_VERTEX_ATTRIBS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_VERTEX_ATTRIBS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18MAX_VERTEX_ATTRIBSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_VERTEX_ATTRIBS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18MAX_VERTEX_ATTRIBSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_FRAGMENT_UNIFORM_VECTORS", + "printedName": "MAX_FRAGMENT_UNIFORM_VECTORS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_FRAGMENT_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28MAX_FRAGMENT_UNIFORM_VECTORSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_FRAGMENT_UNIFORM_VECTORS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28MAX_FRAGMENT_UNIFORM_VECTORSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHADER_TYPE", + "printedName": "SHADER_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHADER_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SHADER_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHADER_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11SHADER_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SHADING_LANGUAGE_VERSION", + "printedName": "SHADING_LANGUAGE_VERSION", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SHADING_LANGUAGE_VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SHADING_LANGUAGE_VERSIONs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SHADING_LANGUAGE_VERSION", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24SHADING_LANGUAGE_VERSIONs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CURRENT_PROGRAM", + "printedName": "CURRENT_PROGRAM", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CURRENT_PROGRAM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15CURRENT_PROGRAMs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CURRENT_PROGRAM", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15CURRENT_PROGRAMs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEVER", + "printedName": "NEVER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEVER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5NEVERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEVER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5NEVERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LESS", + "printedName": "LESS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LESS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4LESSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LESS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4LESSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "EQUAL", + "printedName": "EQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)EQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5EQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)EQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5EQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LEQUAL", + "printedName": "LEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GREATER", + "printedName": "GREATER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GREATER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7GREATERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GREATER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7GREATERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NOTEQUAL", + "printedName": "NOTEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NOTEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NOTEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NOTEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8NOTEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "GEQUAL", + "printedName": "GEQUAL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)GEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6GEQUALs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)GEQUAL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6GEQUALs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ALWAYS", + "printedName": "ALWAYS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ALWAYS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6ALWAYSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ALWAYS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6ALWAYSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "KEEP", + "printedName": "KEEP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)KEEP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4KEEPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)KEEP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4KEEPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "REPLACE", + "printedName": "REPLACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)REPLACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7REPLACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)REPLACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7REPLACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INCR", + "printedName": "INCR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INCR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4INCRs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INCR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4INCRs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DECR", + "printedName": "DECR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DECR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4DECRs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DECR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4DECRs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INVERT", + "printedName": "INVERT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6INVERTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INVERT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6INVERTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INCR_WRAP", + "printedName": "INCR_WRAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INCR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9INCR_WRAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INCR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9INCR_WRAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DECR_WRAP", + "printedName": "DECR_WRAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DECR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DECR_WRAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DECR_WRAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9DECR_WRAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST", + "printedName": "NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7NEARESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7NEARESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR", + "printedName": "LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LINEARs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6LINEARs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST_MIPMAP_NEAREST", + "printedName": "NEAREST_MIPMAP_NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC015NEAREST_MIPMAP_F0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC015NEAREST_MIPMAP_F0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR_MIPMAP_NEAREST", + "printedName": "LINEAR_MIPMAP_NEAREST", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21LINEAR_MIPMAP_NEARESTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR_MIPMAP_NEAREST", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21LINEAR_MIPMAP_NEARESTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NEAREST_MIPMAP_LINEAR", + "printedName": "NEAREST_MIPMAP_LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NEAREST_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21NEAREST_MIPMAP_LINEARs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NEAREST_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21NEAREST_MIPMAP_LINEARs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LINEAR_MIPMAP_LINEAR", + "printedName": "LINEAR_MIPMAP_LINEAR", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LINEAR_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC014LINEAR_MIPMAP_F0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LINEAR_MIPMAP_LINEAR", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC014LINEAR_MIPMAP_F0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MAG_FILTER", + "printedName": "TEXTURE_MAG_FILTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_MAG_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MAG_FILTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_MAG_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MAG_FILTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_MIN_FILTER", + "printedName": "TEXTURE_MIN_FILTER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_MIN_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MIN_FILTERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_MIN_FILTER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18TEXTURE_MIN_FILTERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_S", + "printedName": "TEXTURE_WRAP_S", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_WRAP_S", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ss6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_WRAP_S", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ss6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_WRAP_T", + "printedName": "TEXTURE_WRAP_T", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_WRAP_T", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ts6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_WRAP_T", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14TEXTURE_WRAP_Ts6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_2D", + "printedName": "TEXTURE_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10TEXTURE_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10TEXTURE_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE", + "printedName": "TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP", + "printedName": "TEXTURE_CUBE_MAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16TEXTURE_CUBE_MAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16TEXTURE_CUBE_MAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_BINDING_CUBE_MAP", + "printedName": "TEXTURE_BINDING_CUBE_MAP", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_BINDING_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24TEXTURE_BINDING_CUBE_MAPs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_BINDING_CUBE_MAP", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24TEXTURE_BINDING_CUBE_MAPs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_X", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_X", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Xs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Xs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_X", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_X", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Xs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_X", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Xs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Y", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_Y", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Ys6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Ys6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Y", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_Y", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Ys6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_Y", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Ys6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Z", + "printedName": "TEXTURE_CUBE_MAP_POSITIVE_Z", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_POSITIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Zs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_POSITIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_POSITIVE_Zs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Z", + "printedName": "TEXTURE_CUBE_MAP_NEGATIVE_Z", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE_CUBE_MAP_NEGATIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Zs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE_CUBE_MAP_NEGATIVE_Z", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC27TEXTURE_CUBE_MAP_NEGATIVE_Zs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_CUBE_MAP_TEXTURE_SIZE", + "printedName": "MAX_CUBE_MAP_TEXTURE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_CUBE_MAP_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25MAX_CUBE_MAP_TEXTURE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_CUBE_MAP_TEXTURE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25MAX_CUBE_MAP_TEXTURE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE0", + "printedName": "TEXTURE0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE1", + "printedName": "TEXTURE1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE2", + "printedName": "TEXTURE2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE3", + "printedName": "TEXTURE3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE4", + "printedName": "TEXTURE4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE5", + "printedName": "TEXTURE5", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE5s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE5", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE5s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE6", + "printedName": "TEXTURE6", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE6", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE6s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE6", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE6s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE7", + "printedName": "TEXTURE7", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE7", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE7s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE7", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE7s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE8", + "printedName": "TEXTURE8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE9", + "printedName": "TEXTURE9", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE9", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE9s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE9", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8TEXTURE9s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE10", + "printedName": "TEXTURE10", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE10", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE10s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE10", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE10s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE11", + "printedName": "TEXTURE11", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE11", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE11s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE11", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE11s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE12", + "printedName": "TEXTURE12", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE12", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE12s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE12", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE12s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE13", + "printedName": "TEXTURE13", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE13", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE13s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE13", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE13s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE14", + "printedName": "TEXTURE14", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE14", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE14s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE14", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE14s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE15", + "printedName": "TEXTURE15", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE15", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE15s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE15", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE15s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE16", + "printedName": "TEXTURE16", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE16s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE16s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE17", + "printedName": "TEXTURE17", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE17", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE17s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE17", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE17s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE18", + "printedName": "TEXTURE18", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE18", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE18s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE18", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE18s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE19", + "printedName": "TEXTURE19", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE19", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE19s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE19", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE19s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE20", + "printedName": "TEXTURE20", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE20", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE20s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE20", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE20s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE21", + "printedName": "TEXTURE21", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE21", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE21s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE21", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE21s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE22", + "printedName": "TEXTURE22", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE22", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE22s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE22", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE22s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE23", + "printedName": "TEXTURE23", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE23", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE23s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE23", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE23s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE24", + "printedName": "TEXTURE24", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE24", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE24s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE24", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE24s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE25", + "printedName": "TEXTURE25", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE25", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE25s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE25", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE25s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE26", + "printedName": "TEXTURE26", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE26", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE26s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE26", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE26s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE27", + "printedName": "TEXTURE27", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE27", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE27s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE27", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE27s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE28", + "printedName": "TEXTURE28", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE28", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE28s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE28", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE28s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE29", + "printedName": "TEXTURE29", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE29", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE29s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE29", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE29s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE30", + "printedName": "TEXTURE30", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE30", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE30s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE30", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE30s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "TEXTURE31", + "printedName": "TEXTURE31", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)TEXTURE31", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE31s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)TEXTURE31", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9TEXTURE31s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ACTIVE_TEXTURE", + "printedName": "ACTIVE_TEXTURE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)ACTIVE_TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14ACTIVE_TEXTUREs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)ACTIVE_TEXTURE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14ACTIVE_TEXTUREs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "REPEAT", + "printedName": "REPEAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6REPEATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6REPEATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "CLAMP_TO_EDGE", + "printedName": "CLAMP_TO_EDGE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)CLAMP_TO_EDGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13CLAMP_TO_EDGEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)CLAMP_TO_EDGE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13CLAMP_TO_EDGEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MIRRORED_REPEAT", + "printedName": "MIRRORED_REPEAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MIRRORED_REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15MIRRORED_REPEATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MIRRORED_REPEAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC15MIRRORED_REPEATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC2", + "printedName": "FLOAT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC3", + "printedName": "FLOAT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_VEC4", + "printedName": "FLOAT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC2", + "printedName": "INT_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC3", + "printedName": "INT_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "INT_VEC4", + "printedName": "INT_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)INT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)INT_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8INT_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL", + "printedName": "BOOL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BOOLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4BOOLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC2", + "printedName": "BOOL_VEC2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC3", + "printedName": "BOOL_VEC3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "BOOL_VEC4", + "printedName": "BOOL_VEC4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)BOOL_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)BOOL_VEC4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9BOOL_VEC4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT2", + "printedName": "FLOAT_MAT2", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT2s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT2", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT2s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT3", + "printedName": "FLOAT_MAT3", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT3s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT3", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT3s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FLOAT_MAT4", + "printedName": "FLOAT_MAT4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FLOAT_MAT4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FLOAT_MAT4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10FLOAT_MAT4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_2D", + "printedName": "SAMPLER_2D", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLER_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10SAMPLER_2Ds6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLER_2D", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10SAMPLER_2Ds6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "SAMPLER_CUBE", + "printedName": "SAMPLER_CUBE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)SAMPLER_CUBE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SAMPLER_CUBEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)SAMPLER_CUBE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12SAMPLER_CUBEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LOW_FLOAT", + "printedName": "LOW_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LOW_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LOW_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LOW_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC9LOW_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MEDIUM_FLOAT", + "printedName": "MEDIUM_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MEDIUM_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12MEDIUM_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MEDIUM_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12MEDIUM_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HIGH_FLOAT", + "printedName": "HIGH_FLOAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)HIGH_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10HIGH_FLOATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)HIGH_FLOAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10HIGH_FLOATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "LOW_INT", + "printedName": "LOW_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)LOW_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7LOW_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)LOW_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7LOW_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MEDIUM_INT", + "printedName": "MEDIUM_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MEDIUM_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10MEDIUM_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MEDIUM_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC10MEDIUM_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "HIGH_INT", + "printedName": "HIGH_INT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)HIGH_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8HIGH_INTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)HIGH_INT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC8HIGH_INTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER", + "printedName": "FRAMEBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11FRAMEBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC11FRAMEBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER", + "printedName": "RENDERBUFFER", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12RENDERBUFFERs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC12RENDERBUFFERs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA4", + "printedName": "RGBA4", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGBA4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5RGBA4s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGBA4", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC5RGBA4s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB565", + "printedName": "RGB565", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB565", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6RGB565s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB565", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC6RGB565s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB5_A1", + "printedName": "RGB5_A1", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RGB5_A1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7RGB5_A1s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RGB5_A1", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC7RGB5_A1s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_COMPONENT16", + "printedName": "DEPTH_COMPONENT16", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_COMPONENT16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_COMPONENT16s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_COMPONENT16", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17DEPTH_COMPONENT16s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_INDEX8", + "printedName": "STENCIL_INDEX8", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_INDEX8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14STENCIL_INDEX8s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_INDEX8", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC14STENCIL_INDEX8s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL", + "printedName": "DEPTH_STENCIL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DEPTH_STENCILs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_STENCIL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC13DEPTH_STENCILs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_WIDTH", + "printedName": "RENDERBUFFER_WIDTH", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18RENDERBUFFER_WIDTHs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_WIDTH", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18RENDERBUFFER_WIDTHs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_HEIGHT", + "printedName": "RENDERBUFFER_HEIGHT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_HEIGHT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19RENDERBUFFER_HEIGHTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_HEIGHT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19RENDERBUFFER_HEIGHTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_INTERNAL_FORMAT", + "printedName": "RENDERBUFFER_INTERNAL_FORMAT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_INTERNAL_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28RENDERBUFFER_INTERNAL_FORMATs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_INTERNAL_FORMAT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC28RENDERBUFFER_INTERNAL_FORMATs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_RED_SIZE", + "printedName": "RENDERBUFFER_RED_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_RED_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21RENDERBUFFER_RED_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_RED_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21RENDERBUFFER_RED_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_GREEN_SIZE", + "printedName": "RENDERBUFFER_GREEN_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_GREEN_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_GREEN_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_GREEN_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_GREEN_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_BLUE_SIZE", + "printedName": "RENDERBUFFER_BLUE_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_BLUE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22RENDERBUFFER_BLUE_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_BLUE_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC22RENDERBUFFER_BLUE_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_ALPHA_SIZE", + "printedName": "RENDERBUFFER_ALPHA_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_ALPHA_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_ALPHA_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_ALPHA_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_ALPHA_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_DEPTH_SIZE", + "printedName": "RENDERBUFFER_DEPTH_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_DEPTH_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_DEPTH_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_DEPTH_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23RENDERBUFFER_DEPTH_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_STENCIL_SIZE", + "printedName": "RENDERBUFFER_STENCIL_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_STENCIL_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25RENDERBUFFER_STENCIL_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_STENCIL_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC25RENDERBUFFER_STENCIL_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "printedName": "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_TYPEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_TYPEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "printedName": "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_NAMEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34FRAMEBUFFER_ATTACHMENT_OBJECT_NAMEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVELs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC36FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVELs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "printedName": "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC44FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC44FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT0", + "printedName": "COLOR_ATTACHMENT0", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)COLOR_ATTACHMENT0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_ATTACHMENT0s6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)COLOR_ATTACHMENT0", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC17COLOR_ATTACHMENT0s6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_ATTACHMENT", + "printedName": "DEPTH_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC16DEPTH_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "STENCIL_ATTACHMENT", + "printedName": "STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC18STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DEPTH_STENCIL_ATTACHMENT", + "printedName": "DEPTH_STENCIL_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)DEPTH_STENCIL_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC24DEPTH_STENCIL_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "NONE", + "printedName": "NONE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)NONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4NONEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)NONE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC4NONEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_COMPLETE", + "printedName": "FRAMEBUFFER_COMPLETE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_COMPLETE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20FRAMEBUFFER_COMPLETEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_COMPLETE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20FRAMEBUFFER_COMPLETEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "printedName": "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "printedName": "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC41FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC41FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "printedName": "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_DIMENSIONSs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC33FRAMEBUFFER_INCOMPLETE_DIMENSIONSs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_UNSUPPORTED", + "printedName": "FRAMEBUFFER_UNSUPPORTED", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_UNSUPPORTED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23FRAMEBUFFER_UNSUPPORTEDs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_UNSUPPORTED", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC23FRAMEBUFFER_UNSUPPORTEDs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_BINDING", + "printedName": "FRAMEBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19FRAMEBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)FRAMEBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19FRAMEBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RENDERBUFFER_BINDING", + "printedName": "RENDERBUFFER_BINDING", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)RENDERBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20RENDERBUFFER_BINDINGs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)RENDERBUFFER_BINDING", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC20RENDERBUFFER_BINDINGs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_RENDERBUFFER_SIZE", + "printedName": "MAX_RENDERBUFFER_SIZE", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)MAX_RENDERBUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21MAX_RENDERBUFFER_SIZEs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)MAX_RENDERBUFFER_SIZE", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC21MAX_RENDERBUFFER_SIZEs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_COLORSPACE_CONVERSION_WEBGL", + "printedName": "UNPACK_COLORSPACE_CONVERSION_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_COLORSPACE_CONVERSION_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34UNPACK_COLORSPACE_CONVERSION_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_COLORSPACE_CONVERSION_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC34UNPACK_COLORSPACE_CONVERSION_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_FLIP_Y_WEBGL", + "printedName": "UNPACK_FLIP_Y_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_FLIP_Y_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19UNPACK_FLIP_Y_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_FLIP_Y_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC19UNPACK_FLIP_Y_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "printedName": "UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(py)UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30UNPACK_PREMULTIPLY_ALPHA_WEBGLs6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC30UNPACK_PREMULTIPLY_ALPHA_WEBGLs6UInt32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext(im)init", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext", + "mangledName": "$s12CanvasNative24TNSWebGLRenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLRenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "superclassNames": [ + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmap", + "printedName": "TNSImageBitmap", + "children": [ + { + "kind": "Var", + "name": "queue", + "printedName": "queue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cpy)queue", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5queueSo012OS_dispatch_E0CvpZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)queue", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5queueSo012OS_dispatch_E0CvgZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createFromImageBitmap", + "printedName": "createFromImageBitmap(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageBitmap:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC015createFromImageD0yyAC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageBitmap", + "printedName": "createFromImageBitmap(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageBitmap:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC015createFromImageD0yyAC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageAsset", + "printedName": "createFromImageAsset(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageAsset:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC20createFromImageAssetyyAA0cH0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageAsset", + "printedName": "createFromImageAsset(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageAsset:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC20createFromImageAssetyyAA0cH0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageData", + "printedName": "createFromImageData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageData:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC19createFromImageDatayyAA0cH0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromImageData", + "printedName": "createFromImageData(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromImageData:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC19createFromImageDatayyAA0cH0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromCanvas", + "printedName": "createFromCanvas(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromCanvas:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC010createFromA0yyAA9TNSCanvasC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromCanvas", + "printedName": "createFromCanvas(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromCanvas:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC010createFromA0yyAA9TNSCanvasC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromData", + "printedName": "createFromData(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromData:::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC14createFromDatayySo6NSDataC_S2fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromData", + "printedName": "createFromData(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromData:::::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC14createFromDatayySo6NSDataC_S6fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromDataEncoded", + "printedName": "createFromDataEncoded(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromDataEncoded:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC21createFromDataEncodedyySo6NSDataC_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromDataEncoded", + "printedName": "createFromDataEncoded(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromDataEncoded:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC21createFromDataEncodedyySo6NSDataC_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytes", + "printedName": "createFromBytes(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytes:::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC15createFromBytesyySays5UInt8VG_S2fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytes", + "printedName": "createFromBytes(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytes:::::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC15createFromBytesyySays5UInt8VG_S6fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytesEncoded", + "printedName": "createFromBytesEncoded(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytesEncoded:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC22createFromBytesEncodedyySays5UInt8VG_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromBytesEncoded", + "printedName": "createFromBytesEncoded(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromBytesEncoded:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC22createFromBytesEncodedyySays5UInt8VG_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromUIImage", + "printedName": "createFromUIImage(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromUIImage:::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC17createFromUIImageyySo0G0C_AA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromUIImage", + "printedName": "createFromUIImage(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSImageBitmapOptions", + "printedName": "CanvasNative.TNSImageBitmapOptions", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmapOptions" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(CanvasNative.TNSImageBitmap?, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmap?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(cm)createFromUIImage:::::::", + "mangledName": "$s12CanvasNative14TNSImageBitmapC17createFromUIImageyySo0G0C_S4fAA0cD7OptionsCyACSg_SSSgtctFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)width", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)width", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)height", + "mangledName": "$s12CanvasNative14TNSImageBitmapC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)height", + "mangledName": "$s12CanvasNative14TNSImageBitmapC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)close", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5closeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(py)error", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5errorSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)error", + "mangledName": "$s12CanvasNative14TNSImageBitmapC5errorSSSgvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmap", + "printedName": "CanvasNative.TNSImageBitmap", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap(im)init", + "mangledName": "$s12CanvasNative14TNSImageBitmapCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageBitmap", + "mangledName": "$s12CanvasNative14TNSImageBitmapC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmap", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_fbo_render_mipmap", + "printedName": "TNS_OES_fbo_render_mipmap", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_fbo_render_mipmap", + "printedName": "CanvasNative.TNS_OES_fbo_render_mipmap", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap(im)init", + "mangledName": "$s12CanvasNative25TNS_OES_fbo_render_mipmapCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_fbo_render_mipmap", + "mangledName": "$s12CanvasNative25TNS_OES_fbo_render_mipmapC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_fbo_render_mipmap", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageSmoothingQuality", + "printedName": "TNSImageSmoothingQuality", + "children": [ + { + "kind": "Var", + "name": "Low", + "printedName": "Low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityLow", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO3LowyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Medium", + "printedName": "Medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityMedium", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO6MediumyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "High", + "printedName": "High", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageSmoothingQuality.Type) -> CanvasNative.TNSImageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageSmoothingQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality@TNSImageSmoothingQualityHigh", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO4HighyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageSmoothingQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageSmoothingQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative24TNSImageSmoothingQualityO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality", + "mangledName": "$s12CanvasNative24TNSImageSmoothingQualityO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageSmoothingQuality", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "CoreVideo", + "printedName": "CoreVideo", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "Utils", + "printedName": "Utils", + "children": [ + { + "kind": "Function", + "name": "createTextureCache", + "printedName": "createTextureCache(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreVideo.CVOpenGLESTextureCache?", + "children": [ + { + "kind": "TypeNominal", + "name": "CVOpenGLESTextureCache", + "printedName": "CoreVideo.CVOpenGLESTextureCache", + "usr": "c:@T@CVOpenGLESTextureCacheRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "TNSWebGLRenderingContext", + "printedName": "CanvasNative.TNSWebGLRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLRenderingContext" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createTextureCache:", + "mangledName": "$s12CanvasNative5UtilsC18createTextureCacheySo017CVOpenGLESTextureF3RefaSgAA24TNSWebGLRenderingContextCFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImage", + "printedName": "createImage(_:_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreVideo.CVBuffer?", + "children": [ + { + "kind": "TypeNominal", + "name": "CVBuffer", + "printedName": "CoreVideo.CVBuffer", + "usr": "c:@T@CVBufferRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CVOpenGLESTextureCache", + "printedName": "CoreVideo.CVOpenGLESTextureCache", + "usr": "c:@T@CVOpenGLESTextureCacheRef" + }, + { + "kind": "TypeNominal", + "name": "CVBuffer", + "printedName": "CoreVideo.CVBuffer", + "usr": "c:@T@CVBufferRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreFoundation.CFDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "CFDictionary", + "printedName": "CoreFoundation.CFDictionary", + "usr": "c:@T@CFDictionaryRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)createImage::::::::::", + "mangledName": "$s12CanvasNative5UtilsC11createImageySo11CVBufferRefaSgSo022CVOpenGLESTextureCacheG0a_AFSo012CFDictionaryG0aSgs6UInt32Vs5Int32VA2p2NSitFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupRender", + "printedName": "setupRender()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)setupRender", + "mangledName": "$s12CanvasNative5UtilsC11setupRenderAA9TNSRenderCyFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawFrame", + "printedName": "drawFrame(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVPlayer", + "printedName": "AVFoundation.AVPlayer", + "usr": "c:objc(cs)AVPlayer" + }, + { + "kind": "TypeNominal", + "name": "AVPlayerItemVideoOutput", + "printedName": "AVFoundation.AVPlayerItemVideoOutput", + "usr": "c:objc(cs)AVPlayerItemVideoOutput" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "TNSRender", + "printedName": "CanvasNative.TNSRender", + "usr": "c:@M@CanvasNative@objc(cs)TNSRender" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)drawFrame:::::::", + "mangledName": "$s12CanvasNative5UtilsC9drawFrameyySo8AVPlayerC_So0F15ItemVideoOutputCSo6CGSizeVAA9TNSRenderCs5Int32VANSbtFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeToFile", + "printedName": "writeToFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)Utils(cm)writeToFile::error:", + "mangledName": "$s12CanvasNative5UtilsC11writeToFileyySo6NSDataC_SStKFZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Utils", + "printedName": "CanvasNative.Utils", + "usr": "c:@M@CanvasNative@objc(cs)Utils" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)Utils(im)init", + "mangledName": "$s12CanvasNative5UtilsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)Utils", + "mangledName": "$s12CanvasNative5UtilsC", + "moduleName": "CanvasNative", + "objc_name": "Utils", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "TNSWebGLShaderPrecisionFormat", + "children": [ + { + "kind": "Var", + "name": "rangeMin", + "printedName": "rangeMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)rangeMin", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMins5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)rangeMin", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMins5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rangeMax", + "printedName": "rangeMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)rangeMax", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMaxs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)rangeMax", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMaxs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "precision", + "printedName": "precision", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(py)precision", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC9precisions5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)precision", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC9precisions5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rangeMin:rangeMax:precision:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)initWithRangeMin:rangeMax:precision:", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC8rangeMin0G3Max9precisionACs5Int32V_A2Htcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSWebGLShaderPrecisionFormat", + "printedName": "CanvasNative.TNSWebGLShaderPrecisionFormat", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat(im)init", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSWebGLShaderPrecisionFormat", + "mangledName": "$s12CanvasNative29TNSWebGLShaderPrecisionFormatC", + "moduleName": "CanvasNative", + "objc_name": "TNSWebGLShaderPrecisionFormat", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_half_float_linear", + "printedName": "TNS_OES_texture_half_float_linear", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_half_float_linear", + "printedName": "CanvasNative.TNS_OES_texture_half_float_linear", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear(im)init", + "mangledName": "$s12CanvasNative33TNS_OES_texture_half_float_linearCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_half_float_linear", + "mangledName": "$s12CanvasNative33TNS_OES_texture_half_float_linearC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_half_float_linear", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_OES_texture_float_linear", + "printedName": "TNS_OES_texture_float_linear", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_OES_texture_float_linear", + "printedName": "CanvasNative.TNS_OES_texture_float_linear", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear(im)init", + "mangledName": "$s12CanvasNative28TNS_OES_texture_float_linearCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_OES_texture_float_linear", + "mangledName": "$s12CanvasNative28TNS_OES_texture_float_linearC", + "moduleName": "CanvasNative", + "objc_name": "TNS_OES_texture_float_linear", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_color_buffer_half_float", + "printedName": "TNS_EXT_color_buffer_half_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_color_buffer_half_float", + "printedName": "CanvasNative.TNS_EXT_color_buffer_half_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)init", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "RGBA16F_EXT", + "printedName": "RGBA16F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)RGBA16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC08RGBA16F_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)RGBA16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC08RGBA16F_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F_EXT", + "printedName": "RGB16F_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)RGB16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC07RGB16F_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)RGB16F_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC07RGB16F_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "printedName": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC038FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC038FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "UNSIGNED_NORMALIZED_EXT", + "printedName": "UNSIGNED_NORMALIZED_EXT", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(py)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC020UNSIGNED_NORMALIZED_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float(im)UNSIGNED_NORMALIZED_EXT", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC020UNSIGNED_NORMALIZED_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_half_float", + "mangledName": "$s12CanvasNative31TNS_EXT_color_buffer_half_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_color_buffer_half_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasRenderingContext2D", + "printedName": "TNSCanvasRenderingContext2D", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext2D", + "printedName": "CanvasNative.TNSCanvasRenderingContext2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)init:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DCyAcA0C0Ccfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "font", + "printedName": "font", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)font", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)font", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFont:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fontSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "filter", + "printedName": "filter", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)filter", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)filter", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFilter:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6filterSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "globalAlpha", + "printedName": "globalAlpha", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)globalAlpha", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)globalAlpha", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setGlobalAlpha:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11globalAlphaSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "globalCompositeOperation", + "printedName": "globalCompositeOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)globalCompositeOperation", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)globalCompositeOperation", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setGlobalCompositeOperation:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24globalCompositeOperationAA012TNSCompositeH4TypeOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSmoothingEnabled", + "printedName": "imageSmoothingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)imageSmoothingEnabled", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)imageSmoothingEnabled", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setImageSmoothingEnabled:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingEnabledSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSmoothingQuality", + "printedName": "imageSmoothingQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)imageSmoothingQuality", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)imageSmoothingQuality", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageSmoothingQuality", + "printedName": "CanvasNative.TNSImageSmoothingQuality", + "usr": "c:@M@CanvasNative@E@TNSImageSmoothingQuality" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setImageSmoothingQuality:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC21imageSmoothingQualityAA08TNSImagegH0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineCap", + "printedName": "lineCap", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineCap", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineCap", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSLineCap", + "printedName": "CanvasNative.TNSLineCap", + "usr": "c:@M@CanvasNative@E@TNSLineCap" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineCap:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7lineCapAA07TNSLineG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineDashOffset", + "printedName": "lineDashOffset", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineDashOffset", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineDashOffset", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineDashOffset:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14lineDashOffsetSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineWidth", + "printedName": "lineWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineWidth", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineWidth", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineWidth:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9lineWidthSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lineJoin", + "printedName": "lineJoin", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)lineJoin", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineJoin", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSLineJoin", + "printedName": "CanvasNative.TNSLineJoin", + "usr": "c:@M@CanvasNative@E@TNSLineJoin" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineJoin:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0Ovs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0OvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8lineJoinAA07TNSLineG0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "miterLimit", + "printedName": "miterLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)miterLimit", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)miterLimit", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setMiterLimit:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10miterLimitSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowBlur", + "printedName": "shadowBlur", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowBlur", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowBlur", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowBlur:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10shadowBlurSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowColor", + "printedName": "shadowColor", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowColor", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowColor", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowColor:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11shadowColorSSvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowOffsetX", + "printedName": "shadowOffsetX", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowOffsetX", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowOffsetX", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowOffsetX:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetXSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shadowOffsetY", + "printedName": "shadowOffsetY", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)shadowOffsetY", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)shadowOffsetY", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setShadowOffsetY:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13shadowOffsetYSfvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textAlign", + "printedName": "textAlign", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)textAlign", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)textAlign", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSTextAlignment", + "printedName": "CanvasNative.TNSTextAlignment", + "usr": "c:@M@CanvasNative@E@TNSTextAlignment" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTextAlign:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9textAlignAA16TNSTextAlignmentOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textBaseline", + "printedName": "textBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)textBaseline", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)textBaseline", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTextBaseline:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12textBaselineAA15TNSTextBaseLineOvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setFillStyleWithString", + "printedName": "setFillStyleWithString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFillStyleWithString:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC22setFillStyleWithStringyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fillStyle", + "printedName": "fillStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)fillStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setFillStyle:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9fillStyleAA012ICanvasColorG0_pvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setStrokeStyleWithString", + "printedName": "setStrokeStyleWithString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setStrokeStyleWithString:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC24setStrokeStyleWithStringyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "strokeStyle", + "printedName": "strokeStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(py)strokeStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeStyle", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ICanvasColorStyle", + "printedName": "CanvasNative.ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setStrokeStyle:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvs", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvM", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11strokeStyleAA012ICanvasColorG0_pvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fillRect", + "printedName": "fillRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeRect", + "printedName": "strokeRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fillText", + "printedName": "fillText(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillText:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillTextyySS_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fillText", + "printedName": "fillText(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillText::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC8fillTextyySS_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeText", + "printedName": "strokeText(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeText:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeTextyySS_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "strokeText", + "printedName": "strokeText(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)strokeText::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC10strokeTextyySS_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rect", + "printedName": "rect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)rect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4rectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:topLeft:topRight:bottomRight:bottomLeft:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRectWithX:y:width:height:topLeft:topRight:bottomRight:bottomLeft:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRect1x1y5width6height7topLeft0J5Right06bottomL00mK0ySf_S7ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(x:y:width:height:radii:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRectWithX:y:width:height:radii:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRect1x1y5width6height5radiiySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "roundRect", + "printedName": "roundRect(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)roundRect:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9roundRectyySf_S3fSaySfGtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fill", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fillyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fillWithValue:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fill5valueyyp_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fill", + "printedName": "fill(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)fill::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4fillyyAA9TNSPath2DC_AA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stroke", + "printedName": "stroke()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)stroke", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6strokeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stroke", + "printedName": "stroke(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPath2D?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)stroke:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6strokeyyAA9TNSPath2DCSgF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "beginPath", + "printedName": "beginPath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)beginPath", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9beginPathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "moveTo", + "printedName": "moveTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)moveTo::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6moveToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lineTo", + "printedName": "lineTo(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)lineTo::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6lineToyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closePath", + "printedName": "closePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)closePath", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9closePathyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arc:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC3arcyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arc", + "printedName": "arc(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arc::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC3arcyySf_S4fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "arcTo", + "printedName": "arcTo(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)arcTo:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC5arcToyySf_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bezierCurveTo", + "printedName": "bezierCurveTo(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)bezierCurveTo::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13bezierCurveToyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)ellipse:::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7ellipseyySf_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ellipse", + "printedName": "ellipse(_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)ellipse::::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7ellipseyySf_S6fSbtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyypF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clip", + "printedName": "clip(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clip::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4clipyyAA9TNSPath2DC_AA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearRect", + "printedName": "clearRect(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)clearRect::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9clearRectyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLineDash", + "printedName": "setLineDash(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setLineDash:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11setLineDashyySaySfGF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCanvas", + "printedName": "getCanvas()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getCanvas", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC03getA0AA0C0CyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createLinearGradient", + "printedName": "createLinearGradient(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSLinearGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSLinearGradient", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSLinearGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createLinearGradient::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC20createLinearGradientyAA13TNSColorStyleC09TNSLinearH0CSf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRadialGradient", + "printedName": "createRadialGradient(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSRadialGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSRadialGradient", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSRadialGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createRadialGradient::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC20createRadialGradientyAA13TNSColorStyleC09TNSRadialH0CSf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createConicGradient", + "printedName": "createConicGradient(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSConicGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSConicGradient", + "usr": "s:12CanvasNative13TNSColorStyleC16TNSConicGradientC" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createConicGradient:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC19createConicGradientyAA13TNSColorStyleC08TNSConicH0CSf_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createPattern", + "printedName": "createPattern(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createPattern::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13createPatternyypSgyp_AA20TNSPatternRepetitionOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setTransform", + "printedName": "setTransform(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)setTransform::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12setTransformyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scale", + "printedName": "scale(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)scale::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC5scaleyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rotate", + "printedName": "rotate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)rotate:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC6rotateyySfF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "translate", + "printedName": "translate(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)translate::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9translateyySf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quadraticCurveTo", + "printedName": "quadraticCurveTo(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)quadraticCurveTo::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC16quadraticCurveToyySf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S4ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "drawImage", + "printedName": "drawImage(_:_:_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)drawImage:::::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9drawImageyyyp_S8ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImageData", + "printedName": "createImageData(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createImageData::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15createImageDatayAA08TNSImageH0Cs5Int32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createImageData", + "printedName": "createImageData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)createImageData:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15createImageDatayAA08TNSImageH0CAFF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageData", + "printedName": "getImageData(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getImageData::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12getImageDatayAA08TNSImageH0CSf_S3ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putImageData", + "printedName": "putImageData(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)putImageData:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12putImageDatayyAA08TNSImageH0C_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putImageData", + "printedName": "putImageData(_:_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSImageData", + "printedName": "CanvasNative.TNSImageData", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageData" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)putImageData:::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC12putImageDatayyAA08TNSImageH0C_S6ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLineDash", + "printedName": "getLineDash()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)getLineDash", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11getLineDashSaySfGyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)save", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC4saveyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restore", + "printedName": "restore()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)restore", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC7restoreyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "measureText", + "printedName": "measureText(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextMetrics", + "printedName": "CanvasNative.TNSTextMetrics", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)measureText:", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC11measureTextyAA14TNSTextMetricsCSSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetTransform", + "printedName": "resetTransform()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)resetTransform", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC14resetTransformyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transform", + "printedName": "transform(_:_:_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)transform::::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC9transformyySf_S5ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbSf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbSf_SfAA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInPath", + "printedName": "isPointInPath(_:_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "TNSFillRule", + "printedName": "CanvasNative.TNSFillRule", + "usr": "c:@M@CanvasNative@E@TNSFillRule" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInPath::::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC13isPointInPathySbAA9TNSPath2DC_S2fAA11TNSFillRuleOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInStroke", + "printedName": "isPointInStroke(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInStroke::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15isPointInStrokeySbSf_SftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPointInStroke", + "printedName": "isPointInStroke(_:_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TNSPath2D", + "printedName": "CanvasNative.TNSPath2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSPath2D" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)isPointInStroke:::", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC15isPointInStrokeySbAA9TNSPath2DC_S2ftF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext2D", + "printedName": "CanvasNative.TNSCanvasRenderingContext2D", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D(im)init", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext2D", + "mangledName": "$s12CanvasNative27TNSCanvasRenderingContext2DC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvasRenderingContext2D", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "superclassNames": [ + "CanvasNative.TNSCanvasRenderingContext", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_lose_context", + "printedName": "TNS_WEBGL_lose_context", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(canvas:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_lose_context", + "printedName": "CanvasNative.TNS_WEBGL_lose_context", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context" + }, + { + "kind": "TypeNominal", + "name": "TNSCanvas", + "printedName": "CanvasNative.TNSCanvas", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvas" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)initWithCanvas:", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC6canvasAcA9TNSCanvasC_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loseContext", + "printedName": "loseContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)loseContext", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC0E7ContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restoreContext", + "printedName": "restoreContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)restoreContext", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC14restoreContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_lose_context", + "printedName": "CanvasNative.TNS_WEBGL_lose_context", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context(im)init", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_lose_context", + "mangledName": "$s12CanvasNative22TNS_WEBGL_lose_contextC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_lose_context", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_compressed_texture_etc", + "printedName": "TNS_WEBGL_compressed_texture_etc", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_compressed_texture_etc", + "printedName": "CanvasNative.TNS_WEBGL_compressed_texture_etc", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)init", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "COMPRESSED_R11_EAC", + "printedName": "COMPRESSED_R11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC18COMPRESSED_R11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC18COMPRESSED_R11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SIGNED_R11_EAC", + "printedName": "COMPRESSED_SIGNED_R11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SIGNED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_SIGNED_R11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SIGNED_R11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_SIGNED_R11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RG11_EAC", + "printedName": "COMPRESSED_RG11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC19COMPRESSED_RG11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC19COMPRESSED_RG11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SIGNED_RG11_EAC", + "printedName": "COMPRESSED_SIGNED_RG11_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SIGNED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC26COMPRESSED_SIGNED_RG11_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SIGNED_RG11_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC26COMPRESSED_SIGNED_RG11_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB8_ETC2", + "printedName": "COMPRESSED_RGB8_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC20COMPRESSED_RGB8_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC20COMPRESSED_RGB8_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGBA8_ETC2_EAC", + "printedName": "COMPRESSED_RGBA8_ETC2_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGBA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_RGBA8_ETC2_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGBA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC25COMPRESSED_RGBA8_ETC2_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_ETC2", + "printedName": "COMPRESSED_SRGB8_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC21COMPRESSED_SRGB8_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC21COMPRESSED_SRGB8_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "printedName": "COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC32COMPRESSED_SRGB8_ALPHA8_ETC2_EACs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC32COMPRESSED_SRGB8_ALPHA8_ETC2_EACs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "printedName": "COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC40COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC40COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "printedName": "COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(py)COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC41COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc(im)COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC41COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_compressed_texture_etc", + "mangledName": "$s12CanvasNative32TNS_WEBGL_compressed_texture_etcC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_compressed_texture_etc", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_shader_texture_lod", + "printedName": "TNS_EXT_shader_texture_lod", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_shader_texture_lod", + "printedName": "CanvasNative.TNS_EXT_shader_texture_lod", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod(im)init", + "mangledName": "$s12CanvasNative26TNS_EXT_shader_texture_lodCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_shader_texture_lod", + "mangledName": "$s12CanvasNative26TNS_EXT_shader_texture_lodC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_shader_texture_lod", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageAssetFormat", + "printedName": "TNSImageAssetFormat", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueACSi_tcfc", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueACSi_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueSivp", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative19TNSImageAssetFormatO8rawValueSivg", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO8rawValueSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "JPG", + "printedName": "JPG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatJPG", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3JPGyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "PNG", + "printedName": "PNG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatPNG", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3PNGyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "ICO", + "printedName": "ICO", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatICO", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3ICOyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "BMP", + "printedName": "BMP", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatBMP", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO3BMPyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "TIFF", + "printedName": "TIFF", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageAssetFormat.Type) -> CanvasNative.TNSImageAssetFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageAssetFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat@TNSImageAssetFormatTIFF", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO4TIFFyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat", + "mangledName": "$s12CanvasNative19TNSImageAssetFormatO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageAssetFormat", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextBaseLine", + "printedName": "TNSTextBaseLine", + "children": [ + { + "kind": "Var", + "name": "Top", + "printedName": "Top", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineTop", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO3TopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Hanging", + "printedName": "Hanging", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineHanging", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO7HangingyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Middle", + "printedName": "Middle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineMiddle", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6MiddleyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Alphabetic", + "printedName": "Alphabetic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineAlphabetic", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO10AlphabeticyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "Ideographic", + "printedName": "Ideographic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineIdeographic", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO11IdeographicyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "Bottom", + "printedName": "Bottom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSTextBaseLine.Type) -> CanvasNative.TNSTextBaseLine", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSTextBaseLine.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine@TNSTextBaseLineBottom", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6BottomyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextBaseLine?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative15TNSTextBaseLineO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSTextBaseLine?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextBaseLine", + "printedName": "CanvasNative.TNSTextBaseLine", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative15TNSTextBaseLineO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSTextBaseLine", + "mangledName": "$s12CanvasNative15TNSTextBaseLineO", + "moduleName": "CanvasNative", + "objc_name": "TNSTextBaseLine", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "GLKit", + "printedName": "GLKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "CanvasGLKView", + "printedName": "CanvasGLKView", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)init", + "mangledName": "$s12CanvasNative0A7GLKViewCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)initWithFrame:", + "mangledName": "$s12CanvasNative0A7GLKViewC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsDisplay", + "printedName": "setNeedsDisplay()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)setNeedsDisplay", + "mangledName": "$s12CanvasNative0A7GLKViewC15setNeedsDisplayyyF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "setNeedsDisplay", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNeedsDisplay", + "printedName": "setNeedsDisplay(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)setNeedsDisplayInRect:", + "mangledName": "$s12CanvasNative0A7GLKViewC15setNeedsDisplayyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "setNeedsDisplayInRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:context:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasGLKView", + "printedName": "CanvasNative.CanvasGLKView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "EAGLContext", + "printedName": "OpenGLES.EAGLContext", + "usr": "c:objc(cs)EAGLContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView(im)initWithFrame:context:", + "mangledName": "$s12CanvasNative0A7GLKViewC5frame7contextACSo6CGRectV_So11EAGLContextCtcfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:context:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)CanvasGLKView", + "mangledName": "$s12CanvasNative0A7GLKViewC", + "moduleName": "CanvasNative", + "objc_name": "CanvasGLKView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)GLKView", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "GLKit.GLKView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CanvasCPUView", + "printedName": "CanvasCPUView", + "children": [ + { + "kind": "Var", + "name": "ignorePixelScaling", + "printedName": "ignorePixelScaling", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(py)ignorePixelScaling", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)ignorePixelScaling", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)setIgnorePixelScaling:", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative0A7CPUViewC18ignorePixelScalingSbvM", + "mangledName": "$s12CanvasNative0A7CPUViewC18ignorePixelScalingSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasCPUView", + "printedName": "CanvasNative.CanvasCPUView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)init", + "mangledName": "$s12CanvasNative0A7CPUViewCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasCPUView", + "printedName": "CanvasNative.CanvasCPUView", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)initWithFrame:", + "mangledName": "$s12CanvasNative0A7CPUViewC5frameACSo6CGRectV_tcfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView(im)drawRect:", + "mangledName": "$s12CanvasNative0A7CPUViewC4drawyySo6CGRectVF", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)CanvasCPUView", + "mangledName": "$s12CanvasNative0A7CPUViewC", + "moduleName": "CanvasNative", + "objc_name": "CanvasCPUView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RenderListener", + "printedName": "RenderListener", + "children": [ + { + "kind": "Function", + "name": "didDraw", + "printedName": "didDraw()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative14RenderListenerP7didDrawyyF", + "mangledName": "$s12CanvasNative14RenderListenerP7didDrawyyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.RenderListener>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12CanvasNative14RenderListenerP", + "mangledName": "$s12CanvasNative14RenderListenerP", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextType", + "printedName": "ContextType", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO4noneyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO4noneyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Var", + "name": "webGL", + "printedName": "webGL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO5webGLyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO5webGLyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Var", + "name": "twoD", + "printedName": "twoD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.ContextType.Type) -> CanvasNative.ContextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.ContextType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12CanvasNative11ContextTypeO4twoDyA2CmF", + "mangledName": "$s12CanvasNative11ContextTypeO4twoDyA2CmF", + "moduleName": "CanvasNative" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.ContextType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative11ContextTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueACSgSi_tcfc", + "moduleName": "CanvasNative", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative11ContextTypeO8rawValueSivp", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueSivp", + "moduleName": "CanvasNative", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative11ContextTypeO8rawValueSivg", + "mangledName": "$s12CanvasNative11ContextTypeO8rawValueSivg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12CanvasNative11ContextTypeO", + "mangledName": "$s12CanvasNative11ContextTypeO", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GLRenderer", + "printedName": "GLRenderer", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvp", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvg", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSContextAttributes", + "printedName": "CanvasNative.TNSContextAttributes", + "usr": "c:@M@CanvasNative@objc(cs)TNSContextAttributes" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvs", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvM", + "mangledName": "$s12CanvasNative10GLRendererC10attributesAA20TNSContextAttributesCvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateDirection", + "printedName": "updateDirection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC15updateDirectionyySSF", + "mangledName": "$s12CanvasNative10GLRendererC15updateDirectionyySSF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "invalidateState", + "printedName": "invalidateState", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivp", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivg", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivs", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivs", + "moduleName": "CanvasNative", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC15invalidateStateSivM", + "mangledName": "$s12CanvasNative10GLRendererC15invalidateStateSivM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvp", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvg", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64Vvs", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64Vvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC7contexts5Int64VvM", + "mangledName": "$s12CanvasNative10GLRendererC7contexts5Int64VvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC4viewSo6UIViewCvp", + "mangledName": "$s12CanvasNative10GLRendererC4viewSo6UIViewCvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC4viewSo6UIViewCvg", + "mangledName": "$s12CanvasNative10GLRendererC4viewSo6UIViewCvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "didMoveOffMain", + "printedName": "didMoveOffMain", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvp", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvg", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvs", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC14didMoveOffMainSbvM", + "mangledName": "$s12CanvasNative10GLRendererC14didMoveOffMainSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferWidth", + "printedName": "drawingBufferWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC18drawingBufferWidthSivp", + "mangledName": "$s12CanvasNative10GLRendererC18drawingBufferWidthSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC18drawingBufferWidthSivg", + "mangledName": "$s12CanvasNative10GLRendererC18drawingBufferWidthSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "drawingBufferHeight", + "printedName": "drawingBufferHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC19drawingBufferHeightSivp", + "mangledName": "$s12CanvasNative10GLRendererC19drawingBufferHeightSivp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC19drawingBufferHeightSivg", + "mangledName": "$s12CanvasNative10GLRendererC19drawingBufferHeightSivg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC5widthSfvp", + "mangledName": "$s12CanvasNative10GLRendererC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC5widthSfvg", + "mangledName": "$s12CanvasNative10GLRendererC5widthSfvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC6heightSfvp", + "mangledName": "$s12CanvasNative10GLRendererC6heightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC6heightSfvg", + "mangledName": "$s12CanvasNative10GLRendererC6heightSfvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setupContext", + "printedName": "setupContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC12setupContextyyF", + "mangledName": "$s12CanvasNative10GLRendererC12setupContextyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(useCpu:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GLRenderer", + "printedName": "CanvasNative.GLRenderer", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative10GLRendererC6useCpuACSb_tcfc", + "mangledName": "$s12CanvasNative10GLRendererC6useCpuACSb_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setRenderListener", + "printedName": "setRenderListener(listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.RenderListener?", + "children": [ + { + "kind": "TypeNominal", + "name": "RenderListener", + "printedName": "CanvasNative.RenderListener", + "usr": "s:12CanvasNative14RenderListenerP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC17setRenderListener8listeneryAA0eF0_pSg_tF", + "mangledName": "$s12CanvasNative10GLRendererC17setRenderListener8listeneryAA0eF0_pSg_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isOpaque", + "printedName": "isOpaque", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvp", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvg", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvs", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvs", + "moduleName": "CanvasNative", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC8isOpaqueSbvM", + "mangledName": "$s12CanvasNative10GLRendererC8isOpaqueSbvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "ensureIsContextIsCurrent", + "printedName": "ensureIsContextIsCurrent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC015ensureIsContextE7CurrentSbyF", + "mangledName": "$s12CanvasNative10GLRendererC015ensureIsContextE7CurrentSbyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resize", + "printedName": "resize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6resizeyyF", + "mangledName": "$s12CanvasNative10GLRendererC6resizeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setup", + "printedName": "setup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5setupyyF", + "mangledName": "$s12CanvasNative10GLRendererC5setupyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "contextType", + "printedName": "contextType", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovp", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovp", + "moduleName": "CanvasNative", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovg", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovg", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContextType", + "printedName": "CanvasNative.ContextType", + "usr": "s:12CanvasNative11ContextTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovs", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0Ovs", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative10GLRendererC11contextTypeAA07ContextE0OvM", + "mangledName": "$s12CanvasNative10GLRendererC11contextTypeAA07ContextE0OvM", + "moduleName": "CanvasNative", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "render", + "printedName": "render()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6renderyyF", + "mangledName": "$s12CanvasNative10GLRendererC6renderyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5flushyyF", + "mangledName": "$s12CanvasNative10GLRendererC5flushyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ensureIsReady", + "printedName": "ensureIsReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC13ensureIsReadyyyF", + "mangledName": "$s12CanvasNative10GLRendererC13ensureIsReadyyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC5pauseyyF", + "mangledName": "$s12CanvasNative10GLRendererC5pauseyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative10GLRendererC6resumeyyF", + "mangledName": "$s12CanvasNative10GLRendererC6resumeyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "glkView", + "printedName": "glkView(_:drawIn:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GLKView", + "printedName": "GLKit.GLKView", + "usr": "c:objc(cs)GLKView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer(im)glkView:drawInRect:", + "mangledName": "$s12CanvasNative10GLRendererC7glkView_6drawInySo7GLKViewC_So6CGRectVtF", + "moduleName": "CanvasNative", + "objc_name": "glkView:drawInRect:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GLRenderer", + "printedName": "CanvasNative.GLRenderer", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer(im)init", + "mangledName": "$s12CanvasNative10GLRendererCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)GLRenderer", + "mangledName": "$s12CanvasNative10GLRendererC", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSIndexedParameter", + "printedName": "TNSIndexedParameter", + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSIndexedParameter", + "mangledName": "$s12CanvasNative19TNSIndexedParameterC", + "moduleName": "CanvasNative", + "objc_name": "TNSIndexedParameter", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_EXT_color_buffer_float", + "printedName": "TNS_EXT_color_buffer_float", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_EXT_color_buffer_float", + "printedName": "CanvasNative.TNS_EXT_color_buffer_float", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)init", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "R16F", + "printedName": "R16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG16F", + "printedName": "RG16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RG16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RG16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGB16F", + "printedName": "RGB16F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RGB16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC6RGB16Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RGB16F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC6RGB16Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R32F", + "printedName": "R32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC4R32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RG32F", + "printedName": "RG32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RG32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RG32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC5RG32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "RGBA32F", + "printedName": "RGBA32F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)RGBA32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC7RGBA32Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)RGBA32F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC7RGBA32Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "R11F_G11F_B10F", + "printedName": "R11F_G11F_B10F", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(py)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC14R11F_G11F_B10Fs5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float(im)R11F_G11F_B10F", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC14R11F_G11F_B10Fs5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_EXT_color_buffer_float", + "mangledName": "$s12CanvasNative26TNS_EXT_color_buffer_floatC", + "moduleName": "CanvasNative", + "objc_name": "TNS_EXT_color_buffer_float", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCompositeOperationType", + "printedName": "TNSCompositeOperationType", + "children": [ + { + "kind": "Var", + "name": "SourceOver", + "printedName": "SourceOver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceOver", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SourceOveryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "SourceIn", + "printedName": "SourceIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceIn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8SourceInyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "SourceOut", + "printedName": "SourceOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceOut", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9SourceOutyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "SourceAtop", + "printedName": "SourceAtop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSourceAtop", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SourceAtopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "DestinationOver", + "printedName": "DestinationOver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationOver", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO15DestinationOveryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "DestinationIn", + "printedName": "DestinationIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationIn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO13DestinationInyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "DestinationOut", + "printedName": "DestinationOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationOut", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO14DestinationOutyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "DestinationAtop", + "printedName": "DestinationAtop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDestinationAtop", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO15DestinationAtopyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "Lighter", + "printedName": "Lighter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLighter", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7LighteryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "Copy", + "printedName": "Copy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeCopy", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO4CopyyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "Xor", + "printedName": "Xor", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeXor", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO3XoryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "Multiply", + "printedName": "Multiply", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeMultiply", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8MultiplyyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "Screen", + "printedName": "Screen", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeScreen", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6ScreenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "Overlay", + "printedName": "Overlay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeOverlay", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7OverlayyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "Darken", + "printedName": "Darken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDarken", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6DarkenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "Lighten", + "printedName": "Lighten", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLighten", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO7LightenyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "ColorDodge", + "printedName": "ColorDodge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColorDodge", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10ColorDodgeyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "ColorBurn", + "printedName": "ColorBurn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColorBurn", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9ColorBurnyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "HardLight", + "printedName": "HardLight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeHardLight", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9HardLightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "SoftLight", + "printedName": "SoftLight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSoftLight", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9SoftLightyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "Difference", + "printedName": "Difference", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeDifference", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10DifferenceyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 20 + }, + { + "kind": "Var", + "name": "Exclusion", + "printedName": "Exclusion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeExclusion", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO9ExclusionyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 21 + }, + { + "kind": "Var", + "name": "Hue", + "printedName": "Hue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeHue", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO3HueyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 22 + }, + { + "kind": "Var", + "name": "Saturation", + "printedName": "Saturation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeSaturation", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10SaturationyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 23 + }, + { + "kind": "Var", + "name": "Color", + "printedName": "Color", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeColor", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO5ColoryA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 24 + }, + { + "kind": "Var", + "name": "Luminosity", + "printedName": "Luminosity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSCompositeOperationType.Type) -> CanvasNative.TNSCompositeOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSCompositeOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType@TNSCompositeOperationTypeLuminosity", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO10LuminosityyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 25 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCompositeOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSCompositeOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCompositeOperationType", + "printedName": "CanvasNative.TNSCompositeOperationType", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative25TNSCompositeOperationTypeO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSCompositeOperationType", + "mangledName": "$s12CanvasNative25TNSCompositeOperationTypeO", + "moduleName": "CanvasNative", + "objc_name": "TNSCompositeOperationType", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNSImageAsset", + "printedName": "TNSImageAsset", + "children": [ + { + "kind": "Var", + "name": "_queue", + "printedName": "_queue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cpy)_queue", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvpZ", + "moduleName": "CanvasNative", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cm)_queue", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvgZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(cm)set_queue:", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvsZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvMZ", + "mangledName": "$s12CanvasNative13TNSImageAssetC6_queueSo012OS_dispatch_E0CSgvMZ", + "moduleName": "CanvasNative", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageAsset", + "printedName": "CanvasNative.TNSImageAsset", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)init", + "mangledName": "$s12CanvasNative13TNSImageAssetCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loadImageFromPath", + "printedName": "loadImageFromPath(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromPathWithPath:", + "mangledName": "$s12CanvasNative13TNSImageAssetC17loadImageFromPath4pathSbSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromUrl", + "printedName": "loadImageFromUrl(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromUrlWithUrl:", + "mangledName": "$s12CanvasNative13TNSImageAssetC16loadImageFromUrl3urlSbSS_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromUrlAsync", + "printedName": "loadImageFromUrlAsync(url:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromUrlAsyncWithUrl:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC21loadImageFromUrlAsync3url8callbackySS_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromPathAsync", + "printedName": "loadImageFromPathAsync(path:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromPathAsyncWithPath:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC22loadImageFromPathAsync4path8callbackySS_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBuffer", + "printedName": "loadImageFromBuffer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBuffer:", + "mangledName": "$s12CanvasNative13TNSImageAssetC19loadImageFromBufferySbSo6NSDataCF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBufferAsync", + "printedName": "loadImageFromBufferAsync(_:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBufferAsync:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC24loadImageFromBufferAsync_8callbackySo6NSDataC_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBytes", + "printedName": "loadImageFromBytes(array:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBytesWithArray:", + "mangledName": "$s12CanvasNative13TNSImageAssetC18loadImageFromBytes5arraySbSays5UInt8VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromBytesAsync", + "printedName": "loadImageFromBytesAsync(array:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromBytesAsyncWithArray:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC23loadImageFromBytesAsync5array8callbackySays5UInt8VG_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromImage", + "printedName": "loadImageFromImage(image:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromImageWithImage:", + "mangledName": "$s12CanvasNative13TNSImageAssetC013loadImageFromF05imageSbSo7UIImageC_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadImageFromImageAsync", + "printedName": "loadImageFromImageAsync(image:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)loadImageFromImageAsyncWithImage:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC013loadImageFromF5Async5image8callbackySo7UIImageC_ySSSgctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRawBytes", + "printedName": "getRawBytes()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)getRawBytes", + "mangledName": "$s12CanvasNative13TNSImageAssetC11getRawBytesSpys5UInt8VGSgyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)width", + "mangledName": "$s12CanvasNative13TNSImageAssetC5widths5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)width", + "mangledName": "$s12CanvasNative13TNSImageAssetC5widths5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "height", + "printedName": "height", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)height", + "mangledName": "$s12CanvasNative13TNSImageAssetC6heights5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)height", + "mangledName": "$s12CanvasNative13TNSImageAssetC6heights5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "flipX", + "printedName": "flipX()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)flipX", + "mangledName": "$s12CanvasNative13TNSImageAssetC5flipXyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flipY", + "printedName": "flipY()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)flipY", + "mangledName": "$s12CanvasNative13TNSImageAssetC5flipYyyF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scale", + "printedName": "scale(x:y:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)scaleWithX:y:", + "mangledName": "$s12CanvasNative13TNSImageAssetC5scale1x1yys6UInt32V_AHtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(path:format:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)saveWithPath:format:", + "mangledName": "$s12CanvasNative13TNSImageAssetC4save4path6formatSbSS_AA0cD6FormatOtF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveAsync", + "printedName": "saveAsync(path:format:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TNSImageAssetFormat", + "printedName": "CanvasNative.TNSImageAssetFormat", + "usr": "c:@M@CanvasNative@E@TNSImageAssetFormat" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)saveAsyncWithPath:format:callback:", + "mangledName": "$s12CanvasNative13TNSImageAssetC9saveAsync4path6format8callbackySS_AA0cD6FormatOySbctF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(py)error", + "mangledName": "$s12CanvasNative13TNSImageAssetC5errorSSSgvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset(im)error", + "mangledName": "$s12CanvasNative13TNSImageAssetC5errorSSSgvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSImageAsset", + "mangledName": "$s12CanvasNative13TNSImageAssetC", + "moduleName": "CanvasNative", + "objc_name": "TNSImageAsset", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "Var", + "name": "Default", + "printedName": "Default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapColorSpaceConversion.Type) -> CanvasNative.TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion@TNSImageBitmapColorSpaceConversionDefault", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO7DefaultyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "None", + "printedName": "None", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapColorSpaceConversion.Type) -> CanvasNative.TNSImageBitmapColorSpaceConversion", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion@TNSImageBitmapColorSpaceConversionNone", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO4NoneyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapColorSpaceConversion", + "printedName": "CanvasNative.TNSImageBitmapColorSpaceConversion", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative34TNSImageBitmapColorSpaceConversionO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapColorSpaceConversion", + "mangledName": "$s12CanvasNative34TNSImageBitmapColorSpaceConversionO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapColorSpaceConversion", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSImageBitmapResizeQuality", + "printedName": "TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "Var", + "name": "Low", + "printedName": "Low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityLow", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO3LowyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Medium", + "printedName": "Medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityMedium", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO6MediumyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "High", + "printedName": "High", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityHigh", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO4HighyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "Pixelated", + "printedName": "Pixelated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSImageBitmapResizeQuality.Type) -> CanvasNative.TNSImageBitmapResizeQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality@TNSImageBitmapResizeQualityPixelated", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO9PixelatedyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvp", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvg", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValues5Int32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO8rawValueACSgs5Int32V_tcfc", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO8rawValueACSgs5Int32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSImageBitmapResizeQuality", + "printedName": "CanvasNative.TNSImageBitmapResizeQuality", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative27TNSImageBitmapResizeQualityO6stringACSgSS_tcfc", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO6stringACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSImageBitmapResizeQuality", + "mangledName": "$s12CanvasNative27TNSImageBitmapResizeQualityO", + "moduleName": "CanvasNative", + "objc_name": "TNSImageBitmapResizeQuality", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSCanvasRenderingContext", + "printedName": "TNSCanvasRenderingContext", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSCanvasRenderingContext", + "printedName": "CanvasNative.TNSCanvasRenderingContext", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext(im)init", + "mangledName": "$s12CanvasNative25TNSCanvasRenderingContextCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSCanvasRenderingContext", + "mangledName": "$s12CanvasNative25TNSCanvasRenderingContextC", + "moduleName": "CanvasNative", + "objc_name": "TNSCanvasRenderingContext", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_draw_buffers", + "printedName": "TNS_WEBGL_draw_buffers", + "children": [ + { + "kind": "Var", + "name": "COLOR_ATTACHMENT0_WEBGL", + "printedName": "COLOR_ATTACHMENT0_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT0_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT0_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT1_WEBGL", + "printedName": "COLOR_ATTACHMENT1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT2_WEBGL", + "printedName": "COLOR_ATTACHMENT2_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT2_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT2_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT3_WEBGL", + "printedName": "COLOR_ATTACHMENT3_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT3_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT3_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT4_WEBGL", + "printedName": "COLOR_ATTACHMENT4_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT4_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT4_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT5_WEBGL", + "printedName": "COLOR_ATTACHMENT5_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT5_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT5_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT6_WEBGL", + "printedName": "COLOR_ATTACHMENT6_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT6_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT6_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT7_WEBGL", + "printedName": "COLOR_ATTACHMENT7_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT7_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT7_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT8_WEBGL", + "printedName": "COLOR_ATTACHMENT8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT9_WEBGL", + "printedName": "COLOR_ATTACHMENT9_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT9_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC018COLOR_ATTACHMENT9_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT10_WEBGL", + "printedName": "COLOR_ATTACHMENT10_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT10_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT10_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT11_WEBGL", + "printedName": "COLOR_ATTACHMENT11_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT11_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT11_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT12_WEBGL", + "printedName": "COLOR_ATTACHMENT12_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT12_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT12_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT13_WEBGL", + "printedName": "COLOR_ATTACHMENT13_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT13_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT13_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT14_WEBGL", + "printedName": "COLOR_ATTACHMENT14_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT14_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT14_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "COLOR_ATTACHMENT15_WEBGL", + "printedName": "COLOR_ATTACHMENT15_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)COLOR_ATTACHMENT15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT15_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)COLOR_ATTACHMENT15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC019COLOR_ATTACHMENT15_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER0_WEBGL", + "printedName": "DRAW_BUFFER0_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER0_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER0_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER0_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER1_WEBGL", + "printedName": "DRAW_BUFFER1_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER1_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER1_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER1_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER2_WEBGL", + "printedName": "DRAW_BUFFER2_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER2_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER2_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER2_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER3_WEBGL", + "printedName": "DRAW_BUFFER3_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER3_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER3_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER3_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER4_WEBGL", + "printedName": "DRAW_BUFFER4_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER4_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER4_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER4_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER5_WEBGL", + "printedName": "DRAW_BUFFER5_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER5_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER5_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER5_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER6_WEBGL", + "printedName": "DRAW_BUFFER6_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER6_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER6_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER6_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER7_WEBGL", + "printedName": "DRAW_BUFFER7_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER7_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER7_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER7_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER8_WEBGL", + "printedName": "DRAW_BUFFER8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER8_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER9_WEBGL", + "printedName": "DRAW_BUFFER9_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER9_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER9_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC013DRAW_BUFFER9_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER10_WEBGL", + "printedName": "DRAW_BUFFER10_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER10_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER10_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER10_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER11_WEBGL", + "printedName": "DRAW_BUFFER11_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER11_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER11_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER11_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER12_WEBGL", + "printedName": "DRAW_BUFFER12_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER12_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER12_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER12_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER13_WEBGL", + "printedName": "DRAW_BUFFER13_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER13_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER13_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER13_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER14_WEBGL", + "printedName": "DRAW_BUFFER14_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER14_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER14_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER14_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DRAW_BUFFER15_WEBGL", + "printedName": "DRAW_BUFFER15_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)DRAW_BUFFER15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER15_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)DRAW_BUFFER15_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC014DRAW_BUFFER15_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_COLOR_ATTACHMENTS_WEBGL", + "printedName": "MAX_COLOR_ATTACHMENTS_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)MAX_COLOR_ATTACHMENTS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC022MAX_COLOR_ATTACHMENTS_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)MAX_COLOR_ATTACHMENTS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC022MAX_COLOR_ATTACHMENTS_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "MAX_DRAW_BUFFERS_WEBGL", + "printedName": "MAX_DRAW_BUFFERS_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(py)MAX_DRAW_BUFFERS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC017MAX_DRAW_BUFFERS_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)MAX_DRAW_BUFFERS_WEBGL", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC017MAX_DRAW_BUFFERS_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "drawBuffersWEBGL", + "printedName": "drawBuffersWEBGL(buffers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)drawBuffersWEBGLWithBuffers:", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC0e7BuffersD00F0ySays5Int32VG_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_draw_buffers", + "printedName": "CanvasNative.TNS_WEBGL_draw_buffers", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers(im)init", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_draw_buffers", + "mangledName": "$s12CanvasNative22TNS_WEBGL_draw_buffersC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_draw_buffers", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OpenGLES", + "printedName": "OpenGLES", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "TNS_WEBGL_depth_texture", + "printedName": "TNS_WEBGL_depth_texture", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNS_WEBGL_depth_texture", + "printedName": "CanvasNative.TNS_WEBGL_depth_texture", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(im)init", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "UNSIGNED_INT_24_8_WEBGL", + "printedName": "UNSIGNED_INT_24_8_WEBGL", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(py)UNSIGNED_INT_24_8_WEBGL", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC018UNSIGNED_INT_24_8_D0s5Int32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture(im)UNSIGNED_INT_24_8_WEBGL", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC018UNSIGNED_INT_24_8_D0s5Int32Vvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNS_WEBGL_depth_texture", + "mangledName": "$s12CanvasNative23TNS_WEBGL_depth_textureC", + "moduleName": "CanvasNative", + "objc_name": "TNS_WEBGL_depth_texture", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "CanvasNative" + }, + { + "kind": "TypeDecl", + "name": "CanvasColorStyleType", + "printedName": "CanvasColorStyleType", + "children": [ + { + "kind": "Var", + "name": "Color", + "printedName": "Color", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypeColor", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO0C0yA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "Gradient", + "printedName": "Gradient", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypeGradient", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8GradientyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "Pattern", + "printedName": "Pattern", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.CanvasColorStyleType.Type) -> CanvasNative.CanvasColorStyleType", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.CanvasColorStyleType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType@CanvasColorStyleTypePattern", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO7PatternyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueSSvp", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueSSvg", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueSSvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.CanvasColorStyleType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative0A14ColorStyleTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO8rawValueACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType", + "mangledName": "$s12CanvasNative0A14ColorStyleTypeO", + "moduleName": "CanvasNative", + "objc_name": "CanvasColorStyleType", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "children": [ + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle(im)getStyleType", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP03getE4TypeAA0adeG0OyF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : CanvasNative.ICanvasColorStyle>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPatternRepetition", + "printedName": "TNSPatternRepetition", + "children": [ + { + "kind": "Var", + "name": "Repeat", + "printedName": "Repeat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeat", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO6RepeatyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "RepeatX", + "printedName": "RepeatX", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeatX", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO7RepeatXyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "RepeatY", + "printedName": "RepeatY", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionRepeatY", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO7RepeatYyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "NoRepeat", + "printedName": "NoRepeat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CanvasNative.TNSPatternRepetition.Type) -> CanvasNative.TNSPatternRepetition", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "CanvasNative.TNSPatternRepetition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition@TNSPatternRepetitionNoRepeat", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8NoRepeatyA2CmF", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvp", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvg", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValues6UInt32Vvg", + "moduleName": "CanvasNative", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPatternRepetition?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CanvasNative.TNSPatternRepetition?", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPatternRepetition", + "printedName": "CanvasNative.TNSPatternRepetition", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative20TNSPatternRepetitionO8rawValueACSgSS_tcfc", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO8rawValueACSgSS_tcfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "c:@M@CanvasNative@E@TNSPatternRepetition", + "mangledName": "$s12CanvasNative20TNSPatternRepetitionO", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSColorStyle", + "printedName": "TNSColorStyle", + "children": [ + { + "kind": "TypeDecl", + "name": "TNSColor", + "printedName": "TNSColor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColor", + "printedName": "CanvasNative.TNSColorStyle.TNSColor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0CyAESScfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0CyAESScfc", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "color", + "printedName": "color", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C5colorSSvp", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C5colorSSvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C5colorSSvg", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C5colorSSvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C03getD4TypeAA0a5ColordF0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C03getD4TypeAA0a5ColordF0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColor", + "printedName": "CanvasNative.TNSColorStyle.TNSColor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC0C0CAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0CAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC0C0C", + "mangledName": "$s12CanvasNative13TNSColorStyleC0C0C", + "moduleName": "CanvasNative", + "objc_name": "TNSColor", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSGradient", + "printedName": "TNSGradient", + "children": [ + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC03getD4TypeAA0a5ColordG0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC03getD4TypeAA0a5ColordG0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addColorStop", + "printedName": "addColorStop(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC12addColorStopyySf_SStF", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC12addColorStopyySf_SStF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSGradient", + "printedName": "CanvasNative.TNSColorStyle.TNSGradient", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientCAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientCAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC11TNSGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSLinearGradient", + "printedName": "TNSLinearGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSLinearGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC17TNSLinearGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSLinearGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSRadialGradient", + "printedName": "TNSRadialGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC17TNSRadialGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC17TNSRadialGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSRadialGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSConicGradient", + "printedName": "TNSConicGradient", + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC16TNSConicGradientC", + "mangledName": "$s12CanvasNative13TNSColorStyleC16TNSConicGradientC", + "moduleName": "CanvasNative", + "objc_name": "TNSConicGradient", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "s:12CanvasNative13TNSColorStyleC11TNSGradientC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CanvasNative.TNSColorStyle.TNSGradient", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TNSPattern", + "printedName": "TNSPattern", + "children": [ + { + "kind": "Function", + "name": "setTransform", + "printedName": "setTransform(matrix:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TNSDOMMatrix", + "printedName": "CanvasNative.TNSDOMMatrix", + "usr": "c:@M@CanvasNative@objc(cs)TNSDOMMatrix" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC12setTransform6matrixyAA12TNSDOMMatrixC_tF", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC12setTransform6matrixyAA12TNSDOMMatrixC_tF", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStyleType", + "printedName": "getStyleType()", + "children": [ + { + "kind": "TypeNominal", + "name": "CanvasColorStyleType", + "printedName": "CanvasNative.CanvasColorStyleType", + "usr": "c:@M@CanvasNative@E@CanvasColorStyleType" + } + ], + "declKind": "Func", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC03getD4TypeAA0a5ColordG0OyF", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC03getD4TypeAA0a5ColordG0OyF", + "moduleName": "CanvasNative", + "objc_name": "getStyleType", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSPattern", + "printedName": "CanvasNative.TNSColorStyle.TNSPattern", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC" + } + ], + "declKind": "Constructor", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternCAEycfc", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternCAEycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12CanvasNative13TNSColorStyleC10TNSPatternC", + "mangledName": "$s12CanvasNative13TNSColorStyleC10TNSPatternC", + "moduleName": "CanvasNative", + "objc_name": "TNSPattern", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ICanvasColorStyle", + "printedName": "ICanvasColorStyle", + "usr": "c:@M@CanvasNative@objc(pl)ICanvasColorStyle", + "mangledName": "$s12CanvasNative17ICanvasColorStyleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSColorStyle", + "printedName": "CanvasNative.TNSColorStyle", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle(im)init", + "mangledName": "$s12CanvasNative13TNSColorStyleCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSColorStyle", + "mangledName": "$s12CanvasNative13TNSColorStyleC", + "moduleName": "CanvasNative", + "objc_name": "TNSColorStyle", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CanvasNative", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TNSTextMetrics", + "printedName": "TNSTextMetrics", + "children": [ + { + "kind": "Var", + "name": "width", + "printedName": "width", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)width", + "mangledName": "$s12CanvasNative14TNSTextMetricsC5widthSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)width", + "mangledName": "$s12CanvasNative14TNSTextMetricsC5widthSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxLeft", + "printedName": "actualBoundingBoxLeft", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxLeft", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21actualBoundingBoxLeftSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxLeft", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21actualBoundingBoxLeftSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxRight", + "printedName": "actualBoundingBoxRight", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxRight", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22actualBoundingBoxRightSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxRight", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22actualBoundingBoxRightSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxAscent", + "printedName": "actualBoundingBoxAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC23actualBoundingBoxAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC23actualBoundingBoxAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualBoundingBoxDescent", + "printedName": "actualBoundingBoxDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)actualBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC24actualBoundingBoxDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)actualBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC24actualBoundingBoxDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fontBoundingBoxAscent", + "printedName": "fontBoundingBoxAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)fontBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21fontBoundingBoxAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)fontBoundingBoxAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC21fontBoundingBoxAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fontBoundingBoxDescent", + "printedName": "fontBoundingBoxDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)fontBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22fontBoundingBoxDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)fontBoundingBoxDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC22fontBoundingBoxDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emHeightAscent", + "printedName": "emHeightAscent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)emHeightAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC14emHeightAscentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)emHeightAscent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC14emHeightAscentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emHeightDescent", + "printedName": "emHeightDescent", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)emHeightDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15emHeightDescentSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)emHeightDescent", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15emHeightDescentSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hangingBaseline", + "printedName": "hangingBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)hangingBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15hangingBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)hangingBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC15hangingBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alphabeticBaseline", + "printedName": "alphabeticBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)alphabeticBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC18alphabeticBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)alphabeticBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC18alphabeticBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ideographicBaseline", + "printedName": "ideographicBaseline", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(py)ideographicBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC19ideographicBaselineSfvp", + "moduleName": "CanvasNative", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)ideographicBaseline", + "mangledName": "$s12CanvasNative14TNSTextMetricsC19ideographicBaselineSfvg", + "moduleName": "CanvasNative", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TNSTextMetrics", + "printedName": "CanvasNative.TNSTextMetrics", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics" + } + ], + "declKind": "Constructor", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics(im)init", + "mangledName": "$s12CanvasNative14TNSTextMetricsCACycfc", + "moduleName": "CanvasNative", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@CanvasNative@objc(cs)TNSTextMetrics", + "mangledName": "$s12CanvasNative14TNSTextMetricsC", + "moduleName": "CanvasNative", + "objc_name": "TNSTextMetrics", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "Function", + "name": "resize", + "printedName": "resize(_:fillWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Iterator.Element" + } + ], + "declKind": "Func", + "usr": "s:Sm12CanvasNativeE6resize_8fillWithySi_7ElementQztF", + "mangledName": "$sSm12CanvasNativeE6resize_8fillWithySi_7ElementQztF", + "moduleName": "CanvasNative", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeReplaceableCollection>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:Sm", + "mangledName": "$sSm", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Collection, τ_0_0.SubSequence : Swift.RangeReplaceableCollection>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "usr": "s:ST", + "mangledName": "$sST" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 215, + "length": 4, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 229, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 245, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextAlignment.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSAnimationFrame.swift", + "kind": "Dictionary", + "offset": 304, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSAnimationFrame.swift", + "kind": "FloatLiteral", + "offset": 403, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSFillRule.swift", + "kind": "IntegerLiteral", + "offset": 205, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageData.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 12, + "value": "\"CanvasNative.TNSImageData\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextDirection.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNS_ANGLE_instanced_arrays.swift", + "kind": "StringLiteral", + "offset": 299, + "length": 26, + "value": "\"CanvasNative.TNS_ANGLE_instanced_arrays\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 308, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 419, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1191, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1305, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "StringLiteral", + "offset": 1345, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1392, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1437, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 1621, + "length": 9, + "value": "[0, 0, 0, 0]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 1657, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 1723, + "length": 24, + "value": "[true, true, true, true]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1779, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1870, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1910, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1948, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 10, + "value": "0xFFFFFFFF" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2038, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2181, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 2231, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "Array", + "offset": 4155, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7112, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 7731, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 8376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "IntegerLiteral", + "offset": 9867, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "BooleanLiteral", + "offset": 10603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSCanvas.swift", + "kind": "StringLiteral", + "offset": 219, + "length": 9, + "value": "\"CanvasNative.TNSCanvas\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 328, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 354, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 403, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 492, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 599, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSContextAttributes.swift", + "kind": "BooleanLiteral", + "offset": 633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextEncoder.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapPremultiplyAlpha.swift", + "kind": "IntegerLiteral", + "offset": 262, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapPremultiplyAlpha.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineJoin.swift", + "kind": "IntegerLiteral", + "offset": 200, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineJoin.swift", + "kind": "IntegerLiteral", + "offset": 215, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGL2RenderingContext.swift", + "kind": "Array", + "offset": 20793, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGL2RenderingContext.swift", + "kind": "Array", + "offset": 20845, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineCap.swift", + "kind": "IntegerLiteral", + "offset": 196, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSLineCap.swift", + "kind": "IntegerLiteral", + "offset": 211, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSPath2D.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSTextDecoder.swift", + "kind": "IntegerLiteral", + "offset": 223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLActiveInfo.swift", + "kind": "StringLiteral", + "offset": 166, + "length": 18, + "value": "\"CanvasNative.TNSWebGLActiveInfo\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 366, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 427, + "length": 2, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "StringLiteral", + "offset": 585, + "length": 274, + "value": "\"precision highp float;\nattribute vec4 aPosition;\nuniform mat4 uTextureMatrix;\nvarying vec2 TexCoord;\nvoid main(){\nvec2 clipSpace = (1.0 - 2.0 * aPosition.xy);\nTexCoord = aPosition.xy;\ngl_Position = vec4(clipSpace, 0.0, 1.0);\n}\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSRender.swift", + "kind": "StringLiteral", + "offset": 906, + "length": 170, + "value": "\"precision highp float;\nvarying vec2 TexCoord;\nuniform sampler2D uSampler;\nvoid main(){\ngl_FragColor = texture2D(uSampler, TexCoord);\n}\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "IntegerLiteral", + "offset": 278, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 332, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 360, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 453, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSSVG.swift", + "kind": "BooleanLiteral", + "offset": 402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 543, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 617, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 674, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "StringLiteral", + "offset": 721, + "length": 9, + "value": "\"default\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 825, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 939, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "BooleanLiteral", + "offset": 983, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 1033, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2242, + "length": 6, + "value": "0x1401" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2278, + "length": 6, + "value": "0x1406" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 6, + "value": "0x140B" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2370, + "length": 6, + "value": "0x8363" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2423, + "length": 6, + "value": "0x8033" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2476, + "length": 6, + "value": "0x8034" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2516, + "length": 6, + "value": "0x1909" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2552, + "length": 6, + "value": "0x1906" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2598, + "length": 6, + "value": "0x190A" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2632, + "length": 6, + "value": "0x1907" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 2667, + "length": 6, + "value": "0x1908" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "IntegerLiteral", + "offset": 15164, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLRenderingContext.swift", + "kind": "StringLiteral", + "offset": 204, + "length": 24, + "value": "\"CanvasNative.TNSWebGLRenderingContext\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmap.swift", + "kind": "StringLiteral", + "offset": 233, + "length": 22, + "value": "\"Failed to load image\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmap.swift", + "kind": "StringLiteral", + "offset": 174, + "length": 14, + "value": "\"CanvasNative.TNSImageBitmap\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageSmoothingQuality.swift", + "kind": "IntegerLiteral", + "offset": 240, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageSmoothingQuality.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSWebGLShaderPrecisionFormat.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 29, + "value": "\"CanvasNative.TNSWebGLShaderPrecisionFormat\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCanvasRenderingContext2D.swift", + "kind": "BooleanLiteral", + "offset": 2373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCanvasRenderingContext2D.swift", + "kind": "StringLiteral", + "offset": 285, + "length": 27, + "value": "\"CanvasNative.TNSCanvasRenderingContext2D\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNS_WEBGL_lose_context.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 22, + "value": "\"CanvasNative.TNS_WEBGL_lose_context\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 810, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 823, + "length": 3, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 836, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAssetFormat.swift", + "kind": "IntegerLiteral", + "offset": 849, + "length": 4, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 10, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 11, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TextBaseLine.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 6, + "value": "5" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 180, + "length": 13, + "value": "\"CanvasNative.CanvasGLKView\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2932, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2947, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "IntegerLiteral", + "offset": 3787, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 4060, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 4545, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 4664, + "length": 5, + "value": "\"ltr\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "BooleanLiteral", + "offset": 7109, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/GLRenderer.swift", + "kind": "StringLiteral", + "offset": 2970, + "length": 10, + "value": "\"CanvasNative.GLRenderer\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSIndexedParameter.swift", + "kind": "BooleanLiteral", + "offset": 226, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 287, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 9, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 324, + "length": 10, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 344, + "length": 15, + "value": "4" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 369, + "length": 13, + "value": "5" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 392, + "length": 14, + "value": "6" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 416, + "length": 15, + "value": "7" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 441, + "length": 7, + "value": "8" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 3, + "value": "10" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 485, + "length": 8, + "value": "11" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "12" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 519, + "length": 7, + "value": "13" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "14" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 552, + "length": 7, + "value": "15" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 569, + "length": 10, + "value": "16" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 589, + "length": 9, + "value": "17" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 9, + "value": "18" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 627, + "length": 9, + "value": "19" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 10, + "value": "20" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 666, + "length": 9, + "value": "21" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 685, + "length": 3, + "value": "22" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 10, + "value": "23" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 718, + "length": 5, + "value": "24" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSCompositeOperationType.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 10, + "value": "25" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSImageAsset.swift", + "kind": "IntegerLiteral", + "offset": 217, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapColorSpaceConversion.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 4, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 249, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSImageBitmapResizeQuality.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 273, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 291, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1047, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 1081, + "length": 8, + "value": "3" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 2154, + "length": 8, + "value": "\"CanvasNative.TNSColor\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 2616, + "length": 11, + "value": "\"CanvasNative.TNSGradient\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "IntegerLiteral", + "offset": 3775, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/CanvasNative\/Source\/TNSColorStyle.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 10, + "value": "\"CanvasNative.TNSPattern\"" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextMetrics.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/triniwiz\/Desktop\/oss\/latest\/canvas\/packages\/canvas\/src-native\/canvas-ios\/TNSTextMetrics.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 14, + "value": "\"CanvasNative.TNSTextMetrics\"" + } + ] +} \ No newline at end of file diff --git a/packages/canvas/src-native/canvas-ios/dist/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64.swiftinterface b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface similarity index 97% rename from packages/canvas/src-native/canvas-ios/dist/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64.swiftinterface rename to packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 7077773a5..6f9e8ed8a 100644 --- a/packages/canvas/src-native/canvas-ios/dist/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64.swiftinterface +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) // swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CanvasNative +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation @_exported import CanvasNative import CoreVideo @@ -11,6 +12,7 @@ import OpenGLES import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSDOMMatrix) public class TNSDOMMatrix : ObjectiveC.NSObject { @objc override dynamic public init() @objc public var a: Swift.Float { @@ -235,6 +237,10 @@ import _Concurrency @objc get @objc set } + @objc @_Concurrency.MainActor(unsafe) public var scaling: Swift.Bool { + @objc get + @objc set + } @objc @_Concurrency.MainActor(unsafe) public static func createSVGMatrix() -> CanvasNative.TNSDOMMatrix @objc @_Concurrency.MainActor(unsafe) public var handleInvalidationManually: Swift.Bool { @objc get @@ -248,6 +254,8 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ format: Swift.Float, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func snapshot() -> [Swift.UInt8] + @objc @_Concurrency.MainActor(unsafe) public func getImage(_ flip: Swift.Bool) -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func snapshotEncoded() -> [Swift.UInt8] @objc @_Concurrency.MainActor(unsafe) public var isGL: Swift.Bool { @objc get } @@ -265,11 +273,12 @@ import _Concurrency } @objc @_Concurrency.MainActor(unsafe) public func doDraw() @objc @_Concurrency.MainActor(unsafe) public func flush() - @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, useCpu: Swift.Bool) + @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, useCpu: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) public func setListener(_ listener: CanvasNative.TNSCanvasListener?) @objc @_Concurrency.MainActor(unsafe) public var fps: Swift.Float { @objc get } + @objc @_Concurrency.MainActor(unsafe) public static func layoutView(_ view: UIKit.UIView, _ width: CoreFoundation.CGFloat, _ height: CoreFoundation.CGFloat) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @objc deinit @objc @_Concurrency.MainActor(unsafe) public func resume() @@ -279,7 +288,15 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func handleMoveOffMain() @objc @_Concurrency.MainActor(unsafe) public func handleMoveToMain() @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? - @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Foundation.NSDictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, attributes: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Swift.Dictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, contextAttributes: CanvasNative.TNSContextAttributes) -> CanvasNative.TNSCanvasRenderingContext? +} +@_inheritsConvenienceInitializers @objc(TNSContextAttributes) @objcMembers public class TNSContextAttributes : ObjectiveC.NSObject, Swift.Codable { + @objc override dynamic public init() + @objc deinit + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } @_inheritsConvenienceInitializers @objcMembers @objc(TNSTextEncoder) public class TNSTextEncoder : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1363,6 +1380,9 @@ extension Swift.RangeReplaceableCollection { @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float) @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float, _ anticlockwise: Swift.Bool) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ topLeft: Swift.Float, _ topRight: Swift.Float, _ bottomRight: Swift.Float, _ bottomLeft: Swift.Float) + @objc public func roundRectWithRadii(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: [Swift.Float]) } @_inheritsConvenienceInitializers @objcMembers @objc(TNS_OES_texture_half_float) public class TNS_OES_texture_half_float : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1432,8 +1452,10 @@ extension Swift.RangeReplaceableCollection { @objc set } @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @objc @_Concurrency.MainActor(unsafe) public func toImage() -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func toData() -> Foundation.NSData? @objc deinit } @objcMembers @objc(TNSWebGLRenderingContext) public class TNSWebGLRenderingContext : CanvasNative.TNSCanvasRenderingContext { @@ -2586,7 +2608,8 @@ extension Swift.RangeReplaceableCollection { @objc public static func createTextureCache(_ context: CanvasNative.TNSWebGLRenderingContext) -> CoreVideo.CVOpenGLESTextureCache? @objc public static func createImage(_ texturecache: CoreVideo.CVOpenGLESTextureCache, _ buffer: CoreVideo.CVImageBuffer, _ textureAttributes: CoreFoundation.CFDictionary?, _ target: OpenGLES.GLenum, _ internalFormat: OpenGLES.GLint, _ width: OpenGLES.GLsizei, _ height: OpenGLES.GLsizei, _ format: OpenGLES.GLenum, _ type: OpenGLES.GLenum, _ planeIndex: Swift.Int) -> CoreVideo.CVOpenGLESTexture? @objc public static func setupRender() -> CanvasNative.TNSRender - @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreGraphics.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreFoundation.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func writeToFile(_ data: Foundation.NSData, _ path: Swift.String) throws @objc override dynamic public init() @objc deinit } @@ -2697,10 +2720,12 @@ extension Swift.RangeReplaceableCollection { @objc get @objc set } + @objc public func setFillStyleWithString(_ color: Swift.String) @objc public var fillStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set } + @objc public func setStrokeStyleWithString(_ color: Swift.String) @objc public var strokeStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set @@ -2712,6 +2737,9 @@ extension Swift.RangeReplaceableCollection { @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float) @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, topLeft: Swift.Float, topRight: Swift.Float, bottomRight: Swift.Float, bottomLeft: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: [Swift.Float]) @objc public func fill() @objc public func fill(value: Any) @objc public func fill(_ path: CanvasNative.TNSPath2D, _ rule: CanvasNative.TNSFillRule) @@ -2735,6 +2763,7 @@ extension Swift.RangeReplaceableCollection { @objc public func getCanvas() -> CanvasNative.TNSCanvas @objc public func createLinearGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSLinearGradient @objc public func createRadialGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ r0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float, _ r1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSRadialGradient + @objc public func createConicGradient(_ startAngle: Swift.Float, _ x: Swift.Float, _ y: Swift.Float) -> CanvasNative.TNSColorStyle.TNSConicGradient @objc public func createPattern(_ value: Any, _ repetition: CanvasNative.TNSPatternRepetition) -> Any? @objc public func setTransform(_ a: Swift.Float, _ b: Swift.Float, _ c: Swift.Float, _ d: Swift.Float, _ e: Swift.Float, _ f: Swift.Float) @objc public func scale(_ x: Swift.Float, _ y: Swift.Float) @@ -2833,17 +2862,17 @@ extension Swift.RangeReplaceableCollection { public init?(string: Swift.String) } @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasGLKView) @_Concurrency.MainActor(unsafe) public class CanvasGLKView : GLKit.GLKView { - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreFoundation.CGRect) @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasCPUView) @_Concurrency.MainActor(unsafe) public class CanvasCPUView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) public var ignorePixelScaling: Swift.Bool - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc deinit } public protocol RenderListener { @@ -2860,9 +2889,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { } } @objc public class GLRenderer : ObjectiveC.NSObject, GLKit.GLKViewDelegate { - public var attributes: Foundation.NSDictionary + public var attributes: CanvasNative.TNSContextAttributes public func updateDirection(_ direction: Swift.String) - public var isDirty: Swift.Bool { + public var invalidateState: Swift.Int { get set } @@ -2901,7 +2930,7 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { public func ensureIsReady() public func pause() public func resume() - @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreGraphics.CGRect) + @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreFoundation.CGRect) } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSIndexedParameter) public class TNSIndexedParameter : ObjectiveC.NSObject { @objc deinit @@ -2972,6 +3001,8 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @objc public func loadImageFromUrl(url: Swift.String) -> Swift.Bool @objc public func loadImageFromUrlAsync(url: Swift.String, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromPathAsync(path: Swift.String, callback: @escaping (Swift.String?) -> ()) + @objc public func loadImageFromBuffer(_ buffer: Foundation.NSData) -> Swift.Bool + @objc public func loadImageFromBufferAsync(_ buffer: Foundation.NSData, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromBytes(array: [Swift.UInt8]) -> Swift.Bool @objc public func loadImageFromBytesAsync(array: [Swift.UInt8], callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromImage(image: UIKit.UIImage) -> Swift.Bool @@ -3178,6 +3209,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSRadialGradient) public class TNSRadialGradient : CanvasNative.TNSColorStyle.TNSGradient { @objc deinit } + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSConicGradient) public class TNSConicGradient : CanvasNative.TNSColorStyle.TNSGradient { + @objc deinit + } @_hasMissingDesignatedInitializers @objcMembers @objc(TNSPattern) public class TNSPattern : ObjectiveC.NSObject, CanvasNative.ICanvasColorStyle { @objc public func setTransform(matrix: CanvasNative.TNSDOMMatrix) @objc deinit diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 4ed65df08..eea9c7926 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 7077773a5..6f9e8ed8a 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30) +// swift-compiler-version: Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50) // swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CanvasNative +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation @_exported import CanvasNative import CoreVideo @@ -11,6 +12,7 @@ import OpenGLES import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSDOMMatrix) public class TNSDOMMatrix : ObjectiveC.NSObject { @objc override dynamic public init() @objc public var a: Swift.Float { @@ -235,6 +237,10 @@ import _Concurrency @objc get @objc set } + @objc @_Concurrency.MainActor(unsafe) public var scaling: Swift.Bool { + @objc get + @objc set + } @objc @_Concurrency.MainActor(unsafe) public static func createSVGMatrix() -> CanvasNative.TNSDOMMatrix @objc @_Concurrency.MainActor(unsafe) public var handleInvalidationManually: Swift.Bool { @objc get @@ -248,6 +254,8 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func toDataURLAsync(_ type: Swift.String, _ format: Swift.Float, _ callback: @escaping (Swift.String) -> Swift.Void) @objc @_Concurrency.MainActor(unsafe) public func snapshot() -> [Swift.UInt8] + @objc @_Concurrency.MainActor(unsafe) public func getImage(_ flip: Swift.Bool) -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func snapshotEncoded() -> [Swift.UInt8] @objc @_Concurrency.MainActor(unsafe) public var isGL: Swift.Bool { @objc get } @@ -265,11 +273,12 @@ import _Concurrency } @objc @_Concurrency.MainActor(unsafe) public func doDraw() @objc @_Concurrency.MainActor(unsafe) public func flush() - @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, useCpu: Swift.Bool) + @objc @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, useCpu: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) public func setListener(_ listener: CanvasNative.TNSCanvasListener?) @objc @_Concurrency.MainActor(unsafe) public var fps: Swift.Float { @objc get } + @objc @_Concurrency.MainActor(unsafe) public static func layoutView(_ view: UIKit.UIView, _ width: CoreFoundation.CGFloat, _ height: CoreFoundation.CGFloat) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @objc deinit @objc @_Concurrency.MainActor(unsafe) public func resume() @@ -279,7 +288,15 @@ import _Concurrency @objc @_Concurrency.MainActor(unsafe) public func handleMoveOffMain() @objc @_Concurrency.MainActor(unsafe) public func handleMoveToMain() @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? - @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Foundation.NSDictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, attributes: Swift.String) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(_ type: Swift.String, contextAttributes: Swift.Dictionary) -> CanvasNative.TNSCanvasRenderingContext? + @objc @_Concurrency.MainActor(unsafe) public func getContext(type: Swift.String, contextAttributes: CanvasNative.TNSContextAttributes) -> CanvasNative.TNSCanvasRenderingContext? +} +@_inheritsConvenienceInitializers @objc(TNSContextAttributes) @objcMembers public class TNSContextAttributes : ObjectiveC.NSObject, Swift.Codable { + @objc override dynamic public init() + @objc deinit + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } @_inheritsConvenienceInitializers @objcMembers @objc(TNSTextEncoder) public class TNSTextEncoder : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1363,6 +1380,9 @@ extension Swift.RangeReplaceableCollection { @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float) @objc public func ellipse(_ x: Swift.Float, _ y: Swift.Float, _ radiusX: Swift.Float, _ radiusY: Swift.Float, _ rotation: Swift.Float, _ startAngle: Swift.Float, _ endAngle: Swift.Float, _ anticlockwise: Swift.Bool) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ topLeft: Swift.Float, _ topRight: Swift.Float, _ bottomRight: Swift.Float, _ bottomLeft: Swift.Float) + @objc public func roundRectWithRadii(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: [Swift.Float]) } @_inheritsConvenienceInitializers @objcMembers @objc(TNS_OES_texture_half_float) public class TNS_OES_texture_half_float : ObjectiveC.NSObject { @objc override dynamic public init() @@ -1432,8 +1452,10 @@ extension Swift.RangeReplaceableCollection { @objc set } @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @objc @_Concurrency.MainActor(unsafe) public func toImage() -> UIKit.UIImage? + @objc @_Concurrency.MainActor(unsafe) public func toData() -> Foundation.NSData? @objc deinit } @objcMembers @objc(TNSWebGLRenderingContext) public class TNSWebGLRenderingContext : CanvasNative.TNSCanvasRenderingContext { @@ -2586,7 +2608,8 @@ extension Swift.RangeReplaceableCollection { @objc public static func createTextureCache(_ context: CanvasNative.TNSWebGLRenderingContext) -> CoreVideo.CVOpenGLESTextureCache? @objc public static func createImage(_ texturecache: CoreVideo.CVOpenGLESTextureCache, _ buffer: CoreVideo.CVImageBuffer, _ textureAttributes: CoreFoundation.CFDictionary?, _ target: OpenGLES.GLenum, _ internalFormat: OpenGLES.GLint, _ width: OpenGLES.GLsizei, _ height: OpenGLES.GLsizei, _ format: OpenGLES.GLenum, _ type: OpenGLES.GLenum, _ planeIndex: Swift.Int) -> CoreVideo.CVOpenGLESTexture? @objc public static func setupRender() -> CanvasNative.TNSRender - @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreGraphics.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func drawFrame(_ player: AVFoundation.AVPlayer, _ output: AVFoundation.AVPlayerItemVideoOutput, _ videoSize: CoreFoundation.CGSize, _ render: CanvasNative.TNSRender, _ internalFormat: Swift.Int32, _ format: Swift.Int32, _ flipYWebGL: Swift.Bool) + @objc public static func writeToFile(_ data: Foundation.NSData, _ path: Swift.String) throws @objc override dynamic public init() @objc deinit } @@ -2697,10 +2720,12 @@ extension Swift.RangeReplaceableCollection { @objc get @objc set } + @objc public func setFillStyleWithString(_ color: Swift.String) @objc public var fillStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set } + @objc public func setStrokeStyleWithString(_ color: Swift.String) @objc public var strokeStyle: CanvasNative.ICanvasColorStyle { @objc get @objc set @@ -2712,6 +2737,9 @@ extension Swift.RangeReplaceableCollection { @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float) @objc public func strokeText(_ text: Swift.String, _ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float) @objc public func rect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, topLeft: Swift.Float, topRight: Swift.Float, bottomRight: Swift.Float, bottomLeft: Swift.Float) + @objc public func roundRect(x: Swift.Float, y: Swift.Float, width: Swift.Float, height: Swift.Float, radii: Swift.Float) + @objc public func roundRect(_ x: Swift.Float, _ y: Swift.Float, _ width: Swift.Float, _ height: Swift.Float, _ radii: [Swift.Float]) @objc public func fill() @objc public func fill(value: Any) @objc public func fill(_ path: CanvasNative.TNSPath2D, _ rule: CanvasNative.TNSFillRule) @@ -2735,6 +2763,7 @@ extension Swift.RangeReplaceableCollection { @objc public func getCanvas() -> CanvasNative.TNSCanvas @objc public func createLinearGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSLinearGradient @objc public func createRadialGradient(_ x0: Swift.Float, _ y0: Swift.Float, _ r0: Swift.Float, _ x1: Swift.Float, _ y1: Swift.Float, _ r1: Swift.Float) -> CanvasNative.TNSColorStyle.TNSRadialGradient + @objc public func createConicGradient(_ startAngle: Swift.Float, _ x: Swift.Float, _ y: Swift.Float) -> CanvasNative.TNSColorStyle.TNSConicGradient @objc public func createPattern(_ value: Any, _ repetition: CanvasNative.TNSPatternRepetition) -> Any? @objc public func setTransform(_ a: Swift.Float, _ b: Swift.Float, _ c: Swift.Float, _ d: Swift.Float, _ e: Swift.Float, _ f: Swift.Float) @objc public func scale(_ x: Swift.Float, _ y: Swift.Float) @@ -2833,17 +2862,17 @@ extension Swift.RangeReplaceableCollection { public init?(string: Swift.String) } @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasGLKView) @_Concurrency.MainActor(unsafe) public class CanvasGLKView : GLKit.GLKView { - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func setNeedsDisplay(_ rect: CoreFoundation.CGRect) @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(CanvasCPUView) @_Concurrency.MainActor(unsafe) public class CanvasCPUView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) public var ignorePixelScaling: Swift.Bool - @objc dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc deinit } public protocol RenderListener { @@ -2860,9 +2889,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { } } @objc public class GLRenderer : ObjectiveC.NSObject, GLKit.GLKViewDelegate { - public var attributes: Foundation.NSDictionary + public var attributes: CanvasNative.TNSContextAttributes public func updateDirection(_ direction: Swift.String) - public var isDirty: Swift.Bool { + public var invalidateState: Swift.Int { get set } @@ -2901,7 +2930,7 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { public func ensureIsReady() public func pause() public func resume() - @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreGraphics.CGRect) + @objc public func glkView(_ view: GLKit.GLKView, drawIn rect: CoreFoundation.CGRect) } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSIndexedParameter) public class TNSIndexedParameter : ObjectiveC.NSObject { @objc deinit @@ -2972,6 +3001,8 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @objc public func loadImageFromUrl(url: Swift.String) -> Swift.Bool @objc public func loadImageFromUrlAsync(url: Swift.String, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromPathAsync(path: Swift.String, callback: @escaping (Swift.String?) -> ()) + @objc public func loadImageFromBuffer(_ buffer: Foundation.NSData) -> Swift.Bool + @objc public func loadImageFromBufferAsync(_ buffer: Foundation.NSData, callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromBytes(array: [Swift.UInt8]) -> Swift.Bool @objc public func loadImageFromBytesAsync(array: [Swift.UInt8], callback: @escaping (Swift.String?) -> ()) @objc public func loadImageFromImage(image: UIKit.UIImage) -> Swift.Bool @@ -3178,6 +3209,9 @@ public enum ContextType : Swift.Int, Swift.RawRepresentable { @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSRadialGradient) public class TNSRadialGradient : CanvasNative.TNSColorStyle.TNSGradient { @objc deinit } + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(TNSConicGradient) public class TNSConicGradient : CanvasNative.TNSColorStyle.TNSGradient { + @objc deinit + } @_hasMissingDesignatedInitializers @objcMembers @objc(TNSPattern) public class TNSPattern : ObjectiveC.NSObject, CanvasNative.ICanvasColorStyle { @objc public func setTransform(matrix: CanvasNative.TNSDOMMatrix) @objc deinit diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64.swiftdoc b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64.swiftdoc deleted file mode 100644 index 4ed65df08..000000000 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/CanvasNative.swiftmodule/x86_64.swiftdoc and /dev/null differ diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/module.modulemap b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/module.modulemap index 9d6034206..0d2a8ed0a 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/module.modulemap +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module CanvasNative { } module CanvasNative.Swift { - header "CanvasNative-Swift.h" - requires objc + header "CanvasNative-Swift.h" + requires objc } diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/_CodeSignature/CodeResources b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/_CodeSignature/CodeResources index 84ee4d44f..b8b2e7a8c 100644 --- a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/_CodeSignature/CodeResources +++ b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/CanvasNative.framework/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Headers/CanvasNative-Swift.h - bNnJdSTGDX+lOQ3MEx+FX+QrjEQ= + v9GRaHTxxe6q4UlC8oSTt0nbIL0= Headers/CanvasNative.h @@ -18,79 +18,63 @@ Headers/canvas_native.h - 7HrtnSEcCYYEDAKIdHGXXOWB7UU= + zBJ8aFrN2EDdAO5i93BySdZOF98= Info.plist - 4yMkN1MgYFEGhLSNEaGNjJgaxzw= + /frxh0dfYC4GvneCquGYzA4vBZg= Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo - vRMb+HBl2BhZPVtjOFaaxv7esCY= + 3qR7eFf1FhRToWsNa9mL5s9GNbI= - Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo + Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo - vRMb+HBl2BhZPVtjOFaaxv7esCY= + J1rz+61UypVTq/GTnzKT0MvdbwU= - Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo + Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json - Mjr8/4SD8zX0z1Jl9xA9/RT4vzI= + YpCiHNecUdatYX27wJdHuBykEO8= - Modules/CanvasNative.swiftmodule/Project/x86_64.swiftsourceinfo + Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - Mjr8/4SD8zX0z1Jl9xA9/RT4vzI= + M5AYYL5NBK945tX/21AKHDbrqAc= Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftdoc - IjkaH6M3xZGLhGgTjn6D/VUxUrg= + ECdY3x5N6YKCh2soIDhUEympMD4= Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftinterface - yruJKiKU9HizShpbpTYw63n+DUA= + M5AYYL5NBK945tX/21AKHDbrqAc= Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftmodule - TymVI5YVfRCQHHjN1KApdV2N5DM= - - Modules/CanvasNative.swiftmodule/arm64.swiftdoc - - IjkaH6M3xZGLhGgTjn6D/VUxUrg= + xaCX+gWXBXzAHeNW0T6v93kwZ6U= - Modules/CanvasNative.swiftmodule/arm64.swiftinterface + Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json - yruJKiKU9HizShpbpTYw63n+DUA= + YpCiHNecUdatYX27wJdHuBykEO8= - Modules/CanvasNative.swiftmodule/arm64.swiftmodule + Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - TymVI5YVfRCQHHjN1KApdV2N5DM= + gB7O6VkICNleKz9WPS1/h7NeTSc= Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - TkTTJlG59luRYYvsRal+S3z9rMY= + YRp9iFKV0/ZIsRIGjRB6TpBcVIc= Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - jKMiKJxYTiWMRTf5adRAZGmgzMo= + gB7O6VkICNleKz9WPS1/h7NeTSc= Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - bzTjRLka57ypNhKYQdwc4Vhpz2E= - - Modules/CanvasNative.swiftmodule/x86_64.swiftdoc - - TkTTJlG59luRYYvsRal+S3z9rMY= - - Modules/CanvasNative.swiftmodule/x86_64.swiftinterface - - jKMiKJxYTiWMRTf5adRAZGmgzMo= - - Modules/CanvasNative.swiftmodule/x86_64.swiftmodule - - bzTjRLka57ypNhKYQdwc4Vhpz2E= + or58Ddmij3c289pi28m5+IQwmWQ= Modules/module.modulemap - XZvX+DI0zyNqirarGmz86QaqQDY= + BjDNiznFmjQirdULxZi9ZgNi/VI= TNSCanvas.nib @@ -103,7 +87,7 @@ hash2 - E2bL9I6txVv3wQ0lY83QgM3EAKsIPEEBMQdKYRnpuYI= + 9hX3VzrddIRJvLS/szWEFRU8Y+cEAHleW3WHICOBYqw= Headers/CanvasNative.h @@ -124,126 +108,98 @@ hash2 - CSoi3i0lPTM/LWEkMLnvFbk8u2SvBa5000So90xtYgI= + WPv96pG+KwzZkHNVBzLwjaS9B70bip5/PCd4AjD1aHE= Modules/CanvasNative.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo hash2 - Jm/MMWWHa4XV90rHMz0OIlHcIn6fbIz04QG7NqoZRD4= + AlI+i2SM+I2f2hsgUVNE9ixz0PrlZ1Th2W/rrbKWF1Q= - Modules/CanvasNative.swiftmodule/Project/arm64.swiftsourceinfo + Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo hash2 - Jm/MMWWHa4XV90rHMz0OIlHcIn6fbIz04QG7NqoZRD4= + ywHVCDU70+c3xplF9zQ+JllXZIzWbTW/KfUl7WrzBv0= - Modules/CanvasNative.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo + Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.abi.json hash2 - e2N2fPazsaHIwVH5vrw4cO0sTQNydj+PAbIOA/l6VsA= + VtMI9SGZVFdGFfFZc0LKOHDlSj3QzO/pM0d97P7EErw= - Modules/CanvasNative.swiftmodule/Project/x86_64.swiftsourceinfo + Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - e2N2fPazsaHIwVH5vrw4cO0sTQNydj+PAbIOA/l6VsA= + JfztqpWregsi3Lr7ab7jl2ZKO6JDhRc1sQzXL/UyWmg= Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - qNYCKq46uIdd4d6zWA57dYFuaJMqJ8doTKgHwIWm6Lc= + Y1a74PsPzlrgEGtG7bKHT11kz2TfsAsT2Sm4UmK1VNY= Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - UInY81deZanJVkgkY941pvtn904bUVXWlgoV7QjDa3g= + JfztqpWregsi3Lr7ab7jl2ZKO6JDhRc1sQzXL/UyWmg= Modules/CanvasNative.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - NstgwN8DMWvk87DDMdBrb5/+XCYf058MYkGI8zg7E54= - - - Modules/CanvasNative.swiftmodule/arm64.swiftdoc - - hash2 - - qNYCKq46uIdd4d6zWA57dYFuaJMqJ8doTKgHwIWm6Lc= + WDG1A8IEntcw47+G/X/DGMaz7ZRlU0/OTYELT35Nq0k= - Modules/CanvasNative.swiftmodule/arm64.swiftinterface + Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - UInY81deZanJVkgkY941pvtn904bUVXWlgoV7QjDa3g= + VtMI9SGZVFdGFfFZc0LKOHDlSj3QzO/pM0d97P7EErw= - Modules/CanvasNative.swiftmodule/arm64.swiftmodule + Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - NstgwN8DMWvk87DDMdBrb5/+XCYf058MYkGI8zg7E54= + vy6xU0DENfz94M4PZlM951XAXemtNf1WFC+q+IBp1iA= Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - uPuiuQO3TXhQxHoBLO9P6r5h/UBg0ItpSXfc5dE8YCE= + SPlCrSLvqiOiv2YiUMpUjYaNahEHel5+PxrHlpvUgM0= Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - ES4zVo1TPrxUWtkKmpkTzi+1+5895ywhimmGXHA2Nds= + vy6xU0DENfz94M4PZlM951XAXemtNf1WFC+q+IBp1iA= Modules/CanvasNative.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - 1Pj7ia5+UOHxPlZpFEvNvsS5yNzo8n+655klEkIkUcw= - - - Modules/CanvasNative.swiftmodule/x86_64.swiftdoc - - hash2 - - uPuiuQO3TXhQxHoBLO9P6r5h/UBg0ItpSXfc5dE8YCE= - - - Modules/CanvasNative.swiftmodule/x86_64.swiftinterface - - hash2 - - ES4zVo1TPrxUWtkKmpkTzi+1+5895ywhimmGXHA2Nds= - - - Modules/CanvasNative.swiftmodule/x86_64.swiftmodule - - hash2 - - 1Pj7ia5+UOHxPlZpFEvNvsS5yNzo8n+655klEkIkUcw= + i8hQ/hfuT/1qXSV/DvDve5+MAW6gDWQYqGAOkmnUFJI= Modules/module.modulemap hash2 - 8iIkhxd5OAnp5sHOd5hd0owVgZ7+uSOi+vgsgZ/0fC8= + c22jqd6c3wxNlwA7iH09q2NMxJr84gsbuvLmUk0O2GU= TNSCanvas.nib diff --git a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative index 0fcc8399f..18a526bcc 100644 Binary files a/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative and b/packages/canvas/platforms/ios/CanvasNative.xcframework/ios-arm64_x86_64-simulator/dSYMs/CanvasNative.framework.dSYM/Contents/Resources/DWARF/CanvasNative differ diff --git a/packages/canvas/src-native/canvas-android/.idea/deploymentTargetDropDown.xml b/packages/canvas/src-native/canvas-android/.idea/deploymentTargetDropDown.xml deleted file mode 100644 index 39359257c..000000000 --- a/packages/canvas/src-native/canvas-android/.idea/deploymentTargetDropDown.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/canvas/src-native/canvas-android/.idea/gradle.xml b/packages/canvas/src-native/canvas-android/.idea/gradle.xml index c6442f990..6c1e515f3 100644 --- a/packages/canvas/src-native/canvas-android/.idea/gradle.xml +++ b/packages/canvas/src-native/canvas-android/.idea/gradle.xml @@ -7,7 +7,7 @@ - diff --git a/packages/canvas/src-native/canvas-android/.idea/misc.xml b/packages/canvas/src-native/canvas-android/.idea/misc.xml index ef115e5ee..b07d14a76 100644 --- a/packages/canvas/src-native/canvas-android/.idea/misc.xml +++ b/packages/canvas/src-native/canvas-android/.idea/misc.xml @@ -17,7 +17,7 @@