|
@@ -1,20 +1,20 @@
|
|
|
// Rewrite unchanged result:
|
|
|
-row_major float2x3 g_row;
|
|
|
-row_major snorm float2x3 g_row_sno;
|
|
|
-row_major unorm float2x3 g_row_uno;
|
|
|
-column_major float2x3 g_col;
|
|
|
-column_major snorm float2x3 g_col_sno;
|
|
|
-column_major unorm float2x3 g_col_uno;
|
|
|
-snorm float2x3 g_sno;
|
|
|
-unorm float2x3 g_uno;
|
|
|
-snorm float2x3 g_rev_sno;
|
|
|
-unorm float2x3 g_rev_uno;
|
|
|
-row_major float2x3 g_rev_row;
|
|
|
-column_major float2x3 g_rev_col;
|
|
|
-snorm float2 g_vector_sno;
|
|
|
-unorm float2 g_vector_uno;
|
|
|
-snorm float g_scalar_sno;
|
|
|
-unorm float g_scalar_uno;
|
|
|
+row_major float2x3 const g_row;
|
|
|
+row_major snorm float2x3 const g_row_sno;
|
|
|
+row_major unorm float2x3 const g_row_uno;
|
|
|
+column_major float2x3 const g_col;
|
|
|
+column_major snorm float2x3 const g_col_sno;
|
|
|
+column_major unorm float2x3 const g_col_uno;
|
|
|
+snorm float2x3 const g_sno;
|
|
|
+unorm float2x3 const g_uno;
|
|
|
+snorm float2x3 const g_rev_sno;
|
|
|
+unorm float2x3 const g_rev_uno;
|
|
|
+row_major float2x3 const g_rev_row;
|
|
|
+column_major float2x3 const g_rev_col;
|
|
|
+snorm float2 const g_vector_sno;
|
|
|
+unorm float2 const g_vector_uno;
|
|
|
+snorm float const g_scalar_sno;
|
|
|
+unorm float const g_scalar_uno;
|
|
|
matrix<snorm float, 2, 3> g_mat_sno;
|
|
|
matrix<unorm float, 2, 3> g_mat_uno;
|
|
|
row_major matrix<snorm float, 2, 3> g_row_mat_sno;
|
|
@@ -40,22 +40,22 @@ static column_major unorm float2x3 s_col_uno_init = sc_col_uno_init_scalar;
|
|
|
static snorm float2x3 s_sno_init = sc_sno_init_scalar;
|
|
|
static unorm float2x3 s_uno_init = sc_uno_init_scalar;
|
|
|
cbuffer CBInit {
|
|
|
- row_major float2x3 g_row_init = sc_row_init_scalar;
|
|
|
- row_major snorm float2x3 g_row_sno_init = sc_row_sno_init_scalar;
|
|
|
- row_major unorm float2x3 g_row_uno_init = sc_row_uno_init_scalar;
|
|
|
- column_major float2x3 g_col_init = sc_col_init_scalar;
|
|
|
- column_major snorm float2x3 g_col_sno_init = sc_col_sno_init_scalar;
|
|
|
- column_major unorm float2x3 g_col_uno_init = sc_col_uno_init_scalar;
|
|
|
- snorm float2x3 g_sno_init = sc_sno_init_scalar;
|
|
|
- unorm float2x3 g_uno_init = sc_uno_init_scalar;
|
|
|
- row_major float2x3 g_row_init_scalar = 1.F;
|
|
|
- row_major snorm float2x3 g_row_sno_init_scalar = 1.F;
|
|
|
- row_major unorm float2x3 g_row_uno_init_scalar = 1.F;
|
|
|
- column_major float2x3 g_col_init_scalar = 1.F;
|
|
|
- column_major snorm float2x3 g_col_sno_init_scalar = 1.F;
|
|
|
- column_major unorm float2x3 g_col_uno_init_scalar = 1.F;
|
|
|
- snorm float2x3 g_sno_init_scalar = 1.F;
|
|
|
- unorm float2x3 g_uno_init_scalar = 1.F;
|
|
|
+ row_major float2x3 const g_row_init = sc_row_init_scalar;
|
|
|
+ row_major snorm float2x3 const g_row_sno_init = sc_row_sno_init_scalar;
|
|
|
+ row_major unorm float2x3 const g_row_uno_init = sc_row_uno_init_scalar;
|
|
|
+ column_major float2x3 const g_col_init = sc_col_init_scalar;
|
|
|
+ column_major snorm float2x3 const g_col_sno_init = sc_col_sno_init_scalar;
|
|
|
+ column_major unorm float2x3 const g_col_uno_init = sc_col_uno_init_scalar;
|
|
|
+ snorm float2x3 const g_sno_init = sc_sno_init_scalar;
|
|
|
+ unorm float2x3 const g_uno_init = sc_uno_init_scalar;
|
|
|
+ row_major float2x3 const g_row_init_scalar = 1.F;
|
|
|
+ row_major snorm float2x3 const g_row_sno_init_scalar = 1.F;
|
|
|
+ row_major unorm float2x3 const g_row_uno_init_scalar = 1.F;
|
|
|
+ column_major float2x3 const g_col_init_scalar = 1.F;
|
|
|
+ column_major snorm float2x3 const g_col_sno_init_scalar = 1.F;
|
|
|
+ column_major unorm float2x3 const g_col_uno_init_scalar = 1.F;
|
|
|
+ snorm float2x3 const g_sno_init_scalar = 1.F;
|
|
|
+ unorm float2x3 const g_uno_init_scalar = 1.F;
|
|
|
}
|
|
|
typedef row_major float2x3 t_row;
|
|
|
typedef row_major snorm float2x3 t_row_sno;
|