(stagingHandle: number)
| 131 | } |
| 132 | |
| 133 | export function commitTexture(stagingHandle: number): Texture { |
| 134 | const id = bloom_commit_texture(stagingHandle); |
| 135 | const width = bloom_get_texture_width(id); |
| 136 | const height = bloom_get_texture_height(id); |
| 137 | return { id, width, height }; |
| 138 | } |
| 139 | |
| 140 | // ============================================================ |
| 141 | // Q1: Offscreen Render Targets |
nothing calls this directly
no test coverage detected