Ignore:
Timestamp:
2013-04-19T18:38:18Z (12 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6d717a4
Parents:
a1e2df13 (diff), 289cb7dd (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 mainline chages.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.h

    ra1e2df13 r25eec4e  
    11/*
    2  * Copyright (c) 2011 Martin Sucha
     2 * Copyright (c) 2013 Jan Vesely
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup libext2
     29/** @addtogroup kgraph
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef LIBEXT2_LIBEXT2_H_
    37 #define LIBEXT2_LIBEXT2_H_
     36#ifndef AMDM37X_DISPC_H_
     37#define AMDM37X_DISPC_H_
    3838
    39 #include "libext2_superblock.h"
    40 #include "libext2_block_group.h"
    41 #include "libext2_inode.h"
    42 #include "libext2_filesystem.h"
    43 #include "libext2_directory.h"
     39#include <graph.h>
     40#include <abi/fb/visuals.h>
     41#include <pixconv.h>
     42
     43#include "amdm37x_dispc_regs.h"
     44
     45typedef struct {
     46        amdm37x_dispc_regs_t *regs;
     47
     48        struct {
     49                pixel2visual_t pixel2visual;
     50                unsigned width;
     51                unsigned height;
     52                unsigned pitch;
     53                unsigned bpp;
     54                unsigned idx;
     55        } active_fb;
     56
     57        size_t size;
     58        void *fb_data;
     59
     60        vslmode_list_element_t modes[1];
     61} amdm37x_dispc_t;
     62
     63int amdm37x_dispc_init(amdm37x_dispc_t *instance, visualizer_t *vis);
     64int amdm37x_dispc_fini(amdm37x_dispc_t *instance);
    4465
    4566#endif
    46 
    4767/** @}
    4868 */
Note: See TracChangeset for help on using the changeset viewer.