Bram Stolk
Bram Stolk
I have observed that occasionally, my WaitingRoomUIResponse comes back as Succes, yet when checking the room participants, there is only 1 participant. Whereas I specified the minimum number of participants...
I do a Fetch on a player id, like so: ``` game_services_->Players().Fetch( id, fetchcallback ); ``` On one party, this works fine. On the device of the other party, I...
Occasionally after inviting a friend, a MP match starts and immediately aborts. In the logs I get a libjingle error from mediasession.cc:529 about cricket? ``` I/RoomServiceStateMachine(20236): Attempting to reconnect to:...
Using gpg-cpp-sdk v2.3, I was able to create an armeabi-v7a build. Yet, when linking for arm64-v8a, it fails on **no .eh_frame_hdr table will be created** Which compiler was used to...
A data leak is reported for com.google.android.gms.common.data.DataHolder ``` W/GamesServiceBroker( 1907): Client connected with SDK 8115000, Services 10084030, and Games 39080030 I/ActivityManager( 953): Killing 7873:com.sec.android.app.mss/u0a26 (adj 15): empty #43 W/GamesServiceBroker( 1907):...
On one of my devices, I see this behaviour: - sign out of game services. - back ground the game. - fore ground the game again. - sign in. Then...
I don't see a meaningful description when calling `gpg::RealTimeRoom::Description()` despite the fact that `gpg::RealTimeRoom::Valid()` returns true. Instead, I just get a string containing the characters '(null)'. I call the Description()...
I only get generic DisplayName() values for participants. Regardless whether it is 'in circle of friends' or not. ``` auto showcallback = [fetchcallback]( gpg::RealTimeMultiplayerManager::WaitingRoomUIResponse const& waitresult ) { view_enabled[ VIEWBUTN...
Are there any plans to support half precision floats, using the `__fp16` type? https://en.wikipedia.org/wiki/Half-precision_floating-point_format
If I do: ``` anl::CKernel kernel; anl::CArray2Dd img2d(256,256); auto b = kernel.gradientBasis( kernel.constant(3), kernel.seed(123) ); auto c = kernel.scaleDomain( b, kernel.constant(5) ); anl::map2DNoZ( anl::SEAMLESS_XY img2d, kernel, anl::SMappingRanges(), c ); ```...