Search found 82 matches

by parallax7d
Tue Feb 09, 2016 4:07 pm
Forum: Libraries and Tools
Topic: [Lib] SUIT - Simple User Interface Toolkit
Replies: 81
Views: 89380

Re: [Lib] SUIT - Simple User Interface Toolkit

I guess it depends on the library, I don't see what use it is here though. Restoring graphics settings seems like a sensible thing for a UI library to do.
by parallax7d
Tue Feb 09, 2016 2:29 pm
Forum: Libraries and Tools
Topic: [Lib] SUIT - Simple User Interface Toolkit
Replies: 81
Views: 89380

Re: [Lib] SUIT - Simple User Interface Toolkit

I don't understand what you mean.
by parallax7d
Tue Feb 09, 2016 11:49 am
Forum: Libraries and Tools
Topic: [Lib] SUIT - Simple User Interface Toolkit
Replies: 81
Views: 89380

Re: [Lib] SUIT - Simple User Interface Toolkit

Seems like suit:draw is leaking color, bg color, font settings. This fixes it for me. Or am I doing something terribly wrong? function suit:draw() self:exitFrame() local oldColor = {love.graphics.getColor()} local oldBGColor = {love.graphics.getBackgroundColor()} local oldFont = love.graphics.getFon...
by parallax7d
Tue Jan 19, 2016 11:10 am
Forum: Support and Development
Topic: "Questions that don't deserve their own thread" thread
Replies: 905
Views: 410803

Re: "Questions that don't deserve their own thread" thread

I've generated a canvas (canvas1) and need to duplicate it into a new canvas (canvas2) so I can manipulate canvas2 without changing canvas1. Would it be more efficient to simply draw 2 canvases from the start and draw to both at the same time, or is there an efficient way to copy a canvas into a new...
by parallax7d
Sat Jan 16, 2016 7:48 am
Forum: Support and Development
Topic: Some Basic OpenGL Questions
Replies: 8
Views: 5887

Re: Some Basic OpenGL Questions

thanks Slime, super useful It does use some features from newer OpenGL versions when either the driver creates a Compatibility Profile context of a higher GL version, or the driver provides the features via extensions. Compatibility Profile OpenGL 3+ contexts are supported by some drivers and provid...
by parallax7d
Fri Jan 15, 2016 8:06 am
Forum: Support and Development
Topic: Some Basic OpenGL Questions
Replies: 8
Views: 5887

Some Basic OpenGL Questions

I'm trying to piece together some very basic info. I'm a bit confused about OpenGL. It seems like the features it supports are a moving target, which is complicated by client OS and graphics card/drivers. I apologize for the naivete of the following questions. From what I understand, Love 0.10.0 now...
by parallax7d
Sun Jan 03, 2016 11:49 pm
Forum: General
Topic: LÖVE 0.10.0 released
Replies: 86
Views: 79448

Re: LÖVE 0.10.0 released

Thanks slime, yeah I'm not surprised about steam/unity as those tend to support a lot of heavy 3d apps, but I was hoping Love was going to have older machine support for a while longer. I guess libc++ it's not included with 10.6, but could you bundle it in the Love binary? If so, it may be as simple...
by parallax7d
Sun Jan 03, 2016 9:49 am
Forum: General
Topic: LÖVE 0.10.0 released
Replies: 86
Views: 79448

Re: LÖVE 0.10.0 released

This is really cool, but why was support for mac OS X 10.6 dropped? 10.6 is still a popular OS, will probably have decent market share for years to come http://lowendmac.com/2015/the-rise-and-fall-of-mac-os-x-versions-2009-to-2015 I would rather lop out the offending code from love than upgrade my O...
by parallax7d
Sun Jan 03, 2016 9:08 am
Forum: Libraries and Tools
Topic: [Lib] SUIT - Simple User Interface Toolkit
Replies: 81
Views: 89380

Re: [Lib] SUIT - Simple User Interface Toolkit

Dream come true, thanks for reworking quickie and adding in these cool new features! The docs are fun to read to boot :ultraglee:
by parallax7d
Thu Aug 27, 2015 7:35 pm
Forum: General
Topic: SOOO confused about module varargs
Replies: 5
Views: 2180

Re: SOOO confused about module varargs

After some experimentation, it seems like both arg and ... will work in functions with a ... param. But they seem to conflict with each other. works function argTable (...) print(arg[1]) end argTable(3) > 3 works function vararg (...) print(...) end vararg(3) > 3 huh? function combined (...) print(....