Changeset 25eec4e in mainline for uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.h
- Timestamp:
- 2013-04-19T18:38:18Z (12 years ago)
- 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. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.h
ra1e2df13 r25eec4e 1 1 /* 2 * Copyright (c) 201 1 Martin Sucha2 * Copyright (c) 2013 Jan Vesely 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libext229 /** @addtogroup kgraph 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef LIBEXT2_LIBEXT2_H_37 #define LIBEXT2_LIBEXT2_H_36 #ifndef AMDM37X_DISPC_H_ 37 #define AMDM37X_DISPC_H_ 38 38 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 45 typedef 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 63 int amdm37x_dispc_init(amdm37x_dispc_t *instance, visualizer_t *vis); 64 int amdm37x_dispc_fini(amdm37x_dispc_t *instance); 44 65 45 66 #endif 46 47 67 /** @} 48 68 */
Note:
See TracChangeset
for help on using the changeset viewer.