//notebook
// ---- Created with 3Dmigoto v1.2.39 on Tue Jun 14 09:34:59 2016

cbuffer _Globals : register(b0)
{
  float4x4 ScreenToWorldMatrix : packoffset(c0);
  bool bDecompressSceneColor : packoffset(c4);
  float4x4 mvp : packoffset(c5);
  float4 texgen[2] : packoffset(c9);
}



// 3Dmigoto declarations
#define cmp -
Texture1D<float4> IniParams : register(t120);
Texture2D<float4> StereoParams : register(t125);


void main( 
  float4 v0 : COLOR1,
  float4 v1 : POSITION0,
  out float4 o0 : COLOR1,
  out float2 o1 : TEXCOORD0,
  out float4 o2 : SV_Position0)
{
  o0.xyzw = v0.xyzw;
  o1.x = dot(v1.xyzw, texgen[0].xyzw);
  o1.y = dot(v1.xyzw, texgen[1].xyzw);
  o2.x = dot(v1.xyzw, mvp._m00_m10_m20_m30);
  o2.y = dot(v1.xyzw, mvp._m01_m11_m21_m31);
  o2.z = dot(v1.xyzw, mvp._m02_m12_m22_m32);
  o2.w = dot(v1.xyzw, mvp._m03_m13_m23_m33);

float4 r10 = o2;

float4 stereo = StereoParams.Load(0);
r10.x -= stereo.x*(o2.w - stereo.y);

  //if(r10.z > 35500){
//if(r10.z < 40000){

  if(stereo.y > 85){
o2.x -= stereo.x * 25000;}

  if(stereo.y <= 85 && stereo.y > 55){
o2.x -= stereo.x * 18000;}

  if(stereo.y <= 55 && stereo.y > 25){
o2.x -= stereo.x * 12500;}

  if(stereo.y <= 25){
o2.x -= stereo.x * 22000;}

float4 iniParams = IniParams.Load(0);
if (iniParams.w == 1){
o2 = r10;}

  return;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Generated by Microsoft (R) HLSL Shader Compiler 9.29.952.3111
//
//   using 3Dmigoto v1.2.39 on Tue Jun 14 09:34:59 2016
//
//
// Buffer Definitions: 
//
// cbuffer $Globals
// {
//
//   float4x4 ScreenToWorldMatrix;      // Offset:    0 Size:    64 [unused]
//   bool bDecompressSceneColor;        // Offset:   64 Size:     4 [unused]
//   float4x4 mvp;                      // Offset:   80 Size:    64
//   float4 texgen[2];                  // Offset:  144 Size:    32
//
// }
//
//
// Resource Bindings:
//
// Name                                 Type  Format         Dim Slot Elements
// ------------------------------ ---------- ------- ----------- ---- --------
// $Globals                          cbuffer      NA          NA    0        1
//
//
//
// Input signature:
//
// Name                 Index   Mask Register SysValue  Format   Used
// -------------------- ----- ------ -------- -------- ------- ------
// COLOR                    1   xyzw        0     NONE   float   xyzw
// POSITION                 0   xyzw        1     NONE   float   xyzw
//
//
// Output signature:
//
// Name                 Index   Mask Register SysValue  Format   Used
// -------------------- ----- ------ -------- -------- ------- ------
// COLOR                    1   xyzw        0     NONE   float   xyzw
// TEXCOORD                 0   xy          1     NONE   float   xy  
// SV_Position              0   xyzw        2      POS   float   xyzw
//
vs_5_0
dcl_globalFlags refactoringAllowed
dcl_constantbuffer cb0[11], immediateIndexed
dcl_input v0.xyzw
dcl_input v1.xyzw
dcl_output o0.xyzw
dcl_output o1.xy
dcl_output_siv o2.xyzw, position
mov o0.xyzw, v0.xyzw
dp4 o1.x, v1.xyzw, cb0[9].xyzw
dp4 o1.y, v1.xyzw, cb0[10].xyzw
dp4 o2.x, v1.xyzw, cb0[5].xyzw
dp4 o2.y, v1.xyzw, cb0[6].xyzw
dp4 o2.z, v1.xyzw, cb0[7].xyzw
dp4 o2.w, v1.xyzw, cb0[8].xyzw
ret 
// Approximately 8 instruction slots used

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
 