Skip to content

Commit

Permalink
Release (#1591)
Browse files Browse the repository at this point in the history
* Fix line (#1589)

* fix: ignore isBillboard for now

* chore: commit changeset

* chore(release): bump version (#1590)

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>
  • Loading branch information
3 people authored Nov 16, 2023
1 parent 9bc34e8 commit 1004649
Show file tree
Hide file tree
Showing 13 changed files with 48 additions and 8 deletions.
7 changes: 7 additions & 0 deletions packages/g-mobile-webgl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-mobile-webgl

## 0.9.33

### Patch Changes

- Updated dependencies [951bef39]
- @antv/g-plugin-device-renderer@1.9.29

## 0.9.32

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-mobile-webgl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-mobile-webgl",
"version": "0.9.32",
"version": "0.9.33",
"description": "A renderer implemented by WebGL1/2 in mobile environment",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-plugin-3d/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-plugin-3d

## 1.9.29

### Patch Changes

- Updated dependencies [951bef39]
- @antv/g-plugin-device-renderer@1.9.29

## 1.9.28

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-3d/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-3d",
"version": "1.9.28",
"version": "1.9.29",
"description": "Provide 3D extension for G",
"keywords": [
"antv",
Expand Down
6 changes: 6 additions & 0 deletions packages/g-plugin-device-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-plugin-device-renderer

## 1.9.29

### Patch Changes

- 951bef39: Cancel downgrading to Line.

## 1.9.28

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-device-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-device-renderer",
"version": "1.9.28",
"version": "1.9.29",
"description": "A G plugin of renderer implementation with GPUDevice",
"keywords": [
"antv",
Expand Down
4 changes: 2 additions & 2 deletions packages/g-plugin-device-renderer/src/renderer/Path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class PathRenderer extends Batch {
// ];

getDrawcallCtors(object: DisplayObject) {
const { fill, stroke, opacity, strokeOpacity, lineWidth, isBillboard } =
const { fill, stroke, opacity, strokeOpacity, lineWidth } =
object.parsedStyle as ParsedPathStyleProps;
const hasStroke = stroke && !(stroke as CSSRGB).isNone;
const subpathNum = InstancedPathDrawcall.calcSubpathNum(object);
Expand All @@ -43,7 +43,7 @@ export class PathRenderer extends Batch {
!(strokeOpacity === 0 || opacity === 0 || lineWidth === 0 || !hasStroke)
) {
const isLine = InstancedLineDrawcall.isLine(object, i);
if (!isBillboard && isLine) {
if (isLine) {
drawcalls.push(InstancedLineDrawcall);
} else {
drawcalls.push(InstancedPathDrawcall);
Expand Down
6 changes: 6 additions & 0 deletions packages/g-web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-web-components

## 1.9.33

### Patch Changes

- @antv/g-webgl@1.9.32

## 1.9.32

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-web-components",
"version": "1.9.32",
"version": "1.9.33",
"description": "A declarative usage for G implemented with WebComponents",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-webgl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-webgl

## 1.9.32

### Patch Changes

- Updated dependencies [951bef39]
- @antv/g-plugin-device-renderer@1.9.29

## 1.9.31

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-webgl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-webgl",
"version": "1.9.31",
"version": "1.9.32",
"description": "A renderer implemented by WebGL1/2",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-webgpu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-webgpu

## 1.9.32

### Patch Changes

- Updated dependencies [951bef39]
- @antv/g-plugin-device-renderer@1.9.29

## 1.9.31

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-webgpu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-webgpu",
"version": "1.9.31",
"version": "1.9.32",
"description": "A renderer implemented by WebGPU",
"keywords": [
"antv",
Expand Down

0 comments on commit 1004649

Please sign in to comment.