Remove some unused STL includes

This commit is contained in:
baldurk
2022-03-01 12:25:31 +00:00
parent d40a093544
commit d645d5f0d6
6 changed files with 1 additions and 11 deletions
@@ -25,8 +25,6 @@
#pragma once
#include <map>
#include <string>
#include <vector>
#include "driver/dx/official/d3d11_4.h"
class WrappedID3D11Device;
@@ -25,8 +25,6 @@
#pragma once
#include <map>
#include <string>
#include <vector>
#include "driver/dx/official/d3d11_4.h"
#include "d3d12_common.h"
-1
View File
@@ -24,7 +24,6 @@
#pragma once
#include <vector>
#include "d3d12_common.h"
#include "d3d12_manager.h"
@@ -22,9 +22,6 @@
* THE SOFTWARE.
******************************************************************************/
#include <algorithm>
#include <fstream>
#include "common/common.h"
#include "driver/gl/gl_dispatch_table.h"
#include "strings/string_utils.h"
@@ -25,7 +25,6 @@
#include "dxil_bytecode.h"
#include <ctype.h>
#include <stdio.h>
#include <string>
#include "common/common.h"
#include "common/formatting.h"
#include "os/os_specific.h"
+1 -2
View File
@@ -31,12 +31,11 @@
#include "vk_resources.h"
#include <stdint.h>
#include <vector>
void CheckSubresourceRanges(const ImageState &state, bool expectAspectsSplit,
bool expectLevelsSplit, bool expectLayersSplit, bool expectDepthSplit)
{
std::vector<VkImageAspectFlags> splitAspects;
rdcarray<VkImageAspectFlags> splitAspects;
if(expectAspectsSplit)
{
for(auto it = ImageAspectFlagIter::begin(state.GetImageInfo().Aspects());