mirror of https://github.com/stenzek/duckstation
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
// SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
 | 
						|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "common/types.h"
 | 
						|
#include "common/windows_headers.h"
 | 
						|
 | 
						|
#include <d3d12.h>
 | 
						|
#include <deque>
 | 
						|
#include <utility>
 | 
						|
#include <wrl/client.h>
 | 
						|
 | 
						|
namespace D3D12MA {
 | 
						|
class Allocation;
 | 
						|
}
 | 
						|
 | 
						|
class D3D12StreamBuffer
 | 
						|
{
 | 
						|
public:
 | 
						|
  D3D12StreamBuffer();
 | 
						|
  ~D3D12StreamBuffer();
 | 
						|
 | 
						|
  bool Create(u32 size);
 | 
						|
 | 
						|
  ALWAYS_INLINE bool IsValid() const { return static_cast<bool>(m_buffer); }
 | 
						|
  ALWAYS_INLINE ID3D12Resource* GetBuffer() const { return m_buffer.Get(); }
 | 
						|
  ALWAYS_INLINE D3D12_GPU_VIRTUAL_ADDRESS GetGPUPointer() const { return m_gpu_pointer; }
 | 
						|
  ALWAYS_INLINE void* GetHostPointer() const { return m_host_pointer; }
 | 
						|
  ALWAYS_INLINE void* GetCurrentHostPointer() const { return m_host_pointer + m_current_offset; }
 | 
						|
  ALWAYS_INLINE D3D12_GPU_VIRTUAL_ADDRESS GetCurrentGPUPointer() const { return m_gpu_pointer + m_current_offset; }
 | 
						|
  ALWAYS_INLINE u32 GetSize() const { return m_size; }
 | 
						|
  ALWAYS_INLINE u32 GetCurrentOffset() const { return m_current_offset; }
 | 
						|
  ALWAYS_INLINE u32 GetCurrentSpace() const { return m_current_space; }
 | 
						|
 | 
						|
  bool ReserveMemory(u32 num_bytes, u32 alignment);
 | 
						|
  void CommitMemory(u32 final_num_bytes);
 | 
						|
 | 
						|
  void Destroy(bool defer = true);
 | 
						|
 | 
						|
private:
 | 
						|
  void UpdateCurrentFencePosition();
 | 
						|
  void UpdateGPUPosition();
 | 
						|
 | 
						|
  // Waits for as many fences as needed to allocate num_bytes bytes from the buffer.
 | 
						|
  bool WaitForClearSpace(u32 num_bytes);
 | 
						|
 | 
						|
  u32 m_size = 0;
 | 
						|
  u32 m_current_offset = 0;
 | 
						|
  u32 m_current_space = 0;
 | 
						|
  u32 m_current_gpu_position = 0;
 | 
						|
 | 
						|
  Microsoft::WRL::ComPtr<ID3D12Resource> m_buffer;
 | 
						|
  Microsoft::WRL::ComPtr<D3D12MA::Allocation> m_allocation;
 | 
						|
  D3D12_GPU_VIRTUAL_ADDRESS m_gpu_pointer = {};
 | 
						|
  u8* m_host_pointer = nullptr;
 | 
						|
 | 
						|
  // List of fences and the corresponding positions in the buffer
 | 
						|
  std::deque<std::pair<u64, u32>> m_tracked_fences;
 | 
						|
};
 |