13 lines
262 B
C++
13 lines
262 B
C++
#pragma once
|
|
|
|
#include "../runtime/RuntimeShaderArtifact.h"
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
std::vector<unsigned char> BuildRuntimeShaderGlobalParamsStd140(
|
|
const RuntimeShaderArtifact& artifact,
|
|
uint64_t frameIndex,
|
|
unsigned width,
|
|
unsigned height);
|