From 6aaedb813fa11ba0679c3051bc2eb28646b9506c Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Sat, 30 Aug 2025 16:53:58 -0700 Subject: Update to SDL3 --- .../VisualC/examples/renderer/01-clear/01-clear.vcxproj | 13 +++++++++++++ .../examples/renderer/02-primitives/02-primitives.vcxproj | 13 +++++++++++++ .../VisualC/examples/renderer/03-lines/03-lines.vcxproj | 13 +++++++++++++ .../VisualC/examples/renderer/04-points/04-points.vcxproj | 13 +++++++++++++ .../examples/renderer/05-rectangles/05-rectangles.vcxproj | 13 +++++++++++++ .../examples/renderer/06-textures/06-textures.vcxproj | 14 ++++++++++++++ .../07-streaming-textures/07-streaming-textures.vcxproj | 13 +++++++++++++ .../08-rotating-textures/08-rotating-textures.vcxproj | 14 ++++++++++++++ .../09-scaling-textures/09-scaling-textures.vcxproj | 13 +++++++++++++ .../examples/renderer/10-geometry/10-geometry.vcxproj | 14 ++++++++++++++ .../examples/renderer/11-color-mods/11-color-mods.vcxproj | 14 ++++++++++++++ .../examples/renderer/14-viewport/14-viewport.vcxproj | 14 ++++++++++++++ .../examples/renderer/15-cliprect/15-cliprect.vcxproj | 14 ++++++++++++++ .../renderer/17-read-pixels/17-read-pixels.vcxproj | 14 ++++++++++++++ .../examples/renderer/18-debug-text/18-debug-text.vcxproj | 13 +++++++++++++ 15 files changed, 202 insertions(+) create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/01-clear/01-clear.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/02-primitives/02-primitives.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/03-lines/03-lines.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/04-points/04-points.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/05-rectangles/05-rectangles.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/06-textures/06-textures.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/07-streaming-textures/07-streaming-textures.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/08-rotating-textures/08-rotating-textures.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/09-scaling-textures/09-scaling-textures.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/10-geometry/10-geometry.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/11-color-mods/11-color-mods.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/14-viewport/14-viewport.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/15-cliprect/15-cliprect.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/17-read-pixels/17-read-pixels.vcxproj create mode 100644 src/contrib/SDL-3.2.20/VisualC/examples/renderer/18-debug-text/18-debug-text.vcxproj (limited to 'src/contrib/SDL-3.2.20/VisualC/examples/renderer') diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/01-clear/01-clear.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/01-clear/01-clear.vcxproj new file mode 100644 index 0000000..e55d8df --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/01-clear/01-clear.vcxproj @@ -0,0 +1,13 @@ + + + + {896557AC-7575-480C-8FFD-AB08B5DA305D} + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/02-primitives/02-primitives.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/02-primitives/02-primitives.vcxproj new file mode 100644 index 0000000..525bba7 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/02-primitives/02-primitives.vcxproj @@ -0,0 +1,13 @@ + + + + {504DC7EC-D82E-448E-9C7D-3BE7981592B3} + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/03-lines/03-lines.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/03-lines/03-lines.vcxproj new file mode 100644 index 0000000..4b40b7e --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/03-lines/03-lines.vcxproj @@ -0,0 +1,13 @@ + + + + {BDE7DBC0-DCE7-432E-8750-C4AE55463699} + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/04-points/04-points.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/04-points/04-points.vcxproj new file mode 100644 index 0000000..0c8fa22 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/04-points/04-points.vcxproj @@ -0,0 +1,13 @@ + + + + {7B250AB1-92D3-4F1A-BEB4-19605A69CEDB} + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/05-rectangles/05-rectangles.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/05-rectangles/05-rectangles.vcxproj new file mode 100644 index 0000000..8d4b33b --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/05-rectangles/05-rectangles.vcxproj @@ -0,0 +1,13 @@ + + + + {4C0E3A60-24F8-4D4C-81C0-C1777F5E7B17} + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/06-textures/06-textures.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/06-textures/06-textures.vcxproj new file mode 100644 index 0000000..d99b62c --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/06-textures/06-textures.vcxproj @@ -0,0 +1,14 @@ + + + + {B3D61611-BFA3-4B66-ADC7-A3CE578A6D36} + + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/07-streaming-textures/07-streaming-textures.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/07-streaming-textures/07-streaming-textures.vcxproj new file mode 100644 index 0000000..0830c4f --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/07-streaming-textures/07-streaming-textures.vcxproj @@ -0,0 +1,13 @@ + + + + {540AE143-A58F-4D3B-B843-94EA8576522D} + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/08-rotating-textures/08-rotating-textures.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/08-rotating-textures/08-rotating-textures.vcxproj new file mode 100644 index 0000000..5e14c6d --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/08-rotating-textures/08-rotating-textures.vcxproj @@ -0,0 +1,14 @@ + + + + {7091C001-3D71-47D4-B27B-E99271E5B987} + + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/09-scaling-textures/09-scaling-textures.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/09-scaling-textures/09-scaling-textures.vcxproj new file mode 100644 index 0000000..ada32f7 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/09-scaling-textures/09-scaling-textures.vcxproj @@ -0,0 +1,13 @@ + + + + {AF8BC84E-0268-4D1F-9503-84D9EE84C65F} + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/10-geometry/10-geometry.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/10-geometry/10-geometry.vcxproj new file mode 100644 index 0000000..6013514 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/10-geometry/10-geometry.vcxproj @@ -0,0 +1,14 @@ + + + + {8B9AB23E-3F40-4145-BA1C-B2CEACFBBD72} + + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/11-color-mods/11-color-mods.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/11-color-mods/11-color-mods.vcxproj new file mode 100644 index 0000000..c0af3e3 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/11-color-mods/11-color-mods.vcxproj @@ -0,0 +1,14 @@ + + + + {E9C6A7A6-22C0-42E6-AC9C-8580A396D077} + + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/14-viewport/14-viewport.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/14-viewport/14-viewport.vcxproj new file mode 100644 index 0000000..1ebbda5 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/14-viewport/14-viewport.vcxproj @@ -0,0 +1,14 @@ + + + + {B85BC466-C7F0-4C6D-8ECF-ED57E775FC73} + + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/15-cliprect/15-cliprect.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/15-cliprect/15-cliprect.vcxproj new file mode 100644 index 0000000..dbb7ca6 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/15-cliprect/15-cliprect.vcxproj @@ -0,0 +1,14 @@ + + + + {9DBD962F-EA4D-44E3-8E8E-31D7F060A2DC} + + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/17-read-pixels/17-read-pixels.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/17-read-pixels/17-read-pixels.vcxproj new file mode 100644 index 0000000..674462e --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/17-read-pixels/17-read-pixels.vcxproj @@ -0,0 +1,14 @@ + + + + {EEF00329-4598-4E34-B969-9DD4B0815E6C} + + + + + + + + + + \ No newline at end of file diff --git a/src/contrib/SDL-3.2.20/VisualC/examples/renderer/18-debug-text/18-debug-text.vcxproj b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/18-debug-text/18-debug-text.vcxproj new file mode 100644 index 0000000..98f1198 --- /dev/null +++ b/src/contrib/SDL-3.2.20/VisualC/examples/renderer/18-debug-text/18-debug-text.vcxproj @@ -0,0 +1,13 @@ + + + + {CC0714AA-8A81-4E29-BEC5-2E4FBC50E7FE} + + + + + + + + + \ No newline at end of file -- cgit v1.2.3