slang: Fix CI build.

This commit is contained in:
BearOso 2023-04-30 17:18:39 -05:00
parent 6c60368fc4
commit b383b94c8c
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#pragma once #pragma once
#include <string> #include <string>
#include <vector> #include <vector>
#include <cstdint>
struct SlangShader struct SlangShader
{ {
@ -101,4 +102,4 @@ struct SlangShader
int ubo_binding; int ubo_binding;
std::vector<Uniform> uniforms; std::vector<Uniform> uniforms;
std::vector<Sampler> samplers; std::vector<Sampler> samplers;
}; };