-
```BlitzMax
SuperStrict
Framework Brl.StandardIO
Enum ETest Flags
a
b
End Enum
For local i:int = 0 to 10
Print ETest.Values()[0].ToString()
Next
```
Isn't `Values()` here creating a…
GWRon updated
4 years ago
-
This is TIntMap's `_FirstNode`:
```BlitzMax
Method _FirstNode:TIntNode()
If Not IsEmpty() Then
Local node:TIntNode= New TIntNode
node._root = _root
Return node
Else
Return Nul…
GWRon updated
6 years ago
-
William reported via discord:
```
/home/william/Desktop/BlitzMax/mod/brl.mod/platform.mod/glue.c:24:10: fatal error: sys/sysctl.h: No such file or directory
24 | #include
```
and they raised an …
-
## Outline
Use neural net during ray tracing as an acceleration method.
## Details
Ray tracing involves computationally expensive calculations and geometry with varying degrees of complexity. …
-
```BlitzMax
SuperStrict
Framework Brl.StandardIO
Import Brl.Reflection
Type TTest
Method Hello(f:Float)
Print "Hello() f = " + f
End Method
Function HelloFunc(f:Float)
Print "Hell…
GWRon updated
2 years ago
-
Do we have a version of (or an alternative to) makedocs/docmods that is able to handle NG's new language features?
With the vanilla versions, things like structs, interfaces, operators or generics un…
-
**Describe the bug**
```
SuperStrict
Global Foo:TestType = New TestType
Type TestType
Method Do:String()
Global T:String
T = "Test.Do"
Return T
EndMethod
EndType
DebugStop
…
-
When I call curcon it will start fetching rates and it takes around 5 seconds to show the data. Using BRL as BASE, node -v 17.3.1.
I have a M1 Pro Macbook, restarted multiple times and still takes lo…
-
Hi,
I came across a weird bug that makes the program freeze on Windows.
```
SuperStrict
Framework BRL.StandardIO
Import MaxGUI.Drivers
Import BRL.EventQueue
Local Window:TGadget = CreateW…
-
```
imLcLkup.c: In function ‘_XimLocalUtf8LookupString’:
imLcLkup.c:213:6: warning: overflow in implicit constant conversion [-Woverflow]
buffer[0] = 0xe0 | ((BRL_UC_ROW >> 12) & 0x0f);
```
Cur…
uli42 updated
7 years ago