]> gitweb.factorcode.org Git - factor.git/commitdiff
opengl.textures: fix help-lint
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 16 Sep 2023 16:28:26 +0000 (09:28 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 16 Sep 2023 16:28:26 +0000 (09:28 -0700)
basis/opengl/textures/textures-docs.factor

index 8b6e3208dcba424af43df13373dadd0109597129..5c93e848bc82787d89987d9e7ff61af7d0354d06 100644 (file)
@@ -1,12 +1,12 @@
 IN: opengl.textures
-USING: help.markup help.syntax opengl.gl opengl.textures.private math alien images ;
+USING: help.markup help.syntax kernel opengl.gl opengl.textures.private math alien images ;
 
 HELP: gen-texture
 { $values { "id" integer } }
 { $description "Wrapper for " { $link glGenTextures } " to handle the common case of generating a single texture ID." } ;
 
 HELP: create-texture
-{ $values { "id" integer } }
+{ $values { "target" object } { "id" integer } }
 { $description "Wrapper for " { $link glCreateTextures } " to handle the common case of generating a single DSA texture ID." } ;
 
 HELP: delete-texture