.vscode: Define ENABLE_VK_DEBUGGER

Define ENABLE_VK_DEBUGGER to 1 so that VS code doesn't gray-out the debugger logic.
This does not affect the build in any way.

Bug: b/145351270
Change-Id: I52e1dfa7c2d83f2db4258d6e9e5f3a57c601452d
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/40089
Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
Reviewed-by: Nicolas Capens <nicolascapens@google.com>
Tested-by: Ben Clayton <bclayton@google.com>
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
index 18d6a18..0829b69 100644
--- a/.vscode/c_cpp_properties.json
+++ b/.vscode/c_cpp_properties.json
@@ -3,6 +3,7 @@
         {
             "name": "Linux",
             "defines": [
+                "ENABLE_VK_DEBUGGER=1",
                 "ENABLE_RR_DEBUG_INFO=1",
                 "VERIFY_LLVM_IR=1"
             ],
@@ -23,6 +24,7 @@
         {
             "name": "Mac",
             "defines": [
+                "ENABLE_VK_DEBUGGER=1",
                 "ENABLE_RR_DEBUG_INFO=1",
                 "VERIFY_LLVM_IR=1"
             ],
@@ -43,6 +45,7 @@
         {
             "name": "Win32",
             "defines": [
+                "ENABLE_VK_DEBUGGER=1",
                 "ENABLE_RR_DEBUG_INFO=1",
                 "VERIFY_LLVM_IR=1"
             ],