NEWS APPS DOCS ABOUT | ||||
Autodocs Include classes clib datatypes devices diskfont dos exec gadgets graphics clip.h / .i coerce.h / .i collide.h copper.h / .i display.h / .i displayinfo.h / .i gels.h / .i gfx.h / .i gfxbase.h / .i gfxmacros.h gfxnodes.h / .i graphint.h layers.h / .i modeid.h / .i monitor.h / .i rastport.h / .i regions.h / .i rpattr.h / .i scale.h / .i sprite.h / .i text.h / .i videocontrol.h / .i view.h / .i hardware images intuition libraries pragma pragmas prefs proto reaction resources rexx utility workbench GuruMeditation | #ifndef GRAPHICS_SCALE_H #define GRAPHICS_SCALE_H /* ** $VER: scale.h 39.0 (21.8.1991) ** Includes Release 45.1 ** ** structure argument to BitMapScale() ** ** (C) Copyright 1989-2001 Amiga, Inc. ** All Rights Reserved */ #ifndef EXEC_TYPES_H #include <exec/types.h> #endif struct BitScaleArgs { UWORD bsa_SrcX, bsa_SrcY; /* source origin */ UWORD bsa_SrcWidth, bsa_SrcHeight; /* source size */ UWORD bsa_XSrcFactor, bsa_YSrcFactor; /* scale factor denominators */ UWORD bsa_DestX, bsa_DestY; /* destination origin */ UWORD bsa_DestWidth, bsa_DestHeight; /* destination size result */ UWORD bsa_XDestFactor, bsa_YDestFactor; /* scale factor numerators */ struct BitMap *bsa_SrcBitMap; /* source BitMap */ struct BitMap *bsa_DestBitMap; /* destination BitMap */ ULONG bsa_Flags; /* reserved. Must be zero! */ UWORD bsa_XDDA, bsa_YDDA; /* reserved */ LONG bsa_Reserved1; LONG bsa_Reserved2; }; #endif /* GRAPHICS_SCALE_H */ Comments |
$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se |