You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.7 KiB
31 lines
1.7 KiB
digraph "CompilerFlags" {
|
|
node [
|
|
fontsize = "12"
|
|
];
|
|
"node0" [ label = "CompilerFlags", shape = pentagon ];
|
|
"node2" [ label = "CoreLibrary", shape = octagon ];
|
|
"node2" -> "node0" // CoreLibrary -> CompilerFlags
|
|
"node4" [ label = "SystemLibrary", shape = octagon ];
|
|
"node4" -> "node2" [ style = dotted ] // SystemLibrary -> CoreLibrary
|
|
"node2" [ label = "CoreLibrary", shape = octagon ];
|
|
"node2" -> "node4" [ style = dotted ] // CoreLibrary -> SystemLibrary
|
|
"node1" [ label = "ConsoleApplication", shape = egg ];
|
|
"node1" -> "node2" [ style = dotted ] // ConsoleApplication -> CoreLibrary
|
|
"node6" [ label = "GraphicApplication", shape = egg ];
|
|
"node6" -> "node2" [ style = dotted ] // GraphicApplication -> CoreLibrary
|
|
"node7" [ label = "GraphicLibrary", shape = doubleoctagon ];
|
|
"node7" -> "node2" [ style = dotted ] // GraphicLibrary -> CoreLibrary
|
|
"node6" [ label = "GraphicApplication", shape = egg ];
|
|
"node6" -> "node7" [ style = dotted ] // GraphicApplication -> GraphicLibrary
|
|
"node10" [ label = "GraphicDriverOpenGL", shape = tripleoctagon ];
|
|
"node10" -> "node2" [ style = dotted ] // GraphicDriverOpenGL -> CoreLibrary
|
|
"node11" [ label = "GraphicDriverVulkan", shape = tripleoctagon ];
|
|
"node11" -> "node2" [ style = dotted ] // GraphicDriverVulkan -> CoreLibrary
|
|
"node7" [ label = "GraphicLibrary", shape = doubleoctagon ];
|
|
"node7" -> "node0" // GraphicLibrary -> CompilerFlags
|
|
"node10" [ label = "GraphicDriverOpenGL", shape = tripleoctagon ];
|
|
"node10" -> "node0" [ style = dotted ] // GraphicDriverOpenGL -> CompilerFlags
|
|
"node11" [ label = "GraphicDriverVulkan", shape = tripleoctagon ];
|
|
"node11" -> "node0" [ style = dotted ] // GraphicDriverVulkan -> CompilerFlags
|
|
}
|