Changeset 1822545 in mainline


Ignore:
Timestamp:
2019-10-21T00:17:28Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7b882c1f
Parents:
d18f3b7
Message:

Add typedef for scalar coordinate

Because today I feel like adding it

Location:
uspace
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/gfxdemo/gfxdemo.c

    rd18f3b7 r1822545  
    5454 * @param h Height
    5555 */
    56 static errno_t demo_rects(gfx_context_t *gc, int w, int h)
     56static errno_t demo_rects(gfx_context_t *gc, gfx_coord_t w, gfx_coord_t h)
    5757{
    5858        gfx_color_t *color = NULL;
     
    9696 * @param h Height
    9797 */
    98 static errno_t demo_bitmap(gfx_context_t *gc, int w, int h)
     98static errno_t demo_bitmap(gfx_context_t *gc, gfx_coord_t w, gfx_coord_t h)
    9999{
    100100        gfx_bitmap_t *bitmap;
     
    160160 * @param h Height
    161161 */
    162 static errno_t demo_loop(gfx_context_t *gc, int w, int h)
     162static errno_t demo_loop(gfx_context_t *gc, gfx_coord_t w, gfx_coord_t h)
    163163{
    164164        errno_t rc;
     
    215215        surface_t *surface = NULL;
    216216        canvas_t *canvas = NULL;
    217         int vw, vh;
     217        gfx_coord_t vw, vh;
    218218        errno_t rc;
    219219
  • uspace/lib/congfx/src/console.c

    rd18f3b7 r1822545  
    9292        console_gc_t *cgc = (console_gc_t *) arg;
    9393        int rv;
    94         int x, y;
     94        gfx_coord_t x, y;
    9595
    9696        // XXX We should handle p0.x > p1.x and p0.y > p1.y
     
    191191        console_gc_t *cgc = (console_gc_t *) arg;
    192192        console_gc_bitmap_t *cbm = NULL;
    193         int w, h;
     193        gfx_coord_t w, h;
    194194        errno_t rc;
    195195
     
    250250{
    251251        console_gc_bitmap_t *cbm = (console_gc_bitmap_t *)bm;
    252         int x, y;
     252        gfx_coord_t x, y;
    253253        int rv;
    254254        pixel_t clr;
  • uspace/lib/gfx/include/types/gfx/coord.h

    rd18f3b7 r1822545  
    4040#include <stdint.h>
    4141
     42typedef int gfx_coord_t;
     43
    4244typedef struct {
    43         int x;
    44         int y;
     45        gfx_coord_t x;
     46        gfx_coord_t y;
    4547} gfx_coord2_t;
    4648
  • uspace/lib/guigfx/src/canvas.c

    rd18f3b7 r1822545  
    9595{
    9696        canvas_gc_t *cgc = (canvas_gc_t *) arg;
    97         int x, y;
     97        gfx_coord_t x, y;
    9898
    9999        // XXX We should handle p0.x > p1.x and p0.y > p1.y
     
    188188        canvas_gc_t *cgc = (canvas_gc_t *) arg;
    189189        canvas_gc_bitmap_t *cbm = NULL;
    190         int w, h;
     190        gfx_coord_t w, h;
    191191        errno_t rc;
    192192
  • uspace/srv/hid/display/output.c

    rd18f3b7 r1822545  
    4949        surface_t *surface = NULL;
    5050        canvas_t *canvas = NULL;
    51         int vw, vh;
     51        gfx_coord_t vw, vh;
    5252        errno_t rc;
    5353
Note: See TracChangeset for help on using the changeset viewer.