浏览代码

Merge pull request #537 from geekynils/sokol-fetch_docs_fix

sokol_fetch docs fix
Andre Weissflog 4 年之前
父节点
当前提交
01b2916b07
共有 1 个文件被更改,包括 8 次插入2 次删除
  1. 8 2
      sokol_fetch.h

+ 8 - 2
sokol_fetch.h

@@ -118,9 +118,15 @@
             }
             }
         }
         }
 
 
-    (4) finally, call sfetch_shutdown() at the end of the application:
+    (4) pump the sokol-fetch message queues, and invoke response callbacks
+        by calling:
 
 
-        sfetch_shutdown()
+        sfetch_dowork(); 
+
+        In an event-driven app this should be called in the event loop. If you
+        use sokol-app this would be in your frame_cb function.
+
+    (5) finally, call sfetch_shutdown() at the end of the application:
 
 
     There's many other loading-scenarios, for instance one doesn't have to
     There's many other loading-scenarios, for instance one doesn't have to
     provide a buffer upfront, this can also happen in the response callback.
     provide a buffer upfront, this can also happen in the response callback.