blob: 8dc6b29071eda57c43f69f085b395bf7737afa83 [file] [log] [blame]
/* Copyright (c) 2015-2021 The Khronos Group Inc.
* Copyright (c) 2015-2021 Valve Corporation
* Copyright (c) 2015-2021 LunarG, Inc.
* Copyright (C) 2015-2021 Google Inc.
* Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved.
*
* 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.
*
* Author: Courtney Goeltzenleuchter <courtneygo@google.com>
* Author: Tobin Ehlis <tobine@google.com>
* Author: Chris Forbes <chrisf@ijw.co.nz>
* Author: Mark Lobodzinski <mark@lunarg.com>
* Author: Dave Houlton <daveh@lunarg.com>
* Author: John Zulauf <jzulauf@lunarg.com>
* Author: Tobias Hector <tobias.hector@amd.com>
* Author: Jeremy Gebben <jeremyg@lunarg.com>
*/
#pragma once
#include "device_memory_state.h"
class ValidationStateTracker;
class BUFFER_STATE : public BINDABLE {
public:
const safe_VkBufferCreateInfo safe_create_info;
const VkBufferCreateInfo &createInfo;
VkDeviceAddress deviceAddress;
const VkMemoryRequirements requirements;
bool memory_requirements_checked;
BUFFER_STATE(ValidationStateTracker *dev_data, VkBuffer buff, const VkBufferCreateInfo *pCreateInfo);
BUFFER_STATE(BUFFER_STATE const &rh_obj) = delete;
VkBuffer buffer() const { return handle_.Cast<VkBuffer>(); }
};
class BUFFER_VIEW_STATE : public BASE_NODE {
public:
const VkBufferViewCreateInfo create_info;
std::shared_ptr<BUFFER_STATE> buffer_state;
const VkFormatFeatureFlags format_features;
BUFFER_VIEW_STATE(const std::shared_ptr<BUFFER_STATE> &bf, VkBufferView bv, const VkBufferViewCreateInfo *ci,
VkFormatFeatureFlags ff)
: BASE_NODE(bv, kVulkanObjectTypeBufferView), create_info(*ci), buffer_state(bf), format_features(ff) {
if (buffer_state) {
buffer_state->AddParent(this);
}
}
virtual ~BUFFER_VIEW_STATE() {
if (!Destroyed()) {
Destroy();
}
}
BUFFER_VIEW_STATE(const BUFFER_VIEW_STATE &rh_obj) = delete;
VkBufferView buffer_view() const { return handle_.Cast<VkBufferView>(); }
void Destroy() override {
if (buffer_state) {
buffer_state->RemoveParent(this);
buffer_state = nullptr;
}
BASE_NODE::Destroy();
}
};