Re: [waffle] [PATCH 09/11] waffle: Add public func waffle_window_create2()

2014-12-23 Thread Frank Henigman
On Tue, Dec 16, 2014 at 3:18 AM, Chad Versace wrote: > Today, waffle_window() has only two parameters: width and height. > > Frank Henigman wants to extend Waffle's GBM backend with the ability to > post window contents to the display. Multiple methods exist for posting > content to the screen wit

Re: [waffle] [PATCH 02/11] core: Define intptr_t variants of wcore_attrib_list functions

2014-12-23 Thread Frank Henigman
On Tue, Dec 16, 2014 at 3:18 AM, Chad Versace wrote: > When designing the original Waffle 1.0 API, I made a mistake when > I chose to declare attribute lists as arrays of int32_t. Instead, they > should have been arrays of intptr_t. > > A new public function, waffle_window_create2, will have a `co

Re: [waffle] [PATCH 00/11] Add new public func waffle_window_create2()

2014-12-23 Thread Frank Henigman
On Mon, Dec 22, 2014 at 8:11 PM, Chad Versace wrote: > On 12/21/2014 01:41 PM, Emil Velikov wrote: >> On 16 December 2014 at 08:18, Chad Versace >> wrote: >>> Today, waffle_window() has only two parameters: width and height. >>> >>> Frank Henigman wants to extend Waffle's GBM backend with the ab

[waffle] [Patch v2] cmake: Add cmake PackageConfig files

2014-12-23 Thread Dylan Baker
This creates and installs a package version file and a package config file. These are used by find_package with the CONFIG option, and are roughly equivalent to pkgconfig, but is cmake specific rather than linux specific. v2: - Use configure_package_config_file() instead of config_file(), wh