- Add ScreenshotCapture class to Engine.Graphics using Vulkan image readback. - Integrate screenshot capture into MeshRenderer; request triggers readback on next frame. - Add SixLabors.ImageSharp 3.1.11 for PNG encoding (patched for CVE-2025-54575). - Add capture_screenshot AI command and MCP tool. - Wire screenshot request into Program.cs with demo command. - Expose swapchain surface format and image accessor for readback. - Add Screenshots/ to .gitignore. - Update CORTEX_ENGINE_ARCHITECTURE.md with MCP, Silk.NET.Vulkan, ImageSharp, and screenshot capture.
31 lines
239 B
Plaintext
31 lines
239 B
Plaintext
# Build outputs
|
|
bin/
|
|
obj/
|
|
|
|
# IDE
|
|
.vs/
|
|
.vscode/
|
|
*.user
|
|
*.suo
|
|
|
|
# NuGet
|
|
*.nupkg
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Generated screenshots
|
|
Screenshots/
|
|
|
|
# dotnet
|
|
*.dll
|
|
*.exe
|
|
*.pdb
|
|
*.cache
|
|
*.json
|
|
!*.csproj
|
|
!*.sln
|
|
!launchSettings.json
|
|
.playwright-mcp/
|