diff options
author | marha <marha@users.sourceforge.net> | 2011-12-15 22:42:10 +0100 |
---|---|---|
committer | Marc Haesen <marc@hc-consult.be> | 2011-12-15 22:42:10 +0100 |
commit | bff3d118f8312f227f51291f9096a2871c61c756 (patch) | |
tree | 6d5226796710f20d26fd0d581b9b7054037b2c38 /mesalib | |
parent | 98506537b3e09f225b389bb3844f959fc9486b4d (diff) | |
download | vcxsrv-bff3d118f8312f227f51291f9096a2871c61c756.tar.gz vcxsrv-bff3d118f8312f227f51291f9096a2871c61c756.tar.bz2 vcxsrv-bff3d118f8312f227f51291f9096a2871c61c756.zip |
Added missing files to project files
Diffstat (limited to 'mesalib')
4 files changed, 12 insertions, 8 deletions
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj index 87b54d364..81d235144 100644 --- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj +++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj @@ -190,6 +190,7 @@ <ClCompile Include="..\..\..\..\src\mesa\main\api_validate.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\arbprogram.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\atifragshader.c" />
+ <ClCompile Include="..\..\..\..\src\mesa\main\format_pack.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\nvprogram.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\pack.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\pixeltransfer.c" />
@@ -217,7 +218,6 @@ <ClCompile Include="..\..\..\..\src\mesa\main\cpuinfo.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\debug.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\depth.c" />
- <ClCompile Include="..\..\..\..\src\mesa\main\depthstencil.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\dlist.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\dlopen.c" />
<ClCompile Include="..\..\..\..\src\mesa\main\drawpix.c" />
diff --git a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters index 8bdfe7801..6e8fd2534 100644 --- a/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters +++ b/mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters @@ -68,9 +68,6 @@ <ClCompile Include="..\..\..\..\src\mesa\main\depth.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\..\..\src\mesa\main\depthstencil.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\..\..\src\mesa\main\dlist.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -689,6 +686,9 @@ <ClCompile Include="..\..\..\..\src\mesa\main\texstorage.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\mesa\main\format_pack.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\glsl\strtod.h">
diff --git a/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj b/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj index 041bdf9c3..c288104af 100644 --- a/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj +++ b/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj @@ -135,7 +135,6 @@ <ClCompile Include="..\..\..\..\src\mesa\drivers\dri\common\utils.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_aaline.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_aatriangle.c" />
- <ClCompile Include="..\..\..\..\src\mesa\swrast\s_accum.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_alpha.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_atifragshader.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_bitmap.c" />
@@ -145,6 +144,7 @@ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_context.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_copypix.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_depth.c" />
+ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_depthstencil.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_drawpix.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_feedback.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_fog.c" />
@@ -153,6 +153,7 @@ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_logic.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_masking.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_points.c" />
+ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_renderbuffer.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_span.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_stencil.c" />
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_texcombine.c" />
diff --git a/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj.filters b/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj.filters index 9888318d6..84069ef88 100644 --- a/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj.filters +++ b/mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj.filters @@ -45,9 +45,6 @@ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_bitmap.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\..\..\src\mesa\swrast\s_accum.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\..\..\src\mesa\swrast\s_clear.c">
<Filter>Source Files</Filter>
</ClCompile>
@@ -126,6 +123,12 @@ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_texrender.c">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_renderbuffer.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\..\..\src\mesa\swrast\s_depthstencil.c">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\src\mesa\drivers\dri\swrast\swrast_priv.h">
|