• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

excaliburjs / Excalibur / 14804036802

02 May 2025 09:58PM UTC coverage: 5.927% (-83.4%) from 89.28%
14804036802

Pull #3404

github

web-flow
Merge 5c103d7f8 into 0f2ccaeb2
Pull Request #3404: feat: added Graph module to Math

234 of 8383 branches covered (2.79%)

229 of 246 new or added lines in 1 file covered. (93.09%)

13145 existing lines in 208 files now uncovered.

934 of 15759 relevant lines covered (5.93%)

4.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/engine/Graphics/Context/render-source.ts
1
export class RenderSource {
2
  constructor(
UNCOV
3
    private _gl: WebGLRenderingContext,
×
UNCOV
4
    private _texture: WebGLTexture
×
5
  ) {}
6

7
  public use() {
UNCOV
8
    const gl = this._gl;
×
UNCOV
9
    gl.activeTexture(gl.TEXTURE0);
×
UNCOV
10
    gl.bindTexture(gl.TEXTURE_2D, this._texture);
×
11
  }
12

13
  public disable() {
14
    const gl = this._gl;
×
15
    gl.bindTexture(gl.TEXTURE_2D, null);
×
16
  }
17
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc