aboutsummaryrefslogtreecommitdiff
path: root/mesalib
diff options
context:
space:
mode:
Diffstat (limited to 'mesalib')
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj2
-rw-r--r--mesalib/windows/VC8/mesa/mesa/mesa.vcxproj.filters6
-rw-r--r--mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj3
-rw-r--r--mesalib/windows/VC8/mesa/swrast_dri/swrast_dri.vcxproj.filters9
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">