Florian Xaver on Nostr: npub1w5z27…8rl8t please tell, if you don't want some comments regarding code... ...
npub1w5z27503latnjqrh3r8y7cuyqva6ljjux4fcmd29x5hxfvfkd6lq88rl8t (npub1w5z…rl8t) please tell, if you don't want some comments regarding code...
Casts like
return (SharedSurface_EGLImage*)surf;
are C and error prone. Better use the C++ versions: dynamic_cast (at this point?) or static_cast. With this you can always be sure that the correct type of casting is performed.
Casts like
return (SharedSurface_EGLImage*)surf;
are C and error prone. Better use the C++ versions: dynamic_cast (at this point?) or static_cast. With this you can always be sure that the correct type of casting is performed.