Ignore:
Timestamp:
2020-12-07T00:08:37Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
25f26600
Parents:
7a873f0 (diff), 8596474 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'jxsvoboda-gfx' into master

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfximage/include/gfximage/tga.h

    r7a873f0 r7e38970d  
    11/*
     2 * Copyright (c) 2020 Jiri Svoboda
    23 * Copyright (c) 2014 Martin Decky
     4 * Copyright (c) 2011 Petr Koupy
    35 * All rights reserved.
    46 *
     
    2729 */
    2830
    29 /** @addtogroup gui
     31/** @addtogroup draw
    3032 * @{
    3133 */
     
    3436 */
    3537
    36 #ifndef GUI_COMMON_H_
    37 #define GUI_COMMON_H_
     38#ifndef GFXIMAGE_TGA_H_
     39#define GFXIMAGE_TGA_H_
    3840
    39 #include <draw/drawctx.h>
     41#include <errno.h>
     42#include <gfx/context.h>
     43#include <gfx/coord.h>
     44#include <stddef.h>
    4045
    41 extern void draw_icon_cross(surface_t *, sysarg_t, sysarg_t, pixel_t, pixel_t);
    42 extern void draw_bevel(drawctx_t *, source_t *, sysarg_t, sysarg_t, sysarg_t,
    43     sysarg_t, pixel_t, pixel_t);
     46extern errno_t decode_tga(gfx_context_t *, void *, size_t,
     47    gfx_bitmap_t **, gfx_rect_t *);
    4448
    4549#endif
Note: See TracChangeset for help on using the changeset viewer.