Search results

  1. SolarLiner

    New Release D3D9Client Development

    Another showcase / feature demo here, for the color grading process: (skip to 3:10 for the actual how to, my demo skills aren't the best :uhh: )
  2. SolarLiner

    Humor Random Comments Thread

    Nice! I myself got a GTX 970 as birthday present, it's currently shpping, but I can't wait to see how great it all behaves!
  3. SolarLiner

    Updates NASA New Horizons Mission Updates

    It's actually his middle name, abbreviated for space. His name is Benoit "Benoit B. Mandlebrot" Mandlebrot.
  4. SolarLiner

    New Release D3D9Client Development

    I didn't touch the atmosphere, nor the planetary rendering code, so I shouldn't have changed anything... I was thinking we could add a brightness slider, which would also change the size in a way... But if the glare itself is too big, with the other elements being fine, then that can be...
  5. SolarLiner

    New Release D3D9Client Development

    I changed the IsSunVisible() function to a more general GetSunScreenVisualState() function that returns brightness, size, and color - and that allows the sun to shine through transparent objects. The impact on framerate is kinda big on virtual cockpit - optimization surely can be done on that...
  6. SolarLiner

    New Release D3D9Client Development

    Thank you! But now every transparent surface blocks the lens flare (for example, the glass panes in the DG VC), which means I'll need to make many more checks and calculations based on materials... Which means my work here isn't done. :lol: I multiplied the brightness by saturate(pos.z) after...
  7. SolarLiner

    New Release D3D9Client Development

    And for the grand finale: Orbiter 2016 D3D9 Client Lens Flare Test - YouTube I got the ray casting method to work, after realizing that one was already implemented for the D3D9 Debug Window. The sunrise colors are based on the colors in D3D9Util::OrbitalLighting() like I first implemented, but...
  8. SolarLiner

    New Release D3D9Client Development

    The lens flare shader is "modular", so you could simply delete all the flares and keep the glare only if you wanted. But the glare you see is the glare from the lens flare shader. Though, since the cockpit is, technically, seen from eyes instead of cameras, I could have a conditions that would...
  9. SolarLiner

    Humor Random Comments Thread

    Google says 7 shots on target, against 6 for France. Lloris did a very good job this match.
  10. SolarLiner

    New Release D3D9Client Development

    Not the "Star Trek: Into Darkness" edition :lol: I've been working on getting every piece of emiting light source up to "HDR standards" by bringing their intensities above 1 to compensate for the tonemapping, along with the atmosphere. CLUT color correction and bloom are also functional, but...
  11. SolarLiner

    New Release D3D9Client Development

    I got the two shaders to work with one another, simply by making them use both gc->GetBackBuffer() as targets. I deleted the code for shifting the lens flare color as it took too much time, leaving the Lens Flare to shine through everything. Thus, I disabled the billboard rendering of the star -...
  12. SolarLiner

    New Release D3D9Client Development

    Lens Flare occlusion works for planets, using the code used for the light color calculation on models. It works, but it has to cycle through and calculate for all bodies, which added an additional 18 ms to the frame rendering. I thought vPlanet.bOmit would do the planet selection for me but...
  13. SolarLiner

    Humor Random Comments Thread

    Does anyone want compile errors? I've got some to spare:
  14. SolarLiner

    New Release D3D9Client Development

    That, with some correction on the shader, makes for a working, customizable, lens flare shader! I also added vLightColor in the hope that I could get the diffuse color the sun emits, so that it would also "red-shift". Lastly we need to test for the sun being occluded or not. That coul either...
  15. SolarLiner

    New Release D3D9Client Development

    Oh hey, didn't see your post before mine. (That means I got it working by myself, which is already an achievement!) I'll implement your changes to see, because the CreateTexture is indeed redundant. ---------- Post added at 13:20 ---------- Previous post was at 13:13 ---------- I got the lens...
  16. SolarLiner

    New Release D3D9Client Development

    IT WORKS! :woohoo: ... at least partially. The shader works, now I have to make it follow the sun. But it is working, that is something!
  17. SolarLiner

    New Release D3D9Client Development

    Good catch! Otherwise, this is what happens when I, with limited knowledge in graphics, come to try this :lol: I thought that the star in the solar system was defined at the center of the world, hence the origin vector; but also mainly as a placeholder. And tBack isn't even initialized indeed...
  18. SolarLiner

    New Release D3D9Client Development

    Tried to implement the Lens Flare I talked about earlier as a second screen space post-processing effect. I did so by creating an ImageProcessing pFlare and trying to copy as close as I could the code of pLightBlur; but without any luck. LensFlare.hlsl + diff patch in the zip file for anyone...
  19. SolarLiner

    News EgyptAir flight MS804 disappears from radar between Paris and Cairo

    CVR is still being repared, so the only readable "back box" is the FDR, which had indeed confirmed smoke.
  20. SolarLiner

    New Release D3D9Client Development

    Code is GLSL (seen on the right side in the shadertoy page), so it would be a post-processing HLSL shader. That I think could be done from the module, then a float2 could be sent to the shader. Well that would be where ray-shooting be interesting: if it doesn't hit anything then we assume...
Back
Top