B4J Question Which Ref Lib is missing?

Gunther

Active Member
Licensed User
Longtime User
Hi,

I opened an Example XUI2D and getting an error in the 'X2SpriteGraphicCache.bas' which nomally is a missing lib:

B4X:
Sub Class_Globals
    Private xui As XUI
    Private cache As Map
    Type X2SpriteGraphicData (Name As String, MapsOfCompressedBCs As List, AntiAlias As Boolean, AngleInterval As Int, _
        OriginalBMPs As List, OriginalBCs As List, SizeOfAllCompressed As Int, LastUsed As Long, VerticalSymmetry As Boolean, HorizontalSymmetry As Boolean)
    Private CVS(6) As B4XCanvas
    Private CVSPanel(6) As B4XView
    Private CVSProxy(6) As BitmapCreator
    Public MAX_SIZE_FOR_ANTIALIAS As Int = 300
    Private WorkingSpace As BitmapCreator
    Private X2 As X2Utils
    Private MAX_SIZE_OF_ALL_COMPRESSEDBCS As Int = 30 * 1024 * 1024
    Private TotalSize As Int
    Private Transform As B2Transform
    Private RectShape As B2PolygonShape
    Private OutputAABB As B2AABB
    Private TempId As Int
    Public Const TempPrefix As String = "~temp"
    Public CBCCache As InternalCompressedBCCache
    Private mUseCanvasForAntiAliasedRotation As Boolean
    Private AABuffer As InternalAntiAliasingBuffer    <-------------- here is the issue
End Sub

The libs are up to date the B4j is 6.51.

upload_2018-10-18_12-35-40.png


Any clue?
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

Gunther

Active Member
Licensed User
Longtime User
well, it is the Clumsy Bird Example, but is is the case in all Exapmles out of the box.

And yes, with the updated BitmapCreator 4.31 it works as expected.

Thanks.
 
Upvote 0
Top