vkoskiv / c-ray

c-ray is a small, simple path tracer written in C
MIT License
797 stars 44 forks source link

New rendering protocol doesn't work on Windows #102

Open vkoskiv opened 3 years ago

vkoskiv commented 3 years ago

I don't know much about Windows, and my brief attempt at adding support failed. Ideally for this task we would:

  1. Move all socket related code to networking.c
  2. Implement a minimal wrapper for the functionality we need that supports posix and win32 APIs (In the same style as thread.c)
  3. Rejoice at the newly improved Windows port

Currently networking code is a bit scattered through networking.c and server/worker.c.