summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Define GL_GLEXT_PROTOTYPES in CFLAGS not in random places in the sourceAlexander Larsson2010-03-109-11/+2
|
* Revert "Fix possible quic_usr_more_lines_unstable() crash"Alexander Larsson2010-03-101-8/+2
| | | | | | This reverts commit 34e6a0a0d539fb49a03ec01bf11be505c88fcaa1. Turns out this wasn't needed and the crash was due to other changes.
* Update gdi canvas wrt latest changesAlexander Larsson2010-03-091-2/+2
| | | | ALIGN -> SPICE_ALIGN
* new libspice api: add spice_server_set_mouse_absolute()Gerd Hoffmann2010-03-092-0/+11
|
* new libspice api: add spice_server_set_channel_security()Gerd Hoffmann2010-03-092-0/+17
|
* new libspice api: make spice_channel_name_t part of the public api.Gerd Hoffmann2010-03-092-33/+35
|
* new libspice api: add spice_server_{get, set}_image_compression()Gerd Hoffmann2010-03-092-0/+18
| | | | Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
* new libspice api: make image_compression_t part of the public api.Gerd Hoffmann2010-03-096-56/+61
|
* new libspice api: configure listen addr, add ipv6 supporGerd Hoffmann2010-03-092-39/+74
|
* new libspice api: configure tlsGerd Hoffmann2010-03-092-2/+48
|
* new libspice api: zap function pointer indirection.Gerd Hoffmann2010-03-092-9/+40
| | | | | Make register_*_notifier calls optional, long term they should go away entriely. Add direct library calls as replacement.
* new libspice api: configure port + ticketGerd Hoffmann2010-03-092-0/+54
| | | | | | | | | Add new functions to configure spice port and ticketing. Yes, this is incomplete, it includes just the most important bits to get something up'n'running. These functions are supposed to replace both spice_parse_args() and the monitor interaction via qterm interface.
* new libspice api: alloc, initi and free spice server instances.Gerd Hoffmann2010-03-092-6/+40
| | | | | | The implementation can't handle multiple spice server instances at the same time right now. The API allows this though, so if we fixup the implementation some day we don't have to change the API.
* Fix possible quic_usr_more_lines_unstable() crashGerd Hoffmann2010-03-091-2/+8
| | | | | | | | quic_usr_more_lines_unstable() assumes it can allways copy a complete scanline. Well, it can't. In case the screen rectangle which needs updating has an x-offset greater than zero *and* includes the last scanline of the screen it will overflow the source buffer by x-offset * bytes-per-pixel bytes.
* Use macros from <spice/macros.h> rather than duplicate themAlexander Larsson2010-03-0923-219/+128
|
* Move draw_rop3 to canvas_baseAlexander Larsson2010-03-082-96/+94
|
* Move canvas_draw_stroke to canvas_baseAlexander Larsson2010-03-082-455/+450
|
* Move most of the shared draw_xyz() methods from CairoCanvas to CanvasBaseAlexander Larsson2010-03-083-932/+1039
| | | | | | This adds a set of virtual methods for low-level operations. A subclass can choose to implement those and let the default CanvasBase implementations handle the highlevel stuff.
* Move canvas_region and group_start/end to canvas_baseAlexander Larsson2010-03-086-38/+58
|
* Move virtualization of canvas drawing into common/canvas_baseAlexander Larsson2010-03-0817-830/+501
| | | | | | | | | | | Instead of having two virtualizations of the canvas we push the virtualization into the canvas code itself. This not only avoids the duplication of this code, it also makes the exposed API for the canvas much smaller (in terms of exported API). It also lets us use the virtualization to implement basic support for operations in canvas_base which is then overridden by each canvas implementation.
* Make virt mapping an interfaceAlexander Larsson2010-03-087-48/+41
|
* Make glz_decoder non-optional canvas_base in canvas constructorsAlexander Larsson2010-03-087-30/+13
| | | | | It can still be NULL, but we simplify the headers by always including it. There is no practical performance difference here.
* Make canvas Glz decoder integration nicerAlexander Larsson2010-03-0815-38/+48
| | | | | We use a dynamic interface similar to e.g. SpiceImageCache instead of passing both function and opaque
* Fix colorkeying in pixman_utils.cAlexander Larsson2010-03-081-1/+2
| | | | | | We were masking out the alpha bit in the key color not int the source pixel, so colorkeying didn't work when the high byte was != 0. For instance in the shutdown dialog in XP.
* Fix up win32 build reference to pixman_utils.cppAlexander Larsson2010-03-051-1/+1
| | | | It was pointing to the wrong directory for pixman_utils.cpp
* Only use AI_ADDRCONF if availibleAlexander Larsson2010-03-031-1/+4
| | | | AI_ADDRCONF not availible on winXP, so this fixes windows build.
* Update visual studio project for pixman changesLarsson@.(none)2010-03-011-4/+12
|
* Make gdi canvas build in the new pixman worldLarsson@.(none)2010-03-014-23/+35
|
* Always include spice/types.h before pixman so standard int types existLarsson@.(none)2010-03-011-0/+2
|
* Fix warnings from visual studio compilerLarsson@.(none)2010-03-012-15/+15
|
* Have only one copy of ROUND macro and cast to int explicitlyLarsson@.(none)2010-03-012-3/+1
|
* spice client: add ipv6 support.Gerd Hoffmann2010-02-272-53/+41
| | | | Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
* spice client: fix dns lookupGerd Hoffmann2010-02-271-3/+9
| | | | | | ignore lookup results which are not ipv4 Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
* Remove qcairo dependency, only use pixmanAlexander Larsson2010-02-235-12/+8
|
* Remove cairo use in clientAlexander Larsson2010-02-234-118/+149
|
* Remove no longer needed CAIRO_CANVAS_CACH_IS_SHARED define and codeAlexander Larsson2010-02-233-11/+2
|
* Remove last cairo use from canvas_baseAlexander Larsson2010-02-231-3/+0
|
* Remove cairo_t from cairo canvasAlexander Larsson2010-02-235-96/+28
|
* Covert cairo canvas put_image() to pixmanAlexander Larsson2010-02-231-77/+33
|
* Replace custom region implementation with pixman_region32_tAlexander Larsson2010-02-2316-870/+618
| | | | | | pixman_region32_t is an efficient well tested region implementation (its the one used in X) that we already depend on via pixman and use in some places. No need to have a custom region implementation.
* Convert cairo canvas clear() to pixmanAlexander Larsson2010-02-231-8/+5
|
* Convert cairo canvas group_start/end to pixmanAlexander Larsson2010-02-231-14/+18
|
* Convert cairo canvas read_bits() to pixmanAlexander Larsson2010-02-231-6/+5
|
* Remove unused cairo helper functionsAlexander Larsson2010-02-232-494/+0
|
* Convert cairo canvas to use pixman for draw_strokeAlexander Larsson2010-02-232-213/+465
|
* Convert cairo canvas draw_transparent to use pixmanAlexander Larsson2010-02-231-119/+134
|
* Convert cairo canvas draw_rop3 to using pixmanAlexander Larsson2010-02-231-40/+29
|
* Convert draw_blackness/whiteness/invers to using pixmanAlexander Larsson2010-02-231-16/+61
|
* Convert cairo canvas alpha_blend to using pixmanAlexander Larsson2010-02-231-15/+135
|
* Convert cairo canvas draw_text to using pixmanAlexander Larsson2010-02-231-71/+100
|