Search found 29 matches

by Ian
Sat Jul 06, 2024 11:59 pm
Forum: The Catwalk
Topic: Vsync
Replies: 1
Views: 1339

Re: Vsync

try a lower lowerpc frequency
to run at 166mhz for step 2 games requires a very fast cpu
by Ian
Thu Jul 04, 2024 2:08 pm
Forum: The Catwalk
Topic: Model 3 textures
Replies: 4
Views: 1708

Re: Model 3 textures

Currently there is not. The way it's emulated would mean upscaled textures would be quite hard.
Replacement, yeah theoretically possible.
Probably also possible to patch the roms to replace the textures
by Ian
Mon May 06, 2024 6:27 pm
Forum: The Catwalk
Topic: Scud Race OLD VERSION
Replies: 8
Views: 29120

Re: Scud Race OLD VERSION

according to matthew .. the issue is something to do with vblank
basically the game never updates the palette
it has some some check that if it's in v-blank it'll upload it, if not it never gets updated

Some sort of timing issue
by Ian
Fri Mar 08, 2024 9:20 am
Forum: The Catwalk
Topic: Sega Model3 UI for 20240128+
Replies: 8
Views: 11823

Re: Sega Model3 UI for 20240128+

Looks really good. Add a super sampling option:)
by Ian
Sun Feb 18, 2024 2:20 pm
Forum: The Fitting Room
Topic: Low performance 30 FPS
Replies: 2
Views: 8244

Re: Low performance 30 FPS

Are you using a laptop? Sometimes laptops can only get full performance if plugged into the mains as you can only draw current so fast from the battery
by Ian
Fri Jan 12, 2024 11:24 am
Forum: Alternative Fashion
Topic: Help me to compile Supermodel on macOS Sonoma(Apple Silicone) "no LC_RPATH found"
Replies: 11
Views: 40361

Re: Help me to compile Supermodel on macOS Sonoma(Apple Silicone) "no LC_RPATH found"

I'll see if I can fix those. Apple is the only vendor that is super strict about signed/unsigned maths in the shaders
by Ian
Wed Dec 13, 2023 9:11 pm
Forum: The Dark Room
Topic: power edition bug
Replies: 9
Views: 24903

Re: power edition bug

If it is just transparency that uses the clamped model it would just be polygon transparency. Poly transparency has 1 extra bit so instead of 0-31 (5 bits) it uses 6 bits where the top bit is basically an enable bit. The range in this case is just 0-32. I think there is a good chance these might use...
by Ian
Wed Dec 13, 2023 8:54 pm
Forum: The Dark Room
Topic: Down sample to 496x384
Replies: 2
Views: 16416

Re: Down sample to 496x384

I realised when I wrote my super sampling code that I simply used a linear filter when downsizing lol, which means it essentially creates aliasing artifacts. Basically I should have mipmapped the image. Probably easiest to do in a shader this way we could even do crazy things like 3x super sampling ...
by Ian
Fri Dec 08, 2023 11:23 pm
Forum: The Dark Room
Topic: power edition bug
Replies: 9
Views: 24903

Re: power edition bug

Maybe the translator map. I think it's just daytona that uses it, but I'm pretty sure it's just related to texturing. If I remember correctly the 2 daytona versions use a different light clamp model. Power edition is unclamped. I'm pretty sure I did a binary diff between the wheel models on the cars...
by Ian
Thu Dec 07, 2023 1:25 pm
Forum: The Dark Room
Topic: power edition bug
Replies: 9
Views: 24903

Re: power edition bug

It could well be as something as simple as that. Other possibility is some kind of bit in the polygon header but I think that is less likely since we never found any sun clamping bits before.