Skip Navigation
GPU synchronization in Godot 4.3 is getting a major upgrade
  • Great stuff. I find it really funny that a big feature of modern API's is that applications place barriers instead of being handled by the driver, and we all tried it for a while and then threw up our hands and decided to write graph systems to automatically place them because it was too hard.

  • What advice would you give to someone just starting out with a career in programming?
  • I like to not think of anything as "absolute" or "dealbreaker" (within reason. If there's a culture of harassment I'm gone, for example). But spend intentional time throughout your career reflecting on what matters to you in terms of team culture, code culture, career growth opportunities, compensation, etc. There are a lot of factors to being happy in your work, and a lot of ways to get there. Be intentional about it, and try to always move toward it. It matters a lot more than whatever software you're writing.

  • www.capcom-games.com CAPCOM Open Conference Professional RE:2023|CAPCOM

    Deep Dive Into the Ever-Evolving RE ENGINE. After reviewing feedback from last year’s well-received "Capcom Open Conference RE:2022," Capcom is pleased to announce that we will be holding "Capcom Open Conference Professional RE:2023" online this year, with more focus on technical content.

    CAPCOM Open Conference Professional RE:2023|CAPCOM

    Capcom uploaded presentations on its RE engine to YouTube with English subs. Some good content in here

    0
    what do you folks discuss in your weekly/monthly 1:1 with your engineering managers?
  • This.

    I ask my boss about project-wide stuff that might impact me and my team, discuss strategy / priorities / roadmaps, ask them to weigh in on anything where I need project leadership to help resolve an issue, and any perfunctory "goals" stuff (I hate it so much haha)

  • (Partial rant) Why are gaming communities for multiplayer games so often filled with toxicity? Why aren't game developers doing more to stop this?
  • You're right that it's messy and imperfect and false positives can be really frustrating.

    But the alternative - no efforts to maintain a safe space - is that vulnerable people are typically the target. Toxicity typically punches down.

    I'll happily trade some clunky inconvenience so that those people can safely participate

  • How often does branchless programming actually matter?
  • Also if you branch on a GPU, the compiler has to reserve enough registers to walk through both branches (handwavey), which means lower occupancy.

    Often you have no choice, or removing the branch leaves you with just as much code so it's irrelevant. But sometimes it matters. If you know that a particular draw call will always use one side of the branch but not the other, a typical optimization is to compile a separate version of the shader that removes the unused branch and saves on registers

  • Why use pointers?
  • Pointers also allow you to do fun and dangerous things like casting between types!

    For example, if you're implementing your own memory allocator, at the base level your allocator only really cares about how many bytes are being requested (along with alignment, offset, other things) so you'd probably just implement it to return a char*, u8*, or void* pointing to the blob of memory you allocated with new, malloc, or whatever scheme you've cooked up. The calling code or higher level allocator code could then cast it to the actual type

  • InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)GR
    graphicsguy @programming.dev
    Posts 1
    Comments 10