diff options
author | marha <marha@users.sourceforge.net> | 2014-10-01 20:28:30 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2014-10-01 20:28:30 +0200 |
commit | e4086b3defb6186a2fb8a5845968c97e613fb493 (patch) | |
tree | 751349003403cd77ac7892eb0983b312175de492 | |
parent | 19b4b68b35a047a83bd291ee8debac1adb0e946c (diff) | |
download | vcxsrv-e4086b3defb6186a2fb8a5845968c97e613fb493.tar.gz vcxsrv-e4086b3defb6186a2fb8a5845968c97e613fb493.tar.bz2 vcxsrv-e4086b3defb6186a2fb8a5845968c97e613fb493.zip |
Added missing files to mesalib project
4 files changed, 12 insertions, 0 deletions
diff --git a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj index d0831ccdb..068d369d1 100644 --- a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj +++ b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj @@ -230,6 +230,7 @@ <ClCompile Include="..\..\..\..\src\glsl\lower_vector_insert.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\lower_vec_index_to_cond_assign.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\lower_vec_index_to_swizzle.cpp" />
+ <ClCompile Include="..\..\..\..\src\glsl\lower_vertex_id.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\main.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_algebraic.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_array_splitting.cpp" />
diff --git a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters index d0edf569c..a631e0626 100644 --- a/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters +++ b/mesalib/windows/VC8/mesa/glsl_apps_compile/glsl_apps_compile.vcxproj.filters @@ -306,6 +306,9 @@ <ClCompile Include="..\..\..\..\src\util\ralloc.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\glsl\lower_vertex_id.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h">
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj index ca189e6fd..d0627cc1f 100644 --- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj +++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj @@ -270,6 +270,7 @@ <ClCompile Include="..\..\..\..\src\glsl\lower_vector_insert.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\lower_vec_index_to_cond_assign.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\lower_vec_index_to_swizzle.cpp" />
+ <ClCompile Include="..\..\..\..\src\glsl\lower_vertex_id.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_algebraic.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_array_splitting.cpp" />
<ClCompile Include="..\..\..\..\src\glsl\opt_constant_folding.cpp" />
@@ -472,6 +473,7 @@ <ClCompile Include="..\..\..\..\src\util\format_srgb.c" />
<ClCompile Include="..\..\..\..\src\util\hash_table.c" />
<ClCompile Include="..\..\..\..\src\util\ralloc.c" />
+ <ClCompile Include="..\..\..\..\src\util\rgtc.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h" />
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters index 5129166f7..36afc75b4 100644 --- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters +++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters @@ -809,6 +809,12 @@ <ClCompile Include="..\..\..\..\src\mesa\main\texcompress_bptc.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\util\rgtc.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\..\..\src\glsl\lower_vertex_id.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h">
|