Please document known issues then! Brrr...freak wrote:Fred mentioned having to redo some of the quad management in order to solve some of the
issues, which he said he would not do for this version.
PureBasic 4.10 Beta 4 for Windows released
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
The DX9 support will come with 4.20 with no new commands or anything.Num3 wrote:Just a simple question, besides DX9 and new Ogre, will there be a revamp for the 3d command set?
Or do i have enough time to post some ideas for it?
Fred said with 4.30 he will focus on Ogre, which i am sure will mean more than just a recompilation but also some new commands.
quidquid Latine dictum sit altum videtur
-
- PureBasic Expert
- Posts: 2812
- Joined: Fri Apr 25, 2003 4:51 pm
- Location: Portugal, Lisbon
- Contact:
freak wrote:The DX9 support will come with 4.20 with no new commands or anything.Num3 wrote:Just a simple question, besides DX9 and new Ogre, will there be a revamp for the 3d command set?
Or do i have enough time to post some ideas for it?
Fred said with 4.30 he will focus on Ogre, which i am sure will mean more than just a recompilation but also some new commands.
Thanks!
I'll start to gather up all my notes so i can give some ideas for OGRE.
- Psychophanta
- Always Here
- Posts: 5153
- Joined: Wed Jun 11, 2003 9:33 pm
- Location: Anare
- Contact:
Thank you for this new beta. Beta3 was so old news....

a question to freak: do we keep posting issues in the regular bugs section, or is there a special one for the quickly changing Beta releases ?freak wrote:btw, we intend to release the final quite soon. So if there are remaining issues, post them quickly
PB Forums : Proof positive that 2 heads (or more...) are better than one 

- Joakim Christiansen
- Addict
- Posts: 2452
- Joined: Wed Dec 22, 2004 4:12 pm
- Location: Norway
- Contact:
I must say that I am disappointed; since the bug I mentioned in the previous beta release hasn't been fixed. The "unresolved _TransparentBlt bug" which was a error in the msimg32.lib file.
Or any idea on how to change my code?
Code: Select all
Import "msimg32.lib"
TransparentBlt(a,b,c,d,e,f,g,h,i,j,k)
EndImport
Last edited by Joakim Christiansen on Wed Oct 10, 2007 9:06 pm, edited 1 time in total.
I like logic, hence I dislike humans but love computers.
freak wrote:btw, we intend to release the final quite soon. So if there are remaining issues, post them quickly
Hi! I noticed that this has not yet been addressed... Can we have it for the official 4.10?

http://www.purebasic.fr/english/viewtop ... trequester
http://www.purebasic.fr/english/viewtop ... trequester
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
This August 9th .. ODBC, http://www.purebasic.com/beta/
Is not needed in b4 right? I usually check that spot regularly for any updates
but I don't want to put something in b4, that was a fix in b4 ..
Let me know.
- np
Is not needed in b4 right? I usually check that spot regularly for any updates
but I don't want to put something in b4, that was a fix in b4 ..
Let me know.
- np
I would say that no it is not needed because before I updated to b4 the file date I had for it was sometime in August, but after the update the file date had changed to October 8thNoahPhense wrote:This August 9th .. ODBC, http://www.purebasic.com/beta/
Is not needed in b4 right? I usually check that spot regularly for any updates but I don't want to put something in b4, that was a fix in b4 ..
Joakim Christiansen wrote:I must say that I am disappointed; since the bug I mentioned in the previous beta release hasn't been fixed. The "unresolved _TransparentBlt bug" which was a error in the msimg32.lib file.
Or any idea on how to change my code?Code: Select all
Import "msimg32.lib" TransparentBlt(a,b,c,d,e,f,g,h,i,j,k) EndImport
Code: Select all
Prototype TransparentBlt(a,b,c,d,e,f,g,h,i,j,k)
msimg32 = OpenLibrary(#PB_Any, "msimg32.dll")
If msimg32
Global TransparentBlt_.TransparentBlt = GetFunction(msimg32, "TransparentBlt")
Else
MessageRequester("Error!","Can't open msimg32.dll",#MB_ICONERROR)
EndIf
;and use TransparentBlt_(a,b,c,d,e,f,g,h,i,j,k)
I have checked the mathematics for floats and ints, and compared it 4.02. It now seems to be consistent again. I have not checked it extensively against quads and doubles.
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
- Psychophanta
- Always Here
- Posts: 5153
- Joined: Wed Jun 11, 2003 9:33 pm
- Location: Anare
- Contact:

Well, at least even the speed is consistent

( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )