blob: 6f501c45fb9ed285eb68e1527a10074508dc9d41 [file]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/command_buffer/client/shared_image_interface.h"
namespace gpu {
uint32_t SharedImageInterface::UsageForMailbox(const Mailbox& mailbox) {
return 0u;
}
void SharedImageInterface::NotifyMailboxAdded(const Mailbox& /*mailbox*/,
uint32_t /*usage*/) {}
Mailbox SharedImageInterface::CreateSharedImageWithAHB(
const Mailbox& mailbox,
uint32_t usage,
const SyncToken& sync_token) {
NOTREACHED();
return Mailbox();
}
} // namespace gpu