Fix: Compilation Error When Compiling with Vulkan

This PR fixes an compilation error where sstream used to be included
on a higher level, but has been removed and we need to include them
where they are actually used.

This wasn't detected as most developers don't have the vulkan backend
active.

Pull Request: https://projects.blender.org/blender/blender/pulls/111203
This commit is contained in:
Jeroen Bakker
2023-08-17 08:24:29 +02:00
parent 8b840eb896
commit bbe4f6cf74
2 changed files with 4 additions and 0 deletions

View File

@@ -6,6 +6,8 @@
* \ingroup gpu
*/
#include <sstream>
#include "BKE_global.h"
#include "CLG_log.h"

View File

@@ -6,6 +6,8 @@
* \ingroup gpu
*/
#include <sstream>
#include "vk_shader.hh"
#include "vk_backend.hh"