4a11d6a202
* dpi awareness test * dpi scaling updates * dpi scaling updates * missing mouse inputs fix (I hope finally) * finishing up the dpi branch...
15 lines
245 B
C
15 lines
245 B
C
#ifndef WI_SHADERINTEROP_IMAGE_H
|
|
#define WI_SHADERINTEROP_IMAGE_H
|
|
#include "ShaderInterop.h"
|
|
|
|
CBUFFER(ImageCB, CBSLOT_IMAGE)
|
|
{
|
|
float4 xCorners[4];
|
|
float4 xTexMulAdd;
|
|
float4 xTexMulAdd2;
|
|
float4 xColor;
|
|
};
|
|
|
|
|
|
#endif // WI_SHADERINTEROP_IMAGE_H
|