]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/game/debug/debug.factor
factor: fix some spacing
[factor.git] / extra / game / debug / debug.factor
index a272a6161393867aa6286ebfd76213b11f5b5e0a..1eebd90dd0399d09999ab78bb5391e9f3e5ea8ef 100644 (file)
@@ -83,18 +83,18 @@ debug-text-fragment-shader debug-text-vertex-format ;
 
 CONSTANT: debug-text-font
     T{ font
-       { name       "monospace"  }
-       { size       16           }
-       { bold?      f            }
-       { italic?    f            }
-       { foreground COLOR: white }
-       { background COLOR: black } }
+        { name       "monospace"  }
+        { size       16           }
+        { bold?      f            }
+        { italic?    f            }
+        { foreground COLOR: white }
+        { background COLOR: black } }
 
 CONSTANT: debug-text-texture-parameters
     T{ texture-parameters
-       { wrap              repeat-texcoord }
-       { min-filter        filter-linear   }
-       { min-mipmap-filter f               } }
+        { wrap              repeat-texcoord }
+        { min-filter        filter-linear   }
+        { min-mipmap-filter f               } }
 
 : text>image ( string color -- image )
     debug-text-font clone swap >>foreground swap string>image drop ;