blob: 5d26f21c1e9f8e60270552025e23e6f04e49be53 [file] [log] [blame]
// 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 "dawn_native/ResourceMemoryAllocation.h"
#include "common/Assert.h"
#include <limits>
namespace dawn_native {
static constexpr uint64_t kInvalidOffset = std::numeric_limits<uint64_t>::max();
ResourceMemoryAllocation::ResourceMemoryAllocation()
: mMethod(AllocationMethod::kInvalid),
mOffset(0),
mResourceHeap(nullptr),
mMappedPointer(nullptr) {
}
ResourceMemoryAllocation::ResourceMemoryAllocation(uint64_t offset,
ResourceHeapBase* resourceHeap,
AllocationMethod method,
uint8_t* mappedPointer)
: mMethod(method),
mOffset(offset),
mResourceHeap(resourceHeap),
mMappedPointer(mappedPointer) {
}
ResourceHeapBase* ResourceMemoryAllocation::GetResourceHeap() const {
ASSERT(mMethod != AllocationMethod::kInvalid);
return mResourceHeap;
}
uint64_t ResourceMemoryAllocation::GetOffset() const {
ASSERT(mMethod != AllocationMethod::kInvalid);
return mOffset;
}
AllocationMethod ResourceMemoryAllocation::GetAllocationMethod() const {
ASSERT(mMethod != AllocationMethod::kInvalid);
return mMethod;
}
uint8_t* ResourceMemoryAllocation::GetMappedPointer() const {
return mMappedPointer;
}
void ResourceMemoryAllocation::Invalidate() {
mResourceHeap = nullptr;
mMethod = AllocationMethod::kInvalid;
mOffset = kInvalidOffset;
}
} // namespace dawn_native