mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-08 13:09:10 +00:00
This is a reland of 6f0b021dbf1ac6f66690eff7ae2cad2ac2c2df89. It also renames CreateDefaultTextureView to CreateDefaultView in a test that landed after the tryjobs for the reverted patch passed. Original change's description: > Rename texture.createTextureView to createView to match WebGPU > > Bug: chromium:877147 > Change-Id: I186fc26054cc6729c859a4161c755a1133dc0bca > Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/6360 > Commit-Queue: Austin Eng <enga@chromium.org> > Reviewed-by: Corentin Wallez <cwallez@chromium.org> Bug: chromium:877147 Change-Id: I8e1a1adc07ad2c78081ae3cb0fa2bdb648b39c50 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/6361 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Austin Eng <enga@chromium.org>
85 lines
3.2 KiB
C++
85 lines
3.2 KiB
C++
// Copyright 2019 The Dawn Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "tests/unittests/wire/WireTest.h"
|
|
|
|
#include "dawn_wire/WireClient.h"
|
|
#include "dawn_wire/WireServer.h"
|
|
|
|
using namespace testing;
|
|
using namespace dawn_wire;
|
|
|
|
class WireInjectTextureTests : public WireTest {
|
|
public:
|
|
WireInjectTextureTests() {
|
|
}
|
|
~WireInjectTextureTests() override = default;
|
|
};
|
|
|
|
// Test that reserving and injecting a texture makes calls on the client object forward to the
|
|
// server object correctly.
|
|
TEST_F(WireInjectTextureTests, CallAfterReserveInject) {
|
|
ReservedTexture reservation = GetWireClient()->ReserveTexture(device);
|
|
|
|
DawnTexture apiTexture = api.GetNewTexture();
|
|
EXPECT_CALL(api, TextureReference(apiTexture));
|
|
ASSERT_TRUE(GetWireServer()->InjectTexture(apiTexture, reservation.id, reservation.generation));
|
|
|
|
dawnTextureCreateDefaultView(reservation.texture);
|
|
DawnTextureView apiDummyView = api.GetNewTextureView();
|
|
EXPECT_CALL(api, TextureCreateDefaultView(apiTexture)).WillOnce(Return(apiDummyView));
|
|
FlushClient();
|
|
}
|
|
|
|
// Test that reserve correctly returns different IDs each time.
|
|
TEST_F(WireInjectTextureTests, ReserveDifferentIDs) {
|
|
ReservedTexture reservation1 = GetWireClient()->ReserveTexture(device);
|
|
ReservedTexture reservation2 = GetWireClient()->ReserveTexture(device);
|
|
|
|
ASSERT_NE(reservation1.id, reservation2.id);
|
|
ASSERT_NE(reservation1.texture, reservation2.texture);
|
|
}
|
|
|
|
// Test that injecting the same id without a destroy first fails.
|
|
TEST_F(WireInjectTextureTests, InjectExistingID) {
|
|
ReservedTexture reservation = GetWireClient()->ReserveTexture(device);
|
|
|
|
DawnTexture apiTexture = api.GetNewTexture();
|
|
EXPECT_CALL(api, TextureReference(apiTexture));
|
|
ASSERT_TRUE(GetWireServer()->InjectTexture(apiTexture, reservation.id, reservation.generation));
|
|
|
|
// ID already in use, call fails.
|
|
ASSERT_FALSE(
|
|
GetWireServer()->InjectTexture(apiTexture, reservation.id, reservation.generation));
|
|
}
|
|
|
|
// Test that the server only borrows the texture and does a single reference-release
|
|
TEST_F(WireInjectTextureTests, InjectedTextureLifetime) {
|
|
ReservedTexture reservation = GetWireClient()->ReserveTexture(device);
|
|
|
|
// Injecting the texture adds a reference
|
|
DawnTexture apiTexture = api.GetNewTexture();
|
|
EXPECT_CALL(api, TextureReference(apiTexture));
|
|
ASSERT_TRUE(GetWireServer()->InjectTexture(apiTexture, reservation.id, reservation.generation));
|
|
|
|
// Releasing the texture removes a single reference.
|
|
dawnTextureRelease(reservation.texture);
|
|
EXPECT_CALL(api, TextureRelease(apiTexture));
|
|
FlushClient();
|
|
|
|
// Deleting the server doesn't release a second reference.
|
|
DeleteServer();
|
|
Mock::VerifyAndClearExpectations(&api);
|
|
}
|