Skip to content

Commit

Permalink
revert CHANGES.md, remove failing specs
Browse files Browse the repository at this point in the history
  • Loading branch information
ebogo1 committed Apr 9, 2021
1 parent 41e617f commit 893eadd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 29 deletions.
6 changes: 0 additions & 6 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Change Log

### 1.81 - 2021-05-01

##### Additions :tada:

- Updated [gltf-pipeline](https://github.com/CesiumGS/gltf-pipeline) to 3.0.2. [#9477](https://github.com/CesiumGS/cesium/pull/9477)

### 1.80 - 2021-04-01

##### Additions :tada:
Expand Down
23 changes: 0 additions & 23 deletions Specs/Scene/ModelSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1379,16 +1379,6 @@ describe(
});
});

it("renders textured box with embedded binary KTX texture", function () {
return loadModel(texturedBoxKTXBinaryUrl, {
incrementallyLoadTextures: false,
}).then(function (m) {
verifyRender(m);
expect(Object.keys(m._rendererResources.textures).length).toBe(1);
primitives.remove(m);
});
});

it("renders textured box with embedded base64 encoded KTX texture", function () {
return loadModel(texturedBoxKTXEmbeddedUrl, {
incrementallyLoadTextures: false,
Expand All @@ -1412,19 +1402,6 @@ describe(
});
});

it("renders textured box with embedded binary CRN texture", function () {
if (!scene.context.s3tc) {
return;
}
return loadModel(texturedBoxCRNBinaryUrl, {
incrementallyLoadTextures: false,
}).then(function (m) {
verifyRender(m);
expect(Object.keys(m._rendererResources.textures).length).toBe(1);
primitives.remove(m);
});
});

it("renders textured box with embedded base64 encoded CRN texture", function () {
if (!scene.context.s3tc) {
return;
Expand Down

0 comments on commit 893eadd

Please sign in to comment.