2013-10-07 08:02:24 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2013-10-07 08:02:24 -06:00
|
|
|
|
2014-10-21 00:01:38 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2013-10-07 08:02:24 -06:00
|
|
|
// all constant buffer attributes must be 16 bytes aligned, so this are the only allowed components:
|
|
|
|
typedef float float4[4];
|
|
|
|
typedef u32 uint4[4];
|
2013-10-07 11:04:03 -06:00
|
|
|
typedef s32 int4[4];
|
2013-10-07 08:02:24 -06:00
|
|
|
|
|
|
|
struct PixelShaderConstants
|
|
|
|
{
|
2013-10-10 12:26:41 -06:00
|
|
|
int4 colors[4];
|
|
|
|
int4 kcolors[4];
|
2013-10-10 12:36:55 -06:00
|
|
|
int4 alpha;
|
2013-10-07 08:02:24 -06:00
|
|
|
float4 texdims[8];
|
2013-11-23 12:58:24 -07:00
|
|
|
int4 zbias[2];
|
2014-01-29 07:52:24 -07:00
|
|
|
int4 indtexscale[2];
|
2013-10-10 13:09:00 -06:00
|
|
|
int4 indtexmtx[6];
|
2013-10-27 06:10:00 -06:00
|
|
|
int4 fogcolor;
|
2014-03-03 11:23:46 -07:00
|
|
|
int4 fogi;
|
2013-12-16 05:08:09 -07:00
|
|
|
float4 fogf[2];
|
2013-10-07 08:02:24 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VertexShaderConstants
|
|
|
|
{
|
|
|
|
float4 posnormalmatrix[6];
|
|
|
|
float4 projection[4];
|
2013-10-27 07:07:13 -06:00
|
|
|
int4 materials[4];
|
2014-05-30 08:17:30 -06:00
|
|
|
struct Light
|
|
|
|
{
|
|
|
|
int4 color;
|
|
|
|
float4 cosatt;
|
|
|
|
float4 distatt;
|
|
|
|
float4 pos;
|
|
|
|
float4 dir;
|
|
|
|
} lights [8];
|
2013-10-07 08:02:24 -06:00
|
|
|
float4 texmatrices[24];
|
|
|
|
float4 transformmatrices[64];
|
|
|
|
float4 normalmatrices[32];
|
|
|
|
float4 posttransformmatrices[64];
|
2014-10-24 18:59:02 -06:00
|
|
|
float4 pixelcentercorrection;
|
2013-10-07 08:02:24 -06:00
|
|
|
};
|
2014-05-30 08:17:30 -06:00
|
|
|
|
2014-12-14 13:23:13 -07:00
|
|
|
struct GeometryShaderConstants
|
|
|
|
{
|
|
|
|
float4 stereoparams;
|
2014-12-14 13:44:33 -07:00
|
|
|
float4 lineptwidth;
|
|
|
|
float4 viewport;
|
2014-12-15 15:05:16 -07:00
|
|
|
s32 texoffsetflags[8];
|
2014-12-14 13:23:13 -07:00
|
|
|
};
|