1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 01:10:23 +00:00

Merge branch 'QB64-Phoenix-Edition:main' into image-load-from-memory-support

This commit is contained in:
Samuel Gomes 2023-02-13 19:05:48 +05:30 committed by GitHub
commit e1e6203db9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 31595 additions and 31581 deletions

File diff suppressed because it is too large Load diff

View file

@ -17783,7 +17783,9 @@ FUNCTION evaluatefunc$ (a2$, args AS LONG, typ AS LONG)
NEXT
' Add on any extra optional arguments that were not provided
IF curarg <= id2.args THEN
'
' Overloaded functions do not require the omited arguments to be provided
IF curarg <= id2.args AND NOT id2.overloaded THEN
FOR i = curarg TO id2.args
IF i = 1 THEN r$ = r$ + "NULL" ELSE r$ = r$ + ",NULL"
NEXT

View file

@ -0,0 +1,8 @@
$Console:Only
Print "Grey, max alpha: "; Hex$(_RGB32(&H7F))
Print "Grey, half alpha: "; Hex$(_RGB32(&H7F, &H7F))
Print "Grey, max alpha: "; Hex$(_RGB32(&H7F, &H7F, &H7F))
Print "Grey, half alpha: "; Hex$(_RGB32(&H7F, &H7F, &H7F, &H7F))
System

View file

@ -0,0 +1,4 @@
Grey, max alpha: FF7F7F7F
Grey, half alpha: 7F7F7F7F
Grey, max alpha: FF7F7F7F
Grey, half alpha: 7F7F7F7F