From 4eb6a7ae0fa0fa11c7e538b948af1417764d4134 Mon Sep 17 00:00:00 2001
From: scuri
int cdUseContextPlus(int use); [in C]
-cd.UseContextPlus(use: number) -> (old_use: number) [in Lua]
+cd.UseContextPlus(use: boolean) -> (old_use: boolean) [in Lua]
Activates or deactivates the use of an external context for the next calls of the cdCreateCanvas function.
diff --git a/html/en/func/other.html b/html/en/func/other.html index af611ef..b493ae5 100644 --- a/html/en/func/other.html +++ b/html/en/func/other.html @@ -96,8 +96,9 @@ cd.ContextRegisterCallback(ctx, cb: number, func: function) -> (status: numbeUsed to customize the behavior of the Play function. If you register a known callback function, it will be called during - the processing loop of cdPlay.
-The callback should return CD_CONTINUE, if it + the processing loop of cdCanvasPlay. Returns + CD_OK if the specified callback is supported or CD_ERROR otherwise.
+The callback itself should return CD_CONTINUE, if it returns CD_ABORT, the cdPlay function is aborted. The callback identifiers of a given driver must be in the header file relative to that driver, with prefix "CD_XXYYYCB", diff --git a/html/en/func/region.html b/html/en/func/region.html index e503733..1581180 100644 --- a/html/en/func/region.html +++ b/html/en/func/region.html @@ -51,8 +51,10 @@ canvas:RegionCombineMode(mode: number) -> (old_mode: number) [in Lua]
int cdCanvasIsPointInRegion(cdCanvas* canvas, int x, int y); [in C]
+int wdCanvasIsPointInRegion(cdCanvas* canvas, double x, double y); (WC) [in C]
-canvas:IsPointInRegion(x, y: number) -> (status: number) [in Lua]
+canvas:IsPointInRegion(x, y: number) -> (status: boolean) [in Lua]
+canvas:wIsPointInRegion(x, y: number) -> (status: boolean) [in Lua]
Returns a non zero value if the point is contained inside the current region.
diff --git a/html/en/history.html b/html/en/history.html index 439ff66..1ece026 100644 --- a/html/en/history.html +++ b/html/en/history.html @@ -5,11 +5,26 @@