Re: [dev] Announcing smdev

2014-08-08 Thread Jack L. Frost
On Thu, Aug 07, 2014 at 08:14:20PM +0400, Jack L. Frost wrote: > Note that the currently latest tag doesn't change permissions on already > existing device nodes. If you need it to do that, grab the latest commit. Not the case anymore, 0.2.1 includes the commit that fixes it.

Re: [dev] Introducing the imagefile-format

2014-08-08 Thread Dimitris Papastamos
On Fri, Aug 08, 2014 at 03:59:19PM -0400, Charlie Murphy wrote: > Charlie Murphy wrote: > > Here's an SDL loader for imagefile. If you are familiar with SDL_image's > > syntax, you shouldn't have any problems. very nice!

Re: [dev] Announcing smdev

2014-08-08 Thread Ari Malinen
smdev is great. Now im using it with gentoo also. I pushed very early ebuilds to my overlay[0]. Contains initscript and migrate guide from udev in einfo. [0] https://github.com/defer-/deferlay/tree/master/sys-fs/smdev On Thu, Aug 7, 2014 at 7:14 PM, Jack L. Frost wrote: > Also smdev is availabl

Re: [dev] Introducing the imagefile-format

2014-08-08 Thread FRIGN
On Fri, 8 Aug 2014 15:59:19 -0400 Charlie Murphy wrote: > IF_Load_RW() has an incorrect line. > , needs to be 16 > v > h = (hdr[13]<<24) | (hdr[14]<<17) | (hdr[15]<<8) | hdr[16]; > > Attached is the fixed lib

Re: [dev] Introducing the imagefile-format

2014-08-08 Thread Charlie Murphy
Charlie Murphy wrote: > Here's an SDL loader for imagefile. If you are familiar with SDL_image's > syntax, you shouldn't have any problems. IF_Load_RW() has an incorrect line. , needs to be 16 v h = (hdr[1

Re: [dev] [st][PATCH] Unset mode when clearing regions

2014-08-08 Thread Ivan Delalande
Hi, On Thu, Aug 07, 2014 at 09:35:46PM +0200, Roberto E. Vargas Caballero wrote: > Related to this problem there is another problem. I have background > black and foreground green, and it works perfectly except in the > case of underline, where the font always is printed in white. I was > looking

Re: [dev] Introducing the imagefile-format

2014-08-08 Thread Charlie Murphy
Here's an SDL loader for imagefile. If you are familiar with SDL_image's syntax, you shouldn't have any problems. SDL_Surface *IF_Load(char *name); Returns an SDL surface made from an imagefile on the hard drive. SDL_Surface *IF_Load_RW(SDL_RWops *ctx); Returns an SDL_Surface mad