Skip to content

Commit e42f79c

Browse files
Release (#150)
* Fix shaderdebug (#148) * fix: configure shaderdebug when creating webgl device contribution * chore: commit changeset * chore(release): bump version (#149) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 899c390 commit e42f79c

File tree

6 files changed

+21
-10
lines changed

6 files changed

+21
-10
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @antv/g-device-api
22

3+
## 1.6.1
4+
5+
### Patch Changes
6+
7+
- 5081681: Configure shaderdebug when creating webgl device contribution.
8+
39
## 1.6.0
410

511
### Minor Changes

examples/utils.ts

+4
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,17 @@ export async function initExample(
1919
const deviceContributionWebGL1 = new WebGLDeviceContribution({
2020
targets: ['webgl1'],
2121
xrCompatible: params.xrCompatible,
22+
shaderDebug: true,
23+
trackResources: true,
2224
onContextCreationError: () => {},
2325
onContextLost: () => {},
2426
onContextRestored(e) {},
2527
});
2628
const deviceContributionWebGL2 = new WebGLDeviceContribution({
2729
targets: ['webgl2', 'webgl1'],
2830
xrCompatible: params.xrCompatible,
31+
shaderDebug: true,
32+
trackResources: true,
2933
onContextCreationError: () => {},
3034
onContextLost: () => {},
3135
onContextRestored(e) {},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@antv/g-device-api",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "A Device API references WebGPU implementations",
55
"keywords": [
66
"antv",

src/webgl/Device.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ import type {
7878
BindingLayoutSamplerDescriptor_GL,
7979
EXT_texture_compression_rgtc,
8080
EXT_texture_norm16,
81-
GPlatformWebGL2Config,
8281
KHR_parallel_shader_compile,
8382
OES_draw_buffers_indexed,
8483
} from './interfaces';
@@ -249,7 +248,10 @@ export class Device_GL implements SwapChain, Device {
249248

250249
constructor(
251250
gl: WebGLRenderingContext | WebGL2RenderingContext,
252-
configuration: GPlatformWebGL2Config,
251+
configuration: Partial<{
252+
shaderDebug: boolean;
253+
trackResources: boolean;
254+
}> = {},
253255
) {
254256
this.gl = gl;
255257
this.contextAttributes = assertExists(gl.getContextAttributes());

src/webgl/WebGLDeviceContribution.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ export interface WebGLRendererPluginOptions {
77
antialias: boolean;
88
preserveDrawingBuffer: boolean;
99
premultipliedAlpha: boolean;
10+
shaderDebug: boolean;
11+
trackResources: boolean;
1012
onContextCreationError: (e: Event) => void;
1113
onContextLost: (e: Event) => void;
1214
onContextRestored: (e: Event) => void;
@@ -22,6 +24,8 @@ export class WebGLDeviceContribution implements DeviceContribution {
2224
antialias = false,
2325
preserveDrawingBuffer = false,
2426
premultipliedAlpha = true,
27+
shaderDebug,
28+
trackResources,
2529
} = this.pluginOptions;
2630
const options: WebGLContextAttributes & { xrCompatible: boolean } = {
2731
// alpha: true,
@@ -56,8 +60,8 @@ export class WebGLDeviceContribution implements DeviceContribution {
5660
}
5761

5862
return new Device_GL(gl as WebGLRenderingContext | WebGL2RenderingContext, {
59-
shaderDebug: true,
60-
trackResources: true,
63+
shaderDebug,
64+
trackResources,
6165
});
6266
}
6367

src/webgl/interfaces.ts

-5
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,6 @@ export interface EXT_texture_norm16 {
4848
RGBA16_SNORM_EXT: GLenum;
4949
}
5050

51-
export class GPlatformWebGL2Config {
52-
public trackResources = false;
53-
public shaderDebug = false;
54-
}
55-
5651
export interface BindingLayoutSamplerDescriptor_GL {
5752
gl_target: GLenum;
5853
formatKind: SamplerFormatKind;

0 commit comments

Comments
 (0)